Thunderbird CSS : new mail

Discuss application theming and theme development.
Post Reply
Gloops
Posts: 106
Joined: April 19th, 2006, 6:12 am

Thunderbird CSS : new mail

Post by Gloops »

Hello everybody,

I recently learned how to exhibit with CSS mails that were received the last time the box was checked :

Code: Select all

#folderPaneBox > #folderTree > treechildren::-moz-tree-cell-text(biffState-NewMail) {
      color:#0000FF!important;
}
Can anybody tell me how to select folders with mails received since the last time the folder was visited ?
morat
Posts: 6404
Joined: February 3rd, 2009, 6:29 pm

Re: Thunderbird CSS : new mail

Post by morat »

Try replacing biffState-NewMail with newMessages-true.

Styling the Folder Pane, folderPane.js & folderPane.css
http://developer.mozilla.org/en-US/Add- ... older_Pane
http://mxr.mozilla.org/comm-release/sou ... derPane.js
http://mxr.mozilla.org/comm-release/sou ... erPane.css

It would be difficult to add a new dynamic property like biffState-NewMail.
Post Reply