Skip to content

Instantly share code, notes, and snippets.

@stevelandeyasana
Created March 19, 2019 19:34
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save stevelandeyasana/bd1a1fe0a1adea0ef9ffa90b31f09aa1 to your computer and use it in GitHub Desktop.
Save stevelandeyasana/bd1a1fe0a1adea0ef9ffa90b31f09aa1 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;
margin-top: 5px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment