Hallo,
Teste mal die folgenden Code, am besten separat von deinem obigen CSS Code.
Farbe des Konten-Namens bei neu herunter geladenen Mails:
CSS
/* Accounts with new mail red and bold */
#folderTree > treechildren::-moz-tree-cell-text(isServer-true, biffState-NewMail) {
color: #FF0000 !important;
font-weight: bold !important; }
Textfarbe von Verzeichnissen mit neu heruntergeladenen Mails:
CSS
/* Folder color when new messages arrive */
#folderTree > treechildren::-moz-tree-cell-text(folderNameCol, newMessages-true) {
color: #FF0000 !important;
font-weight: bold !important;
font-style: italic !important; }
Die folgenden CSS Code dienen zur Hervorhebung von Ordnern und Unterordnern, die ungelesene Mails enthalten:
CSS
/* Make Folders containing unread messages visually distinct from others */
#folderTree treechildren::-moz-tree-cell-text(folderNameCol, hasUnreadMessages-true, selected, focus) {
font-weight: bold !important;
font-style: italic !important; }
/* Change the appearance of folders which have a subfolder containing unread messages */
#folderTree treechildren::-moz-tree-cell-text(folderNameCol, subfoldersHaveUnreadMessages-true){
font-weight: bold !important;
font-style: italic !important; }