Guest User

Untitled

a guest
Apr 1st, 2025
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.72 KB | None | 0 0
  1. /* remove window controls */
  2. :root[tabsintitlebar] { --uc-window-control-width: 0px !important; --uc-navbar-gap: 0px !important; }
  3. #titlebar { --uc-window-control-width: 0px; }
  4. #navigator-toolbox { --uc-window-control-width: 0px; }
  5. .titlebar-buttonbox-container { display: none; }
  6. .titlebar-buttonbox { display: none; }
  7.  
  8. /* blend container indicators -- all containers use pink so i don't have to set every color */
  9. .identity-color-pink { --identity-icon-color: #1f1e2622 !important; }
  10.  
  11. /* remove container name from the addressbar */
  12. #userContext-label { display: none; }
  13.  
  14. /* remove the horizontal border between the toolbar and page contents */
  15. #tabbrowser-tabbox { box-shadow: none !important; outline: none !important; }
  16.  
  17. /* fade toolbar buttons */
  18. .toolbarbutton-1:not(:hover), .bookmark-item:not(:hover), :root:not([customizing]) .toolbarbutton-1 { opacity: 0.5 !important; }
  19.  
  20. /* make pinned tabs bigger */
  21. .tab-content[pinned] { padding: 15px !important; }
  22.  
  23. /* tab group colors -- all groups use gray so i don't have to set every color */
  24. .tab-group-label { outline: 0px !important; }                    /* collapsed border */
  25. :root { --tab-group-label-text-dark:     #1b1c20   !important; } /* expanded txt  */
  26.  
  27. :root { --tab-group-color-gray-invert:   #85bdccdd !important; } /* expanded bg   */
  28. :root { --tab-group-color-gray:          #374262dd !important; } /* collapsed bg  */
  29. :root { --tab-group-color-gray-pale:     #ffffff   !important; } /* collapsed txt */
  30.  
  31. /* tab font size */
  32. .tab-label,.tab-group-label { font-size: 12px !important; }
  33.  
  34. /* remove sidebar bottom buttons */
  35. .actions-list { display: none !important; }
  36.  
  37. /* remove big gaps between tabs */
  38. .tab-group-label { margin-block: 0.1px !important; }
  39.  
  40. .tabbrowser-tab {
  41.   flex: none !important;
  42.   padding-block: 0px !important;
  43.   padding-block-start: 0px !important;
  44.   --tab-label-mask-size: 0em !important;
  45.   --tab-icon-end-margin: 5px !important;
  46.   --tab-min-height: 30px !important;
  47. }
  48.  
  49. /* make the addressbar and toolbar the same height */
  50. #urlbar-container { --urlbar-container-height: 36px !important; }
  51. :root { --urlbar-min-height: max(35px) !important; }
  52.  
  53. /* transparency */
  54. #browser                    { background-color: #1b1c2000 !important; }
  55. .browser-toolbox-background { background-color: #1b1c2000 !important; }
  56.  
  57. :root {
  58.   --tabpanel-background-color:  transparent !important;
  59.   --in-content-page-background: transparent !important;
  60.   --in-content-box-background:  transparent !important;
  61.   appearance: -moz-sidebar !important;
  62. }
  63.  
  64. /* make sidebar border/splitter invisible */
  65. .sidebar-splitter { background-color: transparent !important; }
  66.  
  67. /* toolbar transparency */
  68. #urlbar-background { background: #1b1c2000 !important; }
  69.  
  70. /* urlbar suggestions background -- not transparent */
  71. #urlbar:is([open]) hbox#urlbar-background { background: #282828 !important; }
  72.  
  73. /* urlbar borders */
  74. #urlbar[focused] > hbox#urlbar-background { outline-color: #85bdcc77 !important; }
  75.  
  76. /* toolbar buttons background */
  77. #urlbar box#identity-box box { background: inherit !important; }
  78.  
  79. /* pinned tabs background */
  80. tab.tabbrowser-tab[pinned] stack.tab-stack vbox.tab-background { background: #ffffff10 !important; }
  81.  
  82. /* active tab background */
  83. tab.tabbrowser-tab[selected="true"] stack.tab-stack vbox.tab-background { background: #ffffff16 !important; }
  84.  
  85. /* hovered tab background */
  86. tab.tabbrowser-tab:hover stack.tab-stack vbox.tab-background { background: #ffffff16 !important; }
  87.  
  88. /* hibernated tab background */
  89. tab.tabbrowser-tab stack.tab-stack vbox.tab-background { background: transparent !important; }
  90.  
  91. /* regular tab background -- fully transparent */
  92. tab.tabbrowser-tab stack.tab-stack vbox.tab-background { background:  #ffffff00 !important; }
Advertisement
Add Comment
Please, Sign In to add comment