Skip to content

Instantly share code, notes, and snippets.

@liepieshov
Last active June 5, 2023 22:49
Show Gist options
  • Save liepieshov/aa138b8370055b022e30e5ccd0893388 to your computer and use it in GitHub Desktop.
Save liepieshov/aa138b8370055b022e30e5ccd0893388 to your computer and use it in GitHub Desktop.
Firefox hide top tabs and treestyletab header for TreeStyleTab firefox addon
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* to know your profile dir location go to about:config in your firefox browser */
.tab-background {
background-color: red; /* this sets the color of the tab background */
}
.tab-line {
background-color : red; /* this sets the color of the line above the tab */
}
#TabsToolbar {
visibility: collapse !important;
}
#sidebar-header {
display: none;
}
#sidebar {
width: 200px !important;
min-width: 200px !important;
}
#sidebar:hover {
#width: 250px !important;
}
#sidebar-header {
visibility: collapse !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment