|
SuSE 9.1,桌面分辩率为1400X1050X85Hz,新安装了Mozilla 1.7 RC1,发觉Mozilla的菜单字体太小,想调大它,找了些资料,编辑了一个css文件.内容如下:
/*
* 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 */
/*
* Some possible accessibility enhancements:
*/
/*
* Make all the default font sizes 20 pt:
*/
{
????font-size: 10pt !important
}
/* Set font size and family for dialogs
* and other miscellaneous text
*/
window {
???font-size: 10pt !important;
???font-family: Tahoma !important;
}
/*
* Make menu items in particular 15 pt instead of the default size:
*/
???menupopup > * {
????font-size: 10pt;
????font-family: Tahoma !important;
}
/*
* Give the Location (URL) Bar a fixed-width font
*/
#urlbar {
?????font-family: Tahoma !important;
?????font-size: 10pt
}
/*
* Eliminate the throbber and its annoying movement:
*/
#throbber-box {
????display: none !important;
}
/* Kill all tab icons, no matter what */
.tabbrowser-tabs .tab-icon {
???display: none;
}
/* Show icons (no matter what) when hovering over the tab */
.tabbrowser-tabs *|tab:hover .tab-icon {
???display: -moz-box;
}
/* 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: Tahoma !important;
???font-size: 10pt !important;
}
/*
* For more examples see http://www.mozilla.org/unix/customizing.html
*/
|
|