Created
June 28, 2023 12:25
-
-
Save zendbit/0fae6e3d03a6fe791851b828b82c3da5 to your computer and use it in GitHub Desktop.
Hide Firefox Panel Using userChrome.css
This file contains 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
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); | |
#navigator-toolbox { | |
height: 0px !important; | |
min-height: 0px !important; | |
overflow: hidden !important; | |
} | |
#navigator-toolbox:focus, | |
#navigator-toolbox:focus-within, | |
#navigator-toolbox:active { | |
height: auto !important; | |
overflow: visible !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment