In Thunderbid (102) I have numerous sub-folders under "Local Folders / Archives", such as "Friends", "Business" ... I would like to be able to set a specific icon for each one of them. In userChrome.css I have been able to change the icon for the "Archives" special folder, using the syntax:
.tabmail-tab[type="folder"][SpecialFolder="Archive"],
treechildren::-moz-tree-image(folderNameCol, specialFolder-Archive) {
list-style-image: url("images/myIcon.ico") !important;
}
But I have not been able to find the appropriate syntax to change a specific NON special folder icon by access through its name. Does anyone know the answer ?
I tried to set the icon value in userChrome.css, using a syntax like:
/* All non-special folders, e.g those you create */
treechildren::-moz-tree-image(folderNameCol, Name-Friends){
list-style-image: url("images/Friends-16.png") !important;
}
But to no avail.