Review for Phoenity Icons by Ken
Rated 5 out of 5 stars
Please remove the mail icon for the subject field.
It should only show an icon if you have replied to a message (not for every message).
Edit:
Thank you, this will work nicely!
I'll take 4 stars, thank you :)
As a workaround you can add this to userChrome.css:
/* ..... restore default subject column icons ..... */
treechildren::-moz-tree-image(subjectCol) {
list-style-image: none !important;
}
treechildren::-moz-tree-image(subjectCol, forwarded) {
list-style-image: url("chrome://messenger/skin/icons/forward.svg") !important;
}
treechildren::-moz-tree-image(subjectCol, replied) {
list-style-image: url("chrome://messenger/skin/icons/reply.svg") !important;
}
treechildren::-moz-tree-image(subjectCol, replied, forwarded) {
list-style-image: url("chrome://messenger/skin/icons/reply-forward.svg") !important;
}
treechildren::-moz-tree-image(subjectCol, new) {
list-style-image: url("chrome://messenger/skin/icons/newmail.svg") !important;
}
treechildren::-moz-tree-image(subjectCol, imapdeleted) {
list-style-image: url("chrome://messenger/skin/icons/cancel.svg") !important;
}
To create your own collections, you must have a Mozilla Add-ons account.