|
|
发表于 2005-4-29 21:34:42
|
显示全部楼层
这个效果应该不错吧?
是设置firefox首选项字体,并导入windows几种英文字体,以及编辑userChrome.css的共同结果。
前两项不再多说,关于userChrome.css,要先安装ChromeEdit扩展,然后用其修改userChrome.css即可。
ChromeEdit网址:https://addons.update.mozilla.org/extensions/moreinfo.php?id=17
本人的userChrome.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: 15pt !important
- }
- /*
- * Make menu items in particular 15 pt instead of the default size:
- *
- */
- menupopup > * {
- font-size: 15pt !important
- }
- /*
- * Give the Location (URL) Bar a fixed-width font
- *
- */
- #urlbar {
- font-family: Lucida Sans,Verdana,Arial !important;
- font-weight: normal !important;
- font-size: 10pt !important;
- }
- /*
- * Eliminate the throbber and its annoying movement:
- *
- */
- #throbber-box {
- display: none !important;
- }
- .textbox-input-box {
- font-family: Lucida Sans,Verdana,Arial !important;
- font-weight: normal !important;
- font-size: 10pt !important;
- margin-bottom: 1px !important;
- }
- .searchbar-engine-image {
- margin-bottom: -1px !important;
- }
- .searchbar-dropmarker-image {
- margin-bottom: -1px !important;
- }
- .bookmark-item > .toolbarbutton-text {
- font-family: Lucida Sans,Verdana,Arial !important;
- font-weight: normal !important;
- font-size: 9pt !important;
- padding-top: 3px !important;
- }
- tab {
- font-family: Lucida Sans,Verdana,Arial !important;
- font-weight: normal !important;
- font-size: 9pt !important;
- }
- .tabbrowser-tabs .tab-text {
- font-family: Lucida Sans,Verdana,Arial !important;
- font-weight: normal !important;
- font-size: 9pt !important;
- padding-top: 1px !important;
- }
- .tabbrowser-tabs *|tab[selected="true"] .tab-text {
- padding-top: 1px !important;
- }
- .tabbrowser-tabs .tab-text2 {
- font-family: lucida grande !important;
- font-weight: normal !important;
- font-size: 9pt !important;
- padding-top: 1px !important;
- }
- .tabbrowser-tabs .tab-icon {
- margin: 3px 1px 3px 0px !important;
- }
- .tabbrowser-tabs *|tab[selected="true"] .tab-icon {
- margin: 3px 1px 3px 0px !important;
- }
- .autocomplete-treebody::-moz-tree-cell-text {
- font-family: Lucida Sans,Verdana,Arial !important;
- font-weight: normal !important;
- font-size: 9pt !important;
- }
- tree {
- font-family: Lucida Sans,Verdana,Arial !important;
- font-weight: normal !important;
- font-size: 9pt !important;
- }
- popup, menu, menuitem {
- font-family: Lucida Sans,Verdana,Arial !important;
- font-size: 9pt !important;
- text-align: left !important;
- }
- menulist {
- font-family: Lucida Sans,Verdana,Arial !important;
- font-size: 9pt !important;
- }
- #status-bar, #bookmark-window statusbar {
- font-family: Lucida Sans,Verdana,Arial !important;
- font-weight: normal !important;
- font-size: 9pt !important;
- }
- #FindToolbar {
- font-family: Lucida Sans,Verdana,Arial !important;
- font-size: 9pt !important;
- }
- /* Single line text fields */
- input {
- /* Set font size and family of text fields */
- font-family: Lucida Sans,Verdana,Arial !important;
- font-size: 9pt !important;
- /* Set background color to something a little prettier */
- background-color: rgb(200, 255, 220) !important;
- /* Add some key bindings.
- * For an explanation of how to do this,
- * see below under "Custom key bindings".
- */
- -moz-binding: url("resource:///res/builtin/myHTMLBindings.xml#myInputFields") !important;
- }
- /*
- * For more examples see http://www.mozilla.org/unix/customizing.html
- */
-
复制代码 |
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?注册
x
|