Last active
February 18, 2019 17:23
-
-
Save rtgibbons/506435d1b804d9725cf10a34aa3e7ecf to your computer and use it in GitHub Desktop.
Firefox Mojave Dark titlebar w/out tabs
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
/* hide tabs in toolbar */ | |
#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar .toolbar-items { | |
opacity: 0; | |
pointer-events: none; | |
} | |
#main-window:not([tabsintitlebar="true"]) #TabsToolbar { | |
visibility: collapse !important; | |
} | |
/* clean up borders and color without tabs*/ | |
#navigator-toolbox { | |
--tabs-border-color: none !important; | |
} | |
#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar { | |
background-color: rgb(50,50,52); | |
border-color: rgb(50,50,52); | |
height: 25px; | |
} | |
#TabsToolbar .titlebar-spacer { | |
border-inline-end: none !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment