/* This file fixes the New Wave Firefox/Thinderbird issue with unreadable text in the menubar
 *
 * Created by Anton Kerezov <ankere@gmail.com>
 * 
 * Feel free to modify and share 
 */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */

/*make the menu use white color for text*/
menubar > menu {
   color: white  !important; 
}

/* Make the statusbar use grey color for text.
 * This improves usability.
 */
statusbar
{
	font-weight: normal !important;
   	color: rgb(50%,50%,50%) !important;
}


