Skip to content

Instantly share code, notes, and snippets.

@elbym
Created June 14, 2017 07:01
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 elbym/32bab0127be87ac34ed0161d58750ca2 to your computer and use it in GitHub Desktop.
Save elbym/32bab0127be87ac34ed0161d58750ca2 to your computer and use it in GitHub Desktop.
/* Code to Get Colored Titlebar Back in Mozilla Firefox in Windows 10
Created by Vishal Gupta for AskVG.com
http://www.askvg.com/tip-get-colored-titlebar-back-in-mozilla-firefox-in-windows-10/
with some own modifications
*/
#main-window[windowtype="navigator:browser"] {
background-color: transparent !important;
}
.titlebar-button {
background-color: transparent !important;
transition: background-color 0.2s ease;
}
.titlebar-button > .toolbarbutton-icon {
list-style-image: none;
}
.titlebar-button:hover {
background-color: rgba(0, 0, 0, 0.15) !important;
}
#titlebar-close:hover {
background-color: #E81123 !important;
}
#titlebar-close:hover > .toolbarbutton-icon {
list-style-image: url("chrome://browser/skin/caption-buttons.svg#close-white") !important;
}
.tabbrowser-tab {
border: 1px dashed red;
}
.tabbrowser-tab .tab-label {
color: #ccc !important;
transition-duration: .2s;
}
.tabbrowser-tab:hover .tab-label,
.tabbrowser-tab[selected="true"] .tab-label {
color: #111 !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment