Last active
February 1, 2018 16:24
-
-
Save vwrs/3a09e68af9932afbf6cf2878489f6fa0 to your computer and use it in GitHub Desktop.
~/Library/Application Support/Firefox/Profiles/xxxxxx.default/chrome/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"); | |
/* to hide the native tabs */ | |
/* #TabsToolbar { | |
visibility: collapse; | |
} */ | |
/* to hide the sidebar header */ | |
#sidebar-header { | |
visibility: collapse; | |
} | |
#tabbrowser-tabs { | |
visibility: hidden !important; | |
} | |
/* hide the bookmark icon */ | |
toolbarbutton.bookmark-item > .toolbarbutton-icon { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment