/* Ff & Tb - set color of active & inacitve tabs */

/* ========== info start ========== */
/*
- sets the color of active/inactive tabs
- changes ALL tabs including options and other tabbed dialogs
- works in Firefox 1.5.0.x/2.0.0.x & Thunderbird 1.5.0.x/2.0.0.x

- source = http://www.mozilla.org/support/firefox/tips#app_tab

- history
= 2006-05-05, Friday
changed active color to "-moz-dialog" = default dialog background
changed inactive color to "gray"
= 2007-04-22, Sunday
confirmed works in ff2/tb2 & updated version compat info
*/
/* ========== info end ========== */


/* ========== code start ========== */
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
/* Disable the standard appearance */
tab {
	-moz-appearance: none !important;
	}

/* Change color of active tab */
tab[selected="true"] {
	background-color: -moz-dialog !important;
	color: black !important;
	}

/* Change color of inactive tabs */
tab:not([selected="true"]) {
	background-color: gray !important;
	color: black !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 ========== */