Skip to content

Instantly share code, notes, and snippets.

@ZuZuD
Created December 14, 2017 23:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ZuZuD/e5450922868f23d1d02956ea628ab2ba to your computer and use it in GitHub Desktop.
Save ZuZuD/e5450922868f23d1d02956ea628ab2ba to your computer and use it in GitHub Desktop.
userChrome.css @MacBook
Using the side-bar with Tree tab mode
Auto-hide
No sidebar-header */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
#main-window {
--toolbar-bgcolor: #31363b !important;
}
#tabbrowser-tabs {
visibility: collapse !important;
}
#sidebar-header {
visibility: collapse !important;
}
.closebox {
display: none
}
.tab:hover .closebox {
display: block;
}
.tab {
padding-top: 0px;
padding-bottom: 0px;
}
.tab .icon {
padding-top: 2px; /* reducing it by 2px */
padding-bottom: 2px;
}
:root {
--tab-height: 20px; /* reducing it by 4px */
--sidebar-hover-width: 15px;
--sidebar-visible-width: 260px;
}
/* #sidebar-splitter styles the divider between the sidebar and the rest of the browser. */
#sidebar-splitter {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment