Created
April 20, 2021 16:19
-
-
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
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
#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