Created
April 25, 2021 00:49
-
-
Save curtisbelt/57a8d6280352ef75f83167b993279a2b 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
/** | |
* Hide the default tabs toolbar | |
* I manage tabs as a sidebar using Sidebery addon: https://addons.mozilla.org/en-US/firefox/addon/sidebery/ | |
*/ | |
#main-window[tabsintitlebar="true"] #TabsToolbar > .toolbar-items { | |
opacity: 0; | |
pointer-events: none; | |
} | |
#main-window:not([tabsintitlebar="true"]) #TabsToolbar { | |
visibility: collapse !important; | |
} | |
/** | |
* Move sidebar header to bottom | |
*/ | |
#sidebar-box { | |
display: flex; | |
flex-direction: column-reverse; | |
} | |
#sidebar-box #sidebar { | |
flex: 1 100%; | |
width: 100% !important; | |
max-width: unset !important; | |
} | |
#sidebar-box #sidebar-header { | |
padding: 0 !important; | |
font-size: 14px !important; | |
} | |
#sidebar-box #sidebar-header #sidebar-close { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment