Skip to content

Instantly share code, notes, and snippets.

@iamdamian
iamdamian / userChrome.css
Last active April 2, 2024 16:54
Switching from Chrome to Firefox? Fix Firefox's look & feel with a few lines of CSS
/* How do you use this? See https://www.userchrome.org/how-create-userchrome-css.html */
/* Hide blue stripe on active tab */
.tab-line[selected="true"] {
opacity: 0 !important;
}
/* Hide gray stripe on tab being hovered over */
.tabbrowser-tab:hover .tab-line {
opacity: 0 !important;