Skip to content

Instantly share code, notes, and snippets.

@rtgibbons
Last active February 18, 2019 17:23
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 rtgibbons/506435d1b804d9725cf10a34aa3e7ecf to your computer and use it in GitHub Desktop.
Save rtgibbons/506435d1b804d9725cf10a34aa3e7ecf to your computer and use it in GitHub Desktop.
Firefox Mojave Dark titlebar w/out tabs
/* 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