On Mar 15, 12:30 pm, Khaitobella <[email protected]> wrote:
> Need a bit of help, just started using TiddlyWiki a few months ago as
> a personal wiki for work notes. I've come across an irritating problem
> with the Monochrome theme (possibly a problem in other themes as
> well).
>
> Theme is at;http://tiddlythemes.com/empties/Monochrome.html
>
> When you go into Backstage and go into Import or Plugins, the
> 'tiddlers' column is using white text for the names of the plugins so
> it's showing as white on white so to be able to read any of it you
> have to select it all.

To fix this you can edit the StyleSheet tiddler and add some CSS
similar to the following:

.viewer table, table.twtable a {
   color: #666;
}

.viewer table, table.twtable a:hover {
   color: #000;
}

Where #666 and #000 are hexadecimal colors of your choice. Here they
are a grey and a black when hovered over.
If you aren't sure where to add it just put it at the bottom of the
StyleSheet tiddler or if you want to keep your own tweaks seperate
create a tiddler called something like StyleSheetTweaks, add the CSS
there. Then in the StyleSheet tiddler transclude the new tiddler by
adding

[[StyleSheetTweaks]]

at the bottom of it.

Hope that helps fix the issue,

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