Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Color of "Unread" folders in TB3

588 views
Skip to first unread message

Fred Quist

unread,
Feb 8, 2010, 2:00:53 PM2/8/10
to support-t...@lists.mozilla.org
In Thunderbird 3, the color of unread folders is a fairly light blue.
Once a folder is selected, the text turns to bold black. Is there some
way to change the color of the unread folder - I find the light blue
somewhat difficult to read and certainly not as obvious as the bold
black (the default in TB2). I looked in the Configuration Editor but
couldn't readily identify the proper item to change.

Fred

Nir

unread,
Feb 9, 2010, 12:57:21 PM2/9/10
to

Goto Tb profile folder.
Open (or create if doesn't exist) chrome folder.
Open (or create if doesn't exist) userChrome.css file in your word editor.
Put following css style in there

/* Make Folders containing Unread messages visually distinct from others */
treechildren::-moz-tree-cell-text(folderNameCol, hasUnreadMessages-true)
{ color: green !important; }

you can change 'color' to any other color.


signature.asc

Cal Tinson

unread,
Feb 9, 2010, 3:06:21 PM2/9/10
to
On 2/9/2010 12:57 PM eastern, Nir wrote:

> Goto Tb profile folder.
> Open (or create if doesn't exist) chrome folder.
> Open (or create if doesn't exist) userChrome.css file in your word editor.
> Put following css style in there
>
> /* Make Folders containing Unread messages visually distinct from others */
> treechildren::-moz-tree-cell-text(folderNameCol, hasUnreadMessages-true)
> { color: green !important; }
>
> you can change 'color' to any other color.

Hi, Nir - got the syntax to change the font size of menus, toolbars,
folder pane stuff, etc.? (As noted in one of the 3.0 docs, some older
css entries don't work.)


Philip Rhoades

unread,
Feb 9, 2010, 6:47:40 PM2/9/10
to Nir, support-t...@lists.mozilla.org
Nir,


Where is this folder? In the thunderbird dir (Fedora 12 x86_64) I see only:

profiles.ini

Thanks,

Phil.

--
Philip Rhoades

GPO Box 3411
Sydney NSW 2001
Australia
E-mail: ph...@pricom.com.au

Roy Smith

unread,
Feb 9, 2010, 10:10:51 PM2/9/10
to

Well just open that in your text editor of choice and you will see the
path to the profile directory.

--

Roy Smith
Windows 7 Home Premium

Timestamp: Tuesday, February 09, 2010 9:10:47 PM

Philip Rhoades

unread,
Feb 10, 2010, 3:47:11 AM2/10/10
to Roy Smith, support-t...@lists.mozilla.org
Roy,


OK, after doing that, ALL the folders with unread mails turn green,
whereas only some of them were blue before (new mails since the last
view of the folder?).

Cal Tinson

unread,
Feb 10, 2010, 12:10:51 PM2/10/10
to

Nir

unread,
Feb 13, 2010, 9:37:29 AM2/13/10
to

> OK, after doing that, ALL the folders with unread mails turn green,


> whereas only some of them were blue before (new mails since the last
> view of the folder?).

In that case, instead of my previous css style code, use the following

/* Make Folders containing Unread messages visually distinct from others */

treechildren::-moz-tree-cell-text(hasUnreadMessages-true, newMessages-false)
{
color: green !important;
}

/* Change Folder Display to indicate New Message(s) has arrived */
treechildren::-moz-tree-cell-text(folderNameCol, newMessages-true)

{
color: red !important;
font-weight: bold !important;
}


signature.asc

Philip Rhoades

unread,
Feb 13, 2010, 11:41:30 AM2/13/10
to Nir, support-t...@lists.mozilla.org
Nir,


Red is working but not green - looks like a folderNameCol error?

Nir

unread,
Feb 13, 2010, 12:17:26 PM2/13/10
to
On Saturday 13 February 2010 10:11 PM, Philip Rhoades wrote:
>> In that case, instead of my previous css style code, use the following
>>
>> /* Make Folders containing Unread messages visually distinct from
>> others */
>> treechildren::-moz-tree-cell-text(hasUnreadMessages-true,
>> newMessages-false)
>> {
>> color: green !important;
>> }
>>
>> /* Change Folder Display to indicate New Message(s) has arrived */
>> treechildren::-moz-tree-cell-text(folderNameCol, newMessages-true)
>>
>> {
>> color: red !important;
>> font-weight: bold !important;
>> }
>
>
> Red is working but not green - looks like a folderNameCol error?
>
> Thanks,
>
> Phil.


Remove 'newMessages-false' and it should work.

/* Make Folders containing Unread_Messages visually distinct from others */


treechildren::-moz-tree-cell-text(folderNameCol, hasUnreadMessages-true)
{
color: green !important;
}

/* Change Folder Display to indicate New Message(s) has arrived */

signature.asc

Philip Rhoades

unread,
Feb 13, 2010, 7:54:42 PM2/13/10
to Nir, support-t...@lists.mozilla.org
Nir,


Thanks - it does work. However, newMessages-true is not quite what I
want - I would like "newMessages_since_last_time_i_clicked_on
folder-true" - is that possible?

0 new messages