Created
April 8, 2015 08:51
-
-
Save sshnaidm/3acc1aacd0de319ee437 to your computer and use it in GitHub Desktop.
ATH firefox tabs CSS fix
This file contains hidden or 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
/* OVERRIDE FF TAB DIMMING ON UNSELECTED TABS */ | |
/* more specific but doesn't seem necessary */ | |
#tabbrowser-tabs[fade_on_pending] > .tabbrowser-tab[pending] > .tab-stack > .tab-content > .tab-label { | |
opacity: .6 !important; | |
/*text-decoration: underline !important; | |
font-weight: bold !important; */ | |
} | |
#tabbrowser-tabs[fade_on_pending=true] > .tabbrowser-tab[pending] { | |
opacity: .6; | |
} | |
/* override Australis opacity: 0.7 of unselected tabs as it's hard to distinguish between unloaded tabs */ | |
.tab-label:not([selected="true"]) { | |
opacity: 0.85 !important; | |
/* font-weight: bold !important; */ | |
} | |
.tab-label[selected="true"] { | |
opacity: 0.85 !important; | |
text-decoration: underline !important; | |
font-weight: bold !important; | |
color: blue !important; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment