1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/xulrunner/app/profile/chrome/userChrome-example.css Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,58 @@ 1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.7 + 1.8 +/* 1.9 + * Edit this file and copy it as userChrome.css into your 1.10 + * profile-directory/chrome/ 1.11 + */ 1.12 + 1.13 +/* 1.14 + * This file can be used to customize the look of Mozilla's user interface 1.15 + * You should consider using !important on rules which you want to 1.16 + * override default settings. 1.17 + */ 1.18 + 1.19 +/* 1.20 + * Do not remove the @namespace line -- it's required for correct functioning 1.21 + */ 1.22 +@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */ 1.23 + 1.24 + 1.25 +/* 1.26 + * Some possible accessibility enhancements: 1.27 + */ 1.28 +/* 1.29 + * Make all the default font sizes 20 pt: 1.30 + * 1.31 + * * { 1.32 + * font-size: 20pt !important 1.33 + * } 1.34 + */ 1.35 +/* 1.36 + * Make menu items in particular 15 pt instead of the default size: 1.37 + * 1.38 + * menupopup > * { 1.39 + * font-size: 15pt !important 1.40 + * } 1.41 + */ 1.42 +/* 1.43 + * Give the Location (URL) Bar a fixed-width font 1.44 + * 1.45 + * #urlbar { 1.46 + * font-family: monospace !important; 1.47 + * } 1.48 + */ 1.49 + 1.50 +/* 1.51 + * Eliminate the throbber and its annoying movement: 1.52 + * 1.53 + * #throbber-box { 1.54 + * display: none !important; 1.55 + * } 1.56 + */ 1.57 + 1.58 +/* 1.59 + * For more examples see http://www.mozilla.org/unix/customizing.html 1.60 + */ 1.61 +