Hi Mal ad Jeremy,

I think I faced the same problem yesterday.

The following CSS changes the color of the button of the View Tollbar on 
every tiddler:


```

html body.tc-body .tc-image-info-button {stroke: white;fill:#2299ee;}
html body.tc-body .tc-image-edit-button {stroke: white;fill:#9922ee;}
html body.tc-body .tc-image-close-button {stroke: white;fill:#99ee22;}

```


Changing the order of the declarations I realized that only the first 
directive does not work.

So a temporary solution could be to duplicate the first declaration:

```

html body.tc-body .tc-image-info-button {stroke: white;fill:#2299ee;}

html body.tc-body .tc-image-info-button {stroke: white;fill:#2299ee;}
html body.tc-body .tc-image-edit-button {stroke: white;fill:#9922ee;}
html body.tc-body .tc-image-close-button {stroke: white;fill:#99ee22;}

```


or to add any other declaration in the first position that will be ignored.

Adding new line o comments in first position does not work for me.


I hope this could help has a temporary workaround and to find a solution! :)




Lorenzo

-- 
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 [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.

Reply via email to