Hi, Mike! Thanks for the help! I tried yours and it worked. I noticed
you changed the appearance of other buttons to match the "tags"
button. I looked around the stylesheet a little and then found the
appropriate style:

.toolbar a:hover{
 background: #fff;
 border: 1px solid #aaa;
 color:#002bb8;
 font-size: 11px;
 padding-bottom: 0;
 padding-top: 4;
 padding-left: 1;
 padding-right: 1;
 margin-right: .25em;
 text-decoration: underline;

}

.toolbar a:link {
 background: #fff;
 border: 1px solid #aaa;
 color:#002bb8;
 font-size: 11px;
 padding-bottom: 0;
 padding-top: 4;
 padding-left: 1;
 padding-right: 1;
 margin-right: .25em;
}

However, for some reason, the padding is ignored, so the button is a
little smaller. Oh well, I can live with that. :D
w

On Apr 5, 2:25 am, Mike <[email protected]> wrote:
> I think this will do it. . .
>
> /* Javascript Button Style */
> .toolbar a:hover{
>  color:#002bb8;
>  background: transparent !important;
>  border: 0 !important;
>  text-decoration: underline;
>
> }
>
> .toolbar a:link {
>  color:#002bb8;
>  background: transparent;
>  text-decoration: underline;
>
> }
>
> Example:http://www.strm.us/tw/examples_twgg/testwiki
>
> Let me know if that works,
>
> Mike
>
> On Apr 4, 3:15 pm, whatever <[email protected]> wrote:
>
> > That's great, Mike, thanks! I understand CSS, when I write it myself,
> > but there are so many styles here and it's a bit confusing to connect
> > them to a specific function. I had tried a couple of things, but
> > nothing seemed to work.
> > w
>
> > On Apr 4, 10:01 pm, Mike <[email protected]> wrote:
>
> > > I see what it is, need to modify my css to match the button styles in
> > > your stylesheet, will post modifications hopefully later tonight. . .
> > > (with test case example)
>
> > > Mike
>
> > > On Apr 4, 9:07 am, Mike <[email protected]> wrote:
>
> > > > If I empty your StyleSheet, and put the css above, the toolbar works
> > > > (also wrecks the theme)
> > > > something in the StyleSheet. . . (need to take a better look at
> > > > it. . . but probably not today)
>
> > > > Mike
>
> > > > On Apr 4, 3:20 am, whatever <[email protected]> wrote:
>
> > > > > My ViewTemplate entry looks like this:
> > > > > <div class='toolbar' macro='toolbar fullscreen -closeTiddler
> > > > > closeOthers +editTiddler editHtml easyEdit externalize copyTiddler
> > > > > ToggleTiddlerTags > fields syncing permalink references jump <'></div>
> > > > > This are the toolbar class definitions in my StyleSheet:
> > > > > .toolbar{
> > > > >  visibility: visible;
> > > > >  display: inline;
> > > > >  padding: 0;
> > > > >  font-family: sans-serif;
>
> > > > > }
>
> > > > > .toolbar a.button:link,.toolbar a.button:visited{
> > > > >  background: #fff;
> > > > >  border: 1px solid #aaa;
> > > > >  color:#002bb8;
> > > > >  font-size: 11px;
> > > > >  padding-bottom: 0;
> > > > >  margin-right: .25em;
>
> > > > > }
>
> > > > > I also added .toolbar a.button:hover,.toolbar a.button:active, but no
> > > > > change.
>
> > > > > Then I used your StyleSheet, but the "tags" button still behaves as
> > > > > the "more/less" button instead of like the others. I posted my test
> > > > > wiki onhttp://users.volja.net/headmaster/TestWiki.htmsoyoucansee.
>
> > > > > w
>
> > > > > On Apr 4, 2:53 am, Mike <[email protected]> wrote:
>
> > > > > > I updated my test case, working no problems. . 
> > > > > > .http://www.strm.us/tw/examples_twgg/toggletags
>
> > > > > > Does your ViewTemplate look like this
> > > > > > <div class='toolbar' macro='toolbar
> > > > > > [[ToolbarCommands::ViewToolbar]]'></div>
>
> > > > > > Is toolbar defined somewhere else in the stylesheet?
>
> > > > > > I am not very familiar with the Tiddlypedia Theme, if I get a chance
> > > > > > later I will take a closer look.
>
> > > > > > Mike
>
> > > > > > On Apr 3, 6:51 pm, Mike <[email protected]> wrote:
>
> > > > > > > can you wrap the transclusion in {{toolbar{
> > > > > > > say in a tiddler as a test? In the toolbar?
>
> > > > > > > Might need to apply a style inside the transclusion code (span 
> > > > > > > class
> > > > > > > toolbar maybe?)
>
> > > > > > > will have to play with it some more. . .
>
> > > > > > > Mike (from my phone)
>
> > > > > > > On Apr 3, 5:04 pm, whatever <[email protected]> wrote:
>
> > > > > > > > I tried, but the style only affected the other "buttons", the 
> > > > > > > > "tags"
> > > > > > > > button remained grey.
> > > > > > > > w
>
> > > > > > > > On Apr 3, 9:12 pm, Mike <[email protected]> wrote:
>
> > > > > > > > > try this in your stylsheet
>
> > > > > > > > > /* Javascript Button Style */
> > > > > > > > > .toolbar a:hover{
> > > > > > > > >         color:[[ColorPalette::PrimaryDark]];
> > > > > > > > >         background:[[ColorPalette::SecondaryLight]];
> > > > > > > > >         border:1px solid [[ColorPalette::SecondaryMid]];
> > > > > > > > >         padding:2.5px;
> > > > > > > > >         -moz-border-radius: 1em;
> > > > > > > > >         webkit-border-radius:1em;}
>
> > > > > > > > > .toolbar a:active {
> > > > > > > > >         color:[[ColorPalette::PrimaryLight]];
> > > > > > > > >         background:[[ColorPalette::SecondaryMid]];
> > > > > > > > >         border:1px solid [[ColorPalette::SecondaryDark]];
>
> > > > > > > > > }
>
> > > > > > > > > May need some tweaking for your theme. . . (css based on my
> > > > > > > > > theme. . .)
>
> > > > > > > > > Mike
>
> > > > > > > > > On Apr 3, 1:09 pm, whatever <[email protected]> wrote:
>
> > > > > > > > > > I figured out what the problem was. In the plugin tiddler, 
> > > > > > > > > > the whole
> > > > > > > > > > content is displayed, but in other tiddlers, the "tags" 
> > > > > > > > > > label is
> > > > > > > > > > displayed correctly. One strange thing though. I put it in 
> > > > > > > > > > the toolbar
> > > > > > > > > > div, however, it doesn't assume the toolbar style, it's 
> > > > > > > > > > actually
> > > > > > > > > > displayed in the same style as the more/less label from one 
> > > > > > > > > > of the
> > > > > > > > > > core tweaks. I'm using the Tiddlypedia Theme, btw.
> > > > > > > > > > w
>
> > > > > > > > > > On Apr 2, 7:51 pm, Mike <[email protected]> wrote:
>
> > > > > > > > > > > My working 
> > > > > > > > > > > examplehttp://www.strm.us/tw/examples_twgg/toggletags
>
> > > > > > > > > > > Do you have CoreTweaks? (I think it requires 610 as per 
> > > > > > > > > > > the docs)
>
> > > > > > > > > > > Mike
>
> > > > > > > > > > > On Apr 2, 12:57 am, whatever <[email protected]> wrote:
>
> > > > > > > > > > > > Via toolbar command.
>
> > > > > > > > > > > > On Apr 1, 11:22 pm, Mike <[email protected]> wrote:
>
> > > > > > > > > > > > > are you executing via the viewTemplate via tiddler 
> > > > > > > > > > > > > macro?
>
> > > > > > > > > > > > > Mike
>
> > > > > > > > > > > > > On Apr 1, 3:03 am, whatever <[email protected]> 
> > > > > > > > > > > > > wrote:
>
> > > > > > > > > > > > > > Hi! In a previous thread 
> > > > > > > > > > > > > > (http://groups.google.com/group/tiddlywiki/
> > > > > > > > > > > > > > browse_thread/thread/b816052d3d6a07a3) I found that 
> > > > > > > > > > > > > > Eric's
> > > > > > > > > > > > > > ToggleTiddlerTags plugin solved my problem. 
> > > > > > > > > > > > > > However, I am using
> > > > > > > > > > > > > > version 1.0.1, which is a script. On TiddlyTools, 
> > > > > > > > > > > > > > however, I found a
> > > > > > > > > > > > > > newer version 2.0.0, which is a transclusion. When 
> > > > > > > > > > > > > > I installed it, it
> > > > > > > > > > > > > > didn't work. All I got instead of the "Tags" button 
> > > > > > > > > > > > > > was the entire
> > > > > > > > > > > > > > content of the plugin tiddler. Am I missing 
> > > > > > > > > > > > > > something?
>
> > > > > > > > > > > > > > w

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.

Reply via email to