Skip to content

Instantly share code, notes, and snippets.

@curtisbelt
Created April 25, 2021 00:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save curtisbelt/57a8d6280352ef75f83167b993279a2b to your computer and use it in GitHub Desktop.
Save curtisbelt/57a8d6280352ef75f83167b993279a2b to your computer and use it in GitHub Desktop.
Firefox userChrome.css
/**
* 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