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/
_______________________________________________
support-seamonkey mailing list
[email protected]
https://lists.mozilla.org/listinfo/support-seamonkey

Reply via email to