On 11/01/2016 03:23 AM, Richard Owlett wrote:
> 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.
> 

I did a bit of a combination of what I had and Petr's (thanks Petr) -
when you have unread messages the account and folder will turn red, when
you get a new incoming message the account and folder (headings) will
turn green so you can tell the difference between unread and new.

@namespace
url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";); /*
set default namespace to XUL */
/* 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-weight: bold; font-size: 18px !important;
}

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

treechildren::-moz-tree-cell-text(newMessages-true)
{
font-weight: bold; font-size: 18px !important;
color: green !important;
}


_______________________________________________
support-seamonkey mailing list
[email protected]
https://lists.mozilla.org/listinfo/support-seamonkey

Reply via email to