Created
October 8, 2013 06:33
-
-
Save 0x4a/6880415 to your computer and use it in GitHub Desktop.
ff: Awesome Bar - Different Colors based on type #firefox #userstyle
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
/* | |
_________________________________________________________________________ | |
| | | | |
| Title: | Awesome Bar Background Color Based on Type (WOW) | | |
| Description: | Different Colors based on Bookmark, tag, or regular | | |
| Author: | -=Ben=- | | |
| Date Created: | July 3, 2008 | | |
| Last Updated: | October 7, 2008 | | |
| Version: | 1.0.0.3 | | |
|__________________|______________________________________________________| | |
May 2012 | |
edited by jekyll (http://userstyles.org/users/142250) | |
changed the colors to this palette: http://www.colourlovers.com/palette/580974/Adrift_in_Dreams | |
added color for links from the delicious plugin | |
*/ | |
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); | |
.autocomplete-richlistitem[type="bookmark"] /*green*/ | |
{ | |
background-color: #A8DBA8; /*#E3FCFE;*/ | |
color: #000000; | |
} | |
.autocomplete-richlistitem[type="deliciousonly"] /*darkgreen*/ | |
{ | |
background-color: #79BD9A; /*#E3FCFE;*/ | |
color: #000000; | |
} | |
.autocomplete-richlistitem[type="favicon"] /*yellow*/ | |
{ | |
background-color: #CFF09E; /*#E3FEE5;*/ | |
color: #000000; | |
} | |
.autocomplete-richlistitem[type="tag"] /*red*/ | |
{ | |
background-color: #ff0000; | |
color: #000000; | |
} | |
.autocomplete-richlistitem[selected="true"] | |
{ | |
background-color: #0B486B !important; | |
color: #CFF09E !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment