/*
 * Edit this file and copy it as userChrome.css into your
 * profile-directory/chrome/
 *
 * URL-Bar bei SSL-Verbindungen einfaerben (FF 3.0)
 * 
 */

/*
 * This file can be used to customize the look of Mozilla's user interface
 * You should consider using !important on rules which you want to
 * override default settings.
 */    

/* --- urlbar background image for high security site --- */
#urlbar[level="high"] * {
    background-color: #FFFF99 ! important;
}
    
/* ---  urlbar background-color for low security site --- */
#urlbar[level="low"] * {
    background-color: #FFAA00 ! important;
}
/* --- urlbar background-color for broken secure site --- */
#urlbar[level="broken"] * {
    background-color: #FF0000 ! important;
}    

/*
 * For more examples see http://www.mozilla.org/unix/customizing.html
 */
