Skip to content

Instantly share code, notes, and snippets.

@Shywim
Forked from stevelandeyasana/hide_native_tabs.css
Last active August 1, 2019 06:59
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 Shywim/5128ff74402132a7988e53362481c705 to your computer and use it in GitHub Desktop.
Save Shywim/5128ff74402132a7988e53362481c705 to your computer and use it in GitHub Desktop.
CSS to hide Firefox's tab bar but keep macOS window buttons (close/minimize/maximize)
/* add to your userChrome.css */
#TabsToolbar {
visibility: collapse;
overflow: visible;
}
#TabsToolbar > * {
visibility: collapse;
}
#TabsToolbar .titlebar-buttonbox-container {
visibility: visible !important;
position: absolute;
right: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment