Firefox chrome
[configs.git] / .mozilla / firefox / igue3o49.default / chrome / userChrome-example.css
blob5a07a62520e3203f6e4209488e6b4a90cb65d4f7
1 /*
2 * Edit this file and copy it as userChrome.css into your
3 * profile-directory/chrome/
4 */
6 /*
7 * This file can be used to customize the look of Mozilla's user interface
8 * You should consider using !important on rules which you want to
9 * override default settings.
13 * Do not remove the @namespace line -- it's required for correct functioning
15 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
19 * Some possible accessibility enhancements:
22 * Make all the default font sizes 20 pt:
24 * * {
25 * font-size: 20pt !important
26 * }
29 * Make menu items in particular 15 pt instead of the default size:
31 * menupopup > * {
32 * font-size: 15pt !important
33 * }
36 * Give the Location (URL) Bar a fixed-width font
38 * #urlbar {
39 * font-family: monospace !important;
40 * }
44 * Eliminate the throbber and its annoying movement:
46 * #throbber-box {
47 * display: none !important;
48 * }
52 * For more examples see http://www.mozilla.org/unix/customizing.html