Skip to content

Instantly share code, notes, and snippets.

@joar
Last active November 17, 2017 13:42
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 joar/727075a36e7d954eb1ab8f3d361431d3 to your computer and use it in GitHub Desktop.
Save joar/727075a36e7d954eb1ab8f3d361431d3 to your computer and use it in GitHub Desktop.
Hide tabs in Firefox 57

Hide tabs in Firefox 57

Place userChrome.css in ~/.mozilla/firefox/*.default/chrome/. Create the chrome folder if it does not exist.

  • Hide the tab bar at the top of the window.
  • Shrink sidebar-header.
  • Make sidebar-header dark.
#TabsToolbar {
visibility: collapse;
}
#sidebar-header {
font-size: 1em !important;
padding: 0px !important;
}
#sidebar-box {
background-color: var(--chrome-background-color) !important;
color: var(--tab-text-color) !important;
}
#sidebar-header {
border-bottom-color: var(--chrome-nav-bar-controls-border-color) !important;
}
#sidebar-splitter {
width: 1px !important;
border: 1px var(--chrome-secondary-background-color) !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment