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
/* 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; |