/* Tb - style folderpane account names by msg status */


/* ========== info start ========== */
/*
- style folderpane account names for accounts with new msgs
- note that this is NOT unread msgs, but only the new-msg/BIFF state for each account
- also sets default account name to NORMAL instead of BOLD
- works in Thunderbird 1.5.0.x/2.0.0.x/3.0.x

- source = default theme

- history
= 2006-05-21, Sunday
finally gave up on finding any way to get "has unread" to work
= 2007-04-22, Sunday
confirmed works in tb2 & updated version info
= 2010-01-20, Wednesday 
confirmed works with tb3 & updated version info
confirmed "has unread" selectors STILL don't work
*/
/* ========== info end ========== */


/* ========== code start ========== */
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

/* style account name with no new mail */
#folderTree > treechildren::-moz-tree-cell-text(isServer-true) {
	font-weight: normal !important;
	}

/* style account name with new mail */
#folderTree > treechildren::-moz-tree-cell-text(isServer-true, biffState-NewMail) {
	color: red !important;
	font-weight: bold !important;
	}
/* ========== code end ========== */


/* ========== tweaks start ========== */
/*
-- color:
--- in this case it refers to text color
http://www.w3schools.com/css/css_text.asp
http://www.w3schools.com/css/pr_text_color.asp

-- background-color:
#CCFFCC = very pale green that works well for a "green-bar" effect
http://www.w3schools.com/css/css_background.asp
http://www.w3schools.com/css/pr_background-color.asp

== colors can be rgb, hex, named
http://www.w3schools.com/css/css_colorsfull.asp
http://www.w3schools.com/css/css_colornames.asp

-- font-family:
[one or more specific font family-names with best first, followed by a font generic-family name]
ex - font family names = arial, "lucida console"
ex - font generic-family for the above fonts = sans-serif
ex - font-family: arial, "lucida console", sans-serif
http://www.w3schools.com/css/pr_font_font-family.asp

-- font-size:
[xx-small, x-small, small, medium, large, x-large, xx-large, smaller, larger, length, %]
http://www.w3schools.com/css/pr_font_font-size.asp

-- font-style:
[normal, italic, oblique]
http://www.w3schools.com/css/pr_font_font-style.asp

-- font-weight:
bold [normal, bold, bolder, lighter]
http://www.w3schools.com/css/css_font.asp
http://www.w3schools.com/css/pr_font_weight.asp

-- font-variant:
[normal, small-caps]
http://www.w3schools.com/css/pr_font_font-variant.asp

-- text-decoration:
[none, underline, overline, line-through, blink]
blink doesn't appear to work in tb15
http://www.w3schools.com/css/pr_text_text-decoration.asp

-- text-transform:
[none, capitalize, uppercase, lowercase]
http://www.w3schools.com/css/pr_text_text-transform.asp

- a painfully visible group of settings is ...
color: red !important;
background-color: yellow !important;
font-style: italic !important;
font-weight: bolder !important;
text-decoration: underline overline !important;
*/
/* ========== tweaks end ========== */