/*
 ________________________________________________________________________
|                  |                                                     |
|          Title:  |  Custom Toolbar Button Colors                       |
|    Description:  |  Custom Text Color based on its function / display  |
|         Author:  |  -=Ben=-                                            |
|   Date Created:  |  June 4, 2008                                       |
|   Last Updated:  |  July 11, 2008                                      |
|        Version:  |  1.0.0.2                                            |
|__________________|_____________________________________________________|

*/


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");


 

 

/* Globally override the color of text on buttons with any color: */

/* Default Button Text Color - Inactive: */
button
{
  color: #000000 !important;
}


/* Hover Color Text: */
button:hover
{
  color: #0000FF !important;
}


/* Color of a Clicking / Active Button: */
button:hover:active, button:active
{
  color: #008200 !important;
}


/* Hover Color of a Disabled Button: */
button[disabled="true"]
{
  color: #818181 !important;
}