|
从官方网站下载的1.7版本,自己配置了userChrome.css文件,浏览器窗口菜单和标签栏的字体都被改好了,但是对话框中的字体却还是那个样子,不知道哪位改好了的,麻烦把你的配置文件贴出来看看!以下是我的配置:
[code:1]/*
* 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: 9pt !important;
}
/* Set font size and family for dialogs
* and other miscellaneous text
*/
window {
font-size: 9pt !important;
}
/*
* Make menu items in particular 15 pt instead of the default size:
*/
menupopup > * {
font-size: 9pt;
}
/*
* Give the Location (URL) Bar a fixed-width font
*/
#urlbar {
font-size: 9pt;
}
/*
* 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;
}
/* Shrink tab titles by 10% */
.tabbrowser-tabs .tab-text {
font-size: 9pt;
}
.status-label {
font-size: 9pt;
}
.status-data {
font-size: 9pt;
}
.tooltip-label
{
font-size: 9pt;
}
/* 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-size: 9pt !important;
}
/*
* For more examples see http://www.mozilla.org/unix/customizing.html
*/ [/code:1] |
|