/* COLOR OF TIDDLER BUTTONS */
html .tw-tiddler-controls svg {
fill : #9CF; /* light blue */
}
html.tw-tiddler-controls button:hover svg {
fill : #04B; /* dark blue */
}
If you change the color value #9CF to the color value of your tiddler background
Cheers,
Odder
--
You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+...@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.
.tc-tiddler-controls{ opacity: 0; }
.tc-tiddler-controls:hover{ opacity: 1; }
.tc-tiddler-frame .tc-titlebar button {
opacity: 0;
}
.tc-tiddler-frame:hover .tc-titlebar button {
opacity: 1;
}I also removed few lines (browser engine specific? still worked in FF) and reduced the time for the icons to be visible.