Advertisement
Guest User

Untitled

a guest
Aug 14th, 2023
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.44 KB | None | 0 0
  1. /*
  2.   initial attempt at styling Thunderbird Supernova v115
  3.   refer to Thunderbird DevTools:  hamburger menu > Tools > Developer Tools
  4. */
  5.  
  6. @namespace html url("http://www.w3.org/1999/xhtml");
  7.  
  8. #titlebar, #toolbar-menubar, #mail-menubar {
  9.     font-size: 1.1rem !important;
  10.     font-weight: 500 !important;
  11.     font-family: 'Acari Sans' !important;
  12. }
  13.  
  14. #folderPane {
  15.     font-size: 1.2rem !important;
  16.     background-color: #E9F7EF !important;
  17.     font-family: 'Acari Sans' !important;
  18.     color: #212F3D !important;
  19. }
  20.  
  21. #threadTree {
  22.     font-family: 'Public Sans' !important;
  23. }
  24. #threadTree td {
  25.     background-color: #F7FBF7 !important;
  26.     color: #717D7E !important;
  27. }
  28. #threadTree .thread-card-row {
  29.     font-weight: 400;
  30. }
  31.  
  32. #threadTree span.sender {
  33.     /* font-weight: 600; */
  34. }
  35. #threadTree tr[data-properties~="unread"] td {
  36.     color: #212F3D !important;
  37.     background-color: #F2F7F2  !important;
  38. }
  39. #threadTree .thread-card-container {
  40.     padding-left: 0.25em;
  41. }
  42. #threadTree tr[data-properties~="unread"] .thread-card-container {
  43.     border-left: 2px solid #58D68D;
  44.     font-weight: normal;
  45. }
  46. #threadTree tr[data-properties~="unread"] .thread-card-container span.sender {
  47.     font-style: italic;
  48.     font-weight: 600 !important;
  49. }
  50. #threadTree .thread-card-container .thread-card-subject-container span.subject {
  51.     font-weight: 400 !important;
  52. }
  53. #threadTree tr[data-properties~="unread"] .thread-card-container .thread-card-subject-container span.subject {
  54.     font-weight: 200;
  55. }
  56.  
  57.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement