Last active
November 18, 2019 18:42
-
-
Save danielerapati/f5fc1249db2958ad681738e3b54bf34e to your computer and use it in GitHub Desktop.
deactivate tabs bar in Firefox 57+, see https://bugzilla.mozilla.org/show_bug.cgi?id=1332447#c42 and https://lifehacker.com/197715/customize-firefox-with-userchromecss
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
@-moz-document url("chrome://browser/content/browser.xhtml") { | |
#toolbar-menubar { | |
display: none; | |
} | |
#TabsToolbar { | |
height: 0px; | |
} | |
#tabbrowser-tabs { | |
visibility: collapse; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment