Created
May 7, 2021 08:18
-
-
Save un-def/c934ecca174040bb38a889ef4a8e2f79 to your computer and use it in GitHub Desktop.
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"); */ | |
/* hide the native tabs */ | |
#main-window:not([privatebrowsingmode]) #TabsToolbar { | |
visibility: collapse; | |
} | |
/* hide the sidebar header */ | |
#sidebar-header { | |
display: none; | |
} | |
/* hide the sidebar in fullscreen mode */ | |
#main-window[inFullscreen] #sidebar-splitter, #main-window[inFullscreen] #sidebar-box { | |
display: none; | |
} | |
/* shrink the sidebar splitter to 1px */ | |
#sidebar-splitter { | |
width: 1px !important; | |
border-style: none !important; | |
background-color: unset !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment