Created
July 25, 2023 14:35
-
-
Save jerrywaller/d5476e4acbdb2b478b5f9abf37401a0e to your computer and use it in GitHub Desktop.
[Firefox userchrome.css]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .tab-background { | |
| border-radius: 0px 0px !important; | |
| margin-bottom: 0px !important; | |
| } | |
| .tabbrowser-tab:not([selected=true]):not([multiselected=true]) .tab-background { | |
| background-color: color-mix(in srgb, currentColor 5%, transparent); | |
| } | |
| menupopup>menu, | |
| menupopup>menuitem { | |
| padding-block: 2px !important; | |
| } | |
| :root { | |
| --arrowpanel-menuitem-padding: 2px !important; | |
| } | |
| /* sidebery tweaks */ | |
| /* hide the Sidebery banner*/ | |
| #sidebar-box #sidebar-header { | |
| display: none !important; | |
| } | |
| /* hide Firefox native tabs if using Sidebery side tabs. Or not. Your choice - jw */ | |
| #main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar > .toolbar-items { | |
| opacity: 0; | |
| pointer-events: none; | |
| } | |
| #main-window:not([tabsintitlebar="true"]) #TabsToolbar { | |
| visibility: collapse !important; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment