On 10/31/2016 6:11 PM, NoOp wrote:
On 10/31/2016 3:55 AM, Richard Owlett wrote:
On 10/30/2016 4:40 PM, Petr Voralek wrote:
     Hello!

    On Sunday, 30.10.2016 12:27(+0100) *Richard Owlett* wrote, and I quote
(in part):

    I wish instead to change the color of the folder title to *RED*.

    You would try something like this:

   -----(Cut)-----
treechildren::-moz-tree-cell-text(folderNameCol, biffState-NewMail,
isServer-true) {
font-weight: bold !important;
color: red !important;
}
   -----(Cut)-----

    (Stylish addon style)


I assumed that was to be appended to my existing user.js .
I haven't done anything with user.js in several years.
It had no apparent effect.
Did "> (Stylish addon style)  " mean something I didn't catch?
Thank you for your time.




Not sure if this is what you are looking for - see:
https://s18.postimg.org/5tegmcvrt/highlight.png
but if so you can easily put into userChrome.css:

/* Make unread messages red and bold */
treechildren:-moz-tree-cell-text(unread) {
     color: red !important;
     font-style: Bold; font-size: 15px !important;
}
/* Folder with unread/new messages */
treechildren::-moz-tree-cell-text(hasUnreadMessages-true)
{
   color: red !important;
     font-style: Bold; font-size: 15px !important;
}

and tweak accordingly.

These might be of some help:
http://kb.mozillazine.org/Bad_Eyesight_-_Thunderbird
http://kb.mozillazine.org/Pane_and_menu_fonts
https://www.eriwen.com/css/tweaking-thunderbirds-chrome/


Not sure if any of the code snippets already posted do quite what I was trying for. But in combination with the above links (and some implied links) I should have something very useful. I think I've have my homework assignment. Thanks to all.

_______________________________________________
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey

Reply via email to