Last active
July 20, 2016 14:47
-
-
Save marcelovsantos/e762cd273eddddb7f86ef06170a284c6 to your computer and use it in GitHub Desktop.
pinned-color-tab.css
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
/** | |
* Install https://addons.mozilla.org/en-US/firefox/addon/stylish/ | |
*/ | |
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); | |
.tabbrowser-tab[pinned="true"]:nth-child(2):not([selected]) .tab-content{ | |
background: #F2CB1D !important; | |
} | |
.tabbrowser-tab[pinned="true"]:nth-child(3):not([selected]) .tab-content{ | |
background: #F05133 !important; | |
} | |
.tabbrowser-tab[pinned="true"]:nth-child(4):not([selected]) .tab-content{ | |
background: #FF7B00 !important; | |
} | |
.tabbrowser-tab[pinned="true"]:nth-child(5):not([selected]) .tab-content{ | |
background: #A2D8FF !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment