Last active
September 15, 2022 14:57
-
-
Save jps/b2f664a5533e4e477c2ad81af5ee2d4c to your computer and use it in GitHub Desktop.
Windows Firefox userChrome.css
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
| /* about:config - enable toolkit.legacyUserProfileCustomizations.stylesheets */ | |
| /* To hide horizontal bars */ | |
| #main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar { | |
| display: none; | |
| } | |
| #main-window:not([tabsintitlebar="true"]) #TabsToolbar { | |
| visibility: collapse !important; | |
| } | |
| /* For Tree Style Tab */ | |
| #sidebar-header{ | |
| display: none; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment