Guest User

Untitled

a guest
Jan 20th, 2024
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.81 KB | None | 0 0
  1. /* On macos, the titlebar has to be made high enough */
  2.  
  3. #navigation-toolbox, #tabmail-tabs, #tabmail-arrowscrollbox{ /* Outer tab containers */
  4. min-height: 44px !important;
  5. }
  6.  
  7. .icons-beside-text {
  8. background-color: #3F3F46
  9. }
  10.  
  11. .tabmail-tab { /* Give the tabs a bit of a margin */
  12. margin-top: 3px !important;
  13. margin-bottom: 6px !important;
  14. margin-left: 3px !important;
  15. margin-right: 3px !important;
  16. }
  17.  
  18. .tab-background { /* Round tab corners and add a bit of padding */
  19. padding: 6px;
  20. border-radius: 4px;
  21. }
  22.  
  23. .tab-line { /* Eliminate the line at the top of the tab */
  24. height: 0px !important;
  25. display: none !important;
  26. }
  27.  
  28. .tabmail-tab::after, .tabmail-tab::before { /* Eliminate the line between inactive tabs */
  29. border: none !important;
  30. }
  31.  
  32. .toolbarbutton-1, .searchBox, .themeableSearchBox { /* Eliminate borders, round corners, and increase height on buttons and search bars */
  33. border: none !important;
  34. border-radius: 5px !important;
  35. height: 31px !important;
  36. }
  37.  
  38. #folderTree [title="Archivio"],
  39. [title="Notes"],
  40. [title="Outbox"],
  41. [title="Scheduled"] {
  42. display:none !important;}
  43.  
  44. .sidebar-header {
  45. height: 40px !important;
  46. }
  47.  
  48. .themeable-brighttext {
  49. height: 40px !important;
  50. }
  51.  
  52. .contentTabAddress {
  53. padding-left: 0px !important;
  54. padding-right: 2px !important;
  55. }
  56.  
  57. .contentTabUrlInput {
  58. height: 25px !important;
  59. margin-top: 8px !important;
  60. margin-left: 0px !important;
  61. padding-left: 25px !important;
  62. }
  63.  
  64. .contentTabSecurity {
  65. padding-top: 7px;
  66. padding-right: 3px;
  67. }
  68. .panel-arrowbox { /* hide the arrow on popup menus */
  69. display: none;
  70. }
  71.  
  72. .panel-arrowcontent { /* Eliminate borders, round corners, and increase padding on popup menus */
  73. padding: 5px !important;
  74. border-radius: 5px;
  75. border: none;
  76. }
  77.  
  78. .spaces-toolbar:not([hidden]) {
  79. margin-top: 0px;
  80. }
  81.  
  82. .tab-background[selected="true"] {
  83. box-shadow: var(--tab-shadow) !important;
  84. }
  85.  
  86. .tabmail-tab:hover .tab-background:not([selected="true"]) {
  87. background-color: color-mix(in srgb, currentColor 11%, transparent) !important;
  88. }
  89.  
  90. @media (-moz-content-prefers-color-scheme:light) {
  91. /* Light Theme */
  92. :root {
  93. --tab-shadow: 0px 0px 4px #888;
  94. --toolbar-field-background-color: rgb(230, 230, 234) !important;
  95. }
  96. }
  97.  
  98. @media (-moz-content-prefers-color-scheme:dark) {
  99. /* Dark Theme */
  100. :root {
  101. --tab-shadow: 0px 0px 4px #111 !important;
  102. --toolbar-field-background-color: rgb(28, 27, 34) !important;
  103. }
  104. }
  105.  
  106. .tab-close-button {
  107. padding: 6px !important;
  108. }
  109.  
  110. .tab-close-icon {
  111. width: 12px !important;
  112. height: 12px !important;
  113. }
  114.  
  115. .contentTabToolbar {
  116. height: 40px !important;
  117. }
  118.  
  119. #urlbar-background {
  120. border: none;
  121. box-shadow: none !important;
  122. }
  123.  
Add Comment
Please, Sign In to add comment