userChrome.css

Die userChrome.css steuert wesentliche Teile des Aussehens der Bedienoberfläche des FireFox, so wie Schriftgröße des Menüs usw.

 

Die Datei   userChrome.css   liegt im Verzeichnis chrome des jeweiligen Benutzerprofils. Sollte dies Datei oder das Verzeichnis nicht existieren, so können beide ohne Problem einfach angelegt werden.

 

Die userChrome.css wird beim Start von FireFox eingelesen.

userChrome.css - Beispieldatei

/*
 * Edit this file and copy it as userChrome.css into your
 * profile-directory/chrome/
 */

/*
 * 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.
 */

/*
 * Do not remove the @namespace line -- it's required for correct functioning
 */
 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
 


/*   ------------ Einstellungen für diesen Browser   -------------- */


/*
Schriftgröße Menübar und Menüs:
*/

.menubar-text{
font-size: 4mm !important;
}

.menulist, menu, menuitem{
font-size: 4mm !important;
}



 /*
 * Der nachstehende toolbarbutton  -  Befehl legt die Schriftgr. u. die Schriftart in der
 * Lesezeichen - Symbollleiste des Firefox fest. Neben Zahlen gehen auch Relativgr. wie x-small
 */
 
 .toolbarbutton-text {
 font-size: 3.5mm !important;
 font-family: helvetica !important;
 }
 
/*
*.toolbarbutton-text {
*font-size: x-medium !important;
* }

Hilfreiche Information zur userChrome.css