Created
March 19, 2019 19:34
-
-
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)
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
/* 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