Skip to content

Instantly share code, notes, and snippets.

@un-def
Created May 7, 2021 08:18
Show Gist options
  • Save un-def/c934ecca174040bb38a889ef4a8e2f79 to your computer and use it in GitHub Desktop.
Save un-def/c934ecca174040bb38a889ef4a8e2f79 to your computer and use it in GitHub Desktop.
/* @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