Skip to content

Instantly share code, notes, and snippets.

@rtgibbons
Created April 20, 2021 16:19
Show Gist options
  • Save rtgibbons/db186ef3b3b8586946b78cda1f6aa568 to your computer and use it in GitHub Desktop.
Save rtgibbons/db186ef3b3b8586946b78cda1f6aa568 to your computer and use it in GitHub Desktop.
userChrome for Tree Style Tabs on Firefox 89 - Removes tabs on top and colors to dark mode
#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar > .toolbar-items {
opacity: 0;
pointer-events: none;
}
#main-window:not([tabsintitlebar="true"]) #TabsToolbar {
visibility: collapse !important;
}
#sidebar-box[sidebarcommand=treestyletab_piro_sakura_ne_jp-sidebar-action] #sidebar-header {
display: none
}
#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) .titlebar-spacer {
display: none;
}
#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) .titlebar-buttonbox-container {
margin-top: -8px;
}
#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar {
background-color: rgb(43,43,51);
height: 15px
}
#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #nav-bar {
box-shadow: none !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment