Created
March 2, 2018 20:32
-
-
Save Teqqles/57b47dff9779e4c59584584cb7bab975 to your computer and use it in GitHub Desktop.
Hide addressbar + tabs on Firefox 57 profile
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
/* | |
* Do not remove the @namespace line -- it's required for correct functioning | |
*/ | |
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */ | |
/* | |
* Hide tab bar, navigation bar and scrollbars | |
* !important may be added to force override, but not necessary | |
*/ | |
#TabsToolbar {visibility: collapse;} | |
#navigator-toolbox {visibility: collapse;} | |
#content browser {margin-right: -14px; margin-bottom: -14px;} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment