Spletno mesto bo delovalo z omejenimi zmožnostmi, medtem ko na njem izvajamo vzdrževalna dela za vas. Če članki ne rešijo vaše težave in želite zastaviti vprašanje, naša skupnost za podporo čaka na vas na @FirefoxSupport na Twitterju in na /r/firefox na Redditu.

Iskanje po podpori

Izogibajte se prevarantski tehnični podpori. Nikoli vam ne bomo naročili, da pokličete telefonsko številko ali nam pošljete osebne podatke. Sumljivo dejavnost prijavite z gumbom »Prijavi zlorabo«.

Več o tem

Can I set the Folder Name color for Account folders that have UNREAD messages?

  • 2 odgovora
  • 0 ima to težavo
  • 1 ogled
  • Zadnji odgovor od 4WoofGrrrr

more options

I have the following in my userChrome.css to set the color of the Folder Name to green for Accounts that have NEW messages:

treechildren::-moz-tree-cell-text(isServer-true, folderNameCol, biffState-NewMail) {

 font-weight: bold !important;
 color: #00DD22 !important;

}

Can I set the color of the Folder Name for Accounts that have UNREAD messages? If so, what selectors would I use?

Thanks, ---Mark

I have the following in my userChrome.css to set the color of the Folder Name to green for Accounts that have NEW messages: treechildren::-moz-tree-cell-text(isServer-true, folderNameCol, biffState-NewMail) { font-weight: bold !important; color: #00DD22 !important; } Can I set the color of the Folder Name for Accounts that have UNREAD messages? If so, what selectors would I use? Thanks, ---Mark

Spremenil 4WoofGrrrr

Vsi odgovori (2)

more options

Try this:

/* Highlight Folders if subfolders have unread messages */
treechildren::-moz-tree-cell-text(subfoldersHaveUnreadMessages-true) {
  color: red !important;
}

/* Make Folders having Unread_Messages distinct from others */
treechildren::-moz-tree-cell-text(hasUnreadMessages-true) {
  color: blue !important;
}

Help/More Troubleshooting, Profile Folder, Open Folder, close TB, create a new folder named chrome, create a new document in chrome with a text editor, name it userChrome.css, Save as type: All files *.*, copy in the above code, change the colors as desired. Toggle toolkit.legacyUserProfileCustomizations.stylesheets to true in Settings/General/Config. editor, restart TB.

more options

sfhowes said

Try this:
/* Highlight Folders if subfolders have unread messages */
treechildren::-moz-tree-cell-text(subfoldersHaveUnreadMessages-true) {
  color: red !important;
}

/* Make Folders having Unread_Messages distinct from others */
treechildren::-moz-tree-cell-text(hasUnreadMessages-true) {
  color: blue !important;
}


Yeah, thanks. I tried that. It doesn't seem to work for the ACCOUNT (IMAP) Folder.

Spremenil 4WoofGrrrr