> Actually, there is "hover" over the tiddler, but not the button,
> and "hover" directly over the button.

In tiddlywiki when a user hovers over a tiddler the tiddler gets given
a class of selected. You can use this hook to change the style of a
toolbar command. The CSS I posted earlier would become:

.selected .toolbar .command_closeTiddler {
    color: red;
    font-size: 1.2em;
}

There is another hook available for when the individual command is
hovered over. Here is an example of the CSS you'd need:

.toolbar .command_closeTiddler:hover {
    color: red;
    font-size: 1.2em;
}

Hope that helps

Colm

-- 
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