ssashag

Firefox CSS 23.07.25

Jul 23rd, 2025
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | Source Code | 0 0
  1. /* Import your desired components first */
  2.  
  3. @import url(chrome/round_ui_items.css);
  4. @import url(chrome/curved_tabs.css);
  5. @import url(chrome/tab_separator_lines.css);
  6. @import url(chrome/rounded_menupopups.css);
  7. @import url(chrome/integrated_searchbar_popup.css);
  8.  
  9. /* Apply your custom modifications after imports */
  10.  
  11. /* New Tab Button and dropdown position */
  12. #tabs-newtab-button {padding-bottom: 6px !important; padding-right: 9px !important;}
  13. #alltabs-button {padding-top: 4px !important; padding-right: 9px !important;}
  14.  
  15. /* Bring back tab separator lines that were removed in Proton */
  16. .tabbrowser-tab{
  17. background-image: linear-gradient(
  18. transparent 15%, /* colour of top segment - from top dowm to 15% of height */
  19. rgb(239, 202, 195) 15% 75%, /* colour of middle segment - solid colour from 15% to 65% of height */
  20. transparent 75% /* colour of bottom segment - from 65% of height down to bottom */
  21. );
  22. background-size: 2px 100%; /* width of separators 1px */
  23. background-repeat: no-repeat;
  24. }
  25.  
  26. /* Tab Font Family */
  27. #navigator-toolbox { font-family: SF Pro !important; font-weight: 420;}
  28.  
  29. /* Bookmark Bar Font */
  30. .bookmark-item {font-size: 11.5px !important;}
  31.  
  32. /* URL Bar Outline */
  33. :root {--focus-outline-color: rgb(219,173,157)}
  34.  
  35. /* Tab Curve Degree */
  36. #tabbrowser-tabs{--uc-tab-curve-size: 11px !important; --uc-tab-line-color: rgb(239, 202, 195) !important; --tab-min-height: 32px;}
  37.  
  38. /* Tab Text Vertical Alignment */
  39. .tab-content{ padding-bottom: 3px !important; }
  40.  
  41. /* Tab Text Space Between Text and Exit Button */
  42. .tab-label-container:not([pinned]) {margin-right: 8px;}
  43.  
  44. /* ? */
  45. /* .tab-label {margin-inline: 2px} */
  46.  
  47. /* Space Between Text in Tabs */
  48. .tab-content {--tab-inline-padding: 11px}
  49.  
  50. /* Space Above and Below URL Bar */
  51. toolbaritem#urlbar-container {--urlbar-padding-block: 6px 2px}
  52.  
  53. /* Line between tab bar and tabs */
  54. :root {--tabs-border-color: transparent !important}
  55. :root {--tabs-navbar-separator-color: rgb(242, 225, 219) !important}
  56.  
  57. /* Tab Height */
  58. #tab-background { max-height: 32px !important;}
  59. :root { --tab-min-height: 10px !important;
  60. --tab-max-height: 10px !important;}
  61.  
  62. /* Tab Text Size */
  63. .tab-text.tab-label{font-size: 12px !important}
  64.  
  65. /* Space around bookmark bar */
  66. toolbarbutton.bookmark-item:not(.subviewbutton){ padding-block: 6px 8px !important; padding-inline: 5px !important }
  67. #tabbrowser-tabs {margin-top: 7px !important}
  68.  
  69. /* Bookmark Bar Text size */
  70. .tab-text.tab-label{font-size: 13px;}
  71.  
Advertisement
Add Comment
Please, Sign In to add comment