notepad987

Thunderbird userChrome.css file

Jun 17th, 2025 (edited)
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.45 KB | Software | 0 0
  1.  
  2. /* Places the Menu Bar - File, Edit, View etc. at the top */
  3. .titlebar-buttonbox-container {
  4. position: fixed;
  5. top: 0px;
  6. right: 0px;}
  7.  
  8. #button-appmenu {
  9. position: fixed;
  10. top: 0px;
  11. right: 10px;}
  12.  
  13.  
  14. /* Color of menu bar - white, Color of the text is black */
  15. #toolbar-menubar {
  16. order: 1;
  17. background-color: #FFFFFF !important;
  18. color: #000000 !important;}
  19.  
  20. unified-toolbar {
  21. order: 2;}
  22.  
  23. #tabs-toolbar {
  24. order: 3;
  25. background-color: #cecece !important; /* light grey */
  26. color: #000000 !important; /* black */}
  27.  
  28.  
  29. /* Message List Pane - Background-color odd rows - light grey & text color dark green */
  30. table.tree-table tr:nth-child(odd)
  31. {background-color: #e4e4e7; color: #0D3C39 !important; font-family: 'Roboto'; font-size: 13px; font-weight: 500; !important;}
  32.  
  33. /* Message List Pane - Background-color even rows - white color & text color dark green */
  34. table.tree-table tr:nth-child(even)
  35. {background-color: #FFFFFF; color: #0D3C39 !important; font-family: 'Roboto'; font-size: 13px; font-weight: 500; !important;}
  36.  
  37. /* Message List Pane - light blue color when row is selected */
  38. [is="tree-view-table-body"] > .selected {
  39. color: black !important;
  40. background-color: #52aaff !important;}
  41.  
  42. /* Message List Pane - light green specified on hover with left side red border */
  43. tr[is="thread-row"]:hover {
  44. background-color: #66CDAA !important;
  45. border-left: 5px solid red; !important;}
  46.  
  47.  
  48. /* Message List Pane - Grid lines */
  49. #threadTree table[is="tree-view-table"] {
  50. border-collapse: collapse !important;}
  51.  
  52. #threadTree tr[is="thread-row"] {
  53. border-bottom: 1px solid green !important;}
  54.  
  55. #threadTree tr[is="thread-row"] td {
  56. border-right: 1px solid green !important;}
  57.  
  58.  
  59. /* Folder Pane - on left side, background color is light grey */
  60. #folderPane, #folderPaneHeaderBar {
  61. background-color: #F0F0F0 !important;}
  62.  
  63.  
  64. /* Folder Pane - folder names, font, font size - text color is dark green*/
  65. .name {color: #0D3C39 !important; font-family: 'Georgia'; font-size: 13px; font-weight: 600; !important;}
  66.  
  67.  
  68. /* Folder Pane - hover color, once a row is clicked on it will either display the Windows Titlebar color you choose if you do not specify a color here. The hover color will continue on any other row you hover over. hover color is light green, border-left is red */
  69. .container:hover {
  70. background-color: #66CDAA !important;
  71. border-color: transparent !important;
  72. border-left: 3px solid #FF0000 !important;}
  73.  
  74.  
  75. /* Folder Pane - light blue specified */
  76. li.selected > .container {
  77. color: black !important;
  78. background-color: #52aaff !important;
  79. border: 0px solid #000000 !important;}
  80.  
  81.  
  82. /* this is the color when you drag an email to another folder and that folder is highlighted. Light green color */
  83. #folderTree:focus-within li.selected > .container,
  84. #folderTree li.drop-target > .container {
  85. background-color: #66CDAA !important;
  86. border: 0px solid red !important;
  87. border-radius: 0px;}
  88.  
  89.  
  90. /* This is the height of the From Me, To, Subject lines from each other. The bigger the number the wider the spread in height */
  91. #messageHeader {row-gap: 0px !important;}
  92.  
  93.  
  94. /* Write Window Contacts Panel. Write New Message Window: address background-color & color AND hover background-color & color */
  95.  
  96. /* hover is light green */
  97. #abResultsTree tbody tr:hover {
  98. background-color: #66CDAA !important;
  99. color: black !important; /* text color */
  100. outline-offset: -0px !important;
  101. outline: 0px solid #000000 !important;
  102. }
  103.  
  104. /* selected is light blue */
  105. #abResultsTree tbody tr:is(.current,.selected) {
  106. background-color: #52aaff !important;
  107. color: black !important; /* text color */
  108. outline-offset: -0px !important;
  109. outline: 0px solid #000000 !important;
  110. }
  111.  
  112.  
  113. /* from sifferedd */
  114.  
  115. #folderPaneHeaderBar {
  116. padding-bottom: 10px !important;
  117. }
  118.  
  119. #folderPaneGetMessages::after {
  120. content:"Get Messages" !important;
  121. background-color: MediumAquamarine !important; /* of button */
  122. position: fixed !important;
  123. left: 10px;
  124. top: 11.5px;
  125. font-size: 10px !important;
  126. font-weight: bold !important;
  127. padding: 6px !important;
  128. border-radius: 3px 3px 3px 3px; !important;
  129. }
  130.  
  131. #folderPaneWriteMessage {
  132. background-color: MediumAquamarine !important; /* of button */
  133. color: #000000 !important;
  134. font-size: 10px !important;
  135. font-weight: bold !important;
  136. border: 0px solid transparent !important; /* removes border */
  137. }
  138.  
Advertisement
Add Comment
Please, Sign In to add comment