Advertisement
Guest User

Thunderbird Custom Folder Colours userChrome.css

a guest
Sep 11th, 2020
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.82 KB | None | 0 0
  1. /* Custom Folder Colours */
  2. /* All non-special folders, e.g those you create */
  3. treechildren::-moz-tree-image(folderNameCol){
  4.   fill: #663300 !important;
  5. }
  6.  
  7. /* Mailbox icons next to the account names */
  8. treechildren::-moz-tree-image(folderNameCol, isServer-true) {
  9.   fill: #00b386 !important;
  10. }
  11.  
  12. /* Inbox */
  13. .tabmail-tab[type="folder"][SpecialFolder="Inbox"],
  14. treechildren::-moz-tree-image(folderNameCol, specialFolder-Inbox) {
  15.   fill: #0da50d !important;
  16. }
  17.  
  18. /* Sent */
  19. .tabmail-tab[type="folder"][SpecialFolder="Sent"],
  20. treechildren::-moz-tree-image(folderNameCol, specialFolder-Sent) {
  21.   fill: #ff4000 !important;
  22. }
  23.  
  24. /* Trash */
  25. .tabmail-tab[type="folder"][SpecialFolder="Trash"],
  26. treechildren::-moz-tree-image(folderNameCol, specialFolder-Trash) {
  27.   fill: #ff0000 !important;
  28. }
  29.  
  30. /* Junk */
  31. .tabmail-tab[type="folder"][SpecialFolder="Junk"],
  32. treechildren::-moz-tree-image(folderNameCol, specialFolder-Junk) {
  33.   fill: #ff0066 !important;
  34. }
  35.  
  36. /* Archives */
  37. .tabmail-tab[type="folder"][SpecialFolder="Archive"],
  38. treechildren::-moz-tree-image(folderNameCol, specialFolder-Archive) {
  39.   fill: #b300b3 !important;
  40. }
  41.  
  42. /* Templates */
  43. .tabmail-tab[type="folder"][SpecialFolder="Templates"],
  44. treechildren::-moz-tree-image(folderNameCol, specialFolder-Templates) {
  45.   fill: #1a1aff !important;
  46. }
  47.  
  48. /* Drafts */
  49. .tabmail-tab[type="folder"][SpecialFolder="Drafts"],
  50. treechildren::-moz-tree-image(folderNameCol, specialFolder-Drafts) {
  51.   fill: #751aff !important;
  52. }
  53.  
  54. /* Outbox */
  55. .tabmail-tab[type="folder"][SpecialFolder="Outbox"],
  56. treechildren::-moz-tree-image(folderNameCol, specialFolder-Outbox) {
  57.   fill: #ff4000 !important;
  58. }
  59.  
  60. /* Saved Search Folder */
  61. .tabmail-tab[type="folder"][SpecialFolder="Virtual"],
  62. treechildren::-moz-tree-image(folderNameCol, specialFolder-Virtual) {
  63.   fill: #33cccc !important;
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement