Fred
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.
> 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.)
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
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
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?).
Finally found it!!:
http://kb.mozillazine.org/Pane_and_menu_fonts
> 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;
}
Red is working but not green - looks like a folderNameCol error?
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 */
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?