/* * * $Id: userChrome.css,v 1.1 2004/11/17 18:18:39 vogelke Exp $ * $Source: /space/mozilla-1.7.3/local/RCS/userChrome.css,v $ * * 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 */ /* * Set font size and family for dialogs * and other miscellaneous text */ window { font-size : 3.5mm !important; font-family : helvetica !important; background-color : white !important; background : white !important; } /* * Give the Location (URL) Bar a fixed-width font */ #urlbar { font-size : 14px !important; font-family : helvetica !important; background-color : white !important; background : white !important; } /* * Make menus big, pretty and readable (like the old SGI look) : * menubar isn't used after 12/19 builds, but is needed for NS6; * the rest are for post-12/19 */ menubar, menubutton, menulist, menu, menuitem { font-family : helvetica !important; font-weight : bold !important; font-size : 4mm !important; } /* * Single line text fields */ input { font-family : clean !important; font-size : 16px !important; background-color : white !important; background : white !important; } /* * Multi-line textareas */ textarea { font-family : clean !important; font-size : 16px !important; background-color : white !important; background : white !important; } /* * The URL dropdown and autocomplete windows are grey. To make * them match better with the URL field and look more like 4.x : */ #ubhist-popup { font-size : 16px !important; font-family : helvetica !important; background : white !important; border : 1px solid black !important; padding : 0px !important; } /* Change color of active tab */ tab { -moz-appearance: none !important; } tab[selected="true"] { background-color: rgb(222,218,210) !important; color: black !important; } /* Change color of normal tabs */ tab:not([selected="true"]) { background-color: rgb(200,196,188) !important; color: gray !important; }