Vic Moz Garcia has written on 11/1/2013 6:38 PM:
>
> Correct, that does not work on 24.1.0
> this is the one that work (bold and red):
> userChrome.css
>
> @namespace
> url("
http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
>
> /* Change the color of unread messages and containing folders*/
> treechildren::-moz-tree-cell-text(folderNameCol, hasUnreadMessages-true) {
> color: red !important;
> font-weight: bold !important;
> }
>
> treechildren::-moz-tree-cell-text(folderNameCol, specialFolder-Inbox,
> newMessages-true) {
> font-weight: bold !important;
> color: red !important;
> }
Here is a portion of the userChrome.css I had been using:
/* Folder with unread/new messages *************
treechildren::-moz-tree-cell-text(hasUnreadMessages-true)
{
color: red !important;
}
/* Folder with subfolder, contains unread/new messages ***********
treechildren::-moz-tree-cell-text(subfoldersHaveUnreadMessages-true)
{
color: red !important; font-weight: bold !important;
}
/* Make Folders containing Unread_Messages visually distinct from others */
treechildren::-moz-tree-cell-text(folderNameCol, hasUnreadMessages-true)
{
color: blue !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;
}
/* New message subjects in red */
#threadTree > treechildren::-moz-tree-cell-text(new) {
font-weight: bold; color: red !important; }
Any of that look familiar?