LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
12
返回列表 发新帖
楼主: 平凡

firefox 0.9 xft-gtk2 简体中文版发布了

[复制链接]
发表于 2004-6-23 19:54:09 | 显示全部楼层
如何更改菜单字体的大小啊?我的太小了。
发表于 2004-6-24 11:04:19 | 显示全部楼层
最初由 wzs 发表
如何更改菜单字体的大小啊?我的太小了。

~/.mozilla/firefox/default.xxxxx/chrome/userChrome.css
改一下字体大小就可以了。
现在偶已经抛弃了opera和konqueror了,呵呵。

  1.       1 /*
  2.       2  * Edit this file and copy it as userChrome.css into your
  3.       3  * profile-directory/chrome/
  4.       4  */
  5.       5
  6.       6 /*
  7.       7  * This file can be used to customize the look of Mozilla's user interface
  8.       8  * You should consider using !important on rules which you want to
  9.       9  * override default settings.
  10.      10  */
  11.      11
  12.      12 /*
  13.      13  * Do not remove the @namespace line -- it's required for correct functioning
  14.      14  */
  15.      15 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
  16.      16 window {
  17.      17     font-size: 12pt !important;
  18.      18     font-family: helvetica !important;
  19.      19 }
  20.      20 menubar, menubutton, menulist, menu, menuitem, textbox, toolbar, tab, tree, tooltip {
  21.      21     font-family: helvetica !important;
  22.      22     font-size: 12pt !important;
  23.      23 }
  24.      24 input {
  25.      25     /* Set font size and family of text fields */
  26.      26     font-family: helvetica !important;
  27.      27     font-size: 12pt !important;
  28.      28
  29.      29     /* Set background color to something a little prettier */
  30.      30     background-color: rgb(200, 255, 220) !important;
  31.      31
  32.      32     /* Add some key bindings.
  33.      33      * For an explanation of how to do this,
  34.      34      * see below under "Custom key bindings".
  35.      35      */
  36.      36     -moz-binding: url("resource:///res/builtin/myHTMLBindings.xml#myInputFields") !important;
  37.      37 }
  38.      38
  39.      39 toolbargrippy {
  40.      40     display: none !important;
  41.      41 }
  42.      42
  43.      43 /*
  44.      44  * Some possible accessibility enhancements:
  45.      45  */
  46.      46 /*     47  * Make all the default font sizes 20 pt:
  47.      48  *
  48.      49  * * {
  49.      50  *   font-size: 20pt !important
  50.      51  * }
  51.      52  */
  52.      53 /*
  53.      54  * Make menu items in particular 15 pt instead of the default size:
  54.      55  *
  55.      56  * menupopup > * {
  56.      57  *   font-size: 15pt !important
  57.      58  * }
  58.      59  */
  59.      60 /*
  60.      61  * Give the Location (URL) Bar a fixed-width font
  61.      62  *
  62.      63  * #urlbar {
  63.      64  *    font-family: monospace !important;
  64.      65  * }
  65.      66  */
  66.      67
  67.      68 /*
  68.      69  * Eliminate the throbber and its annoying movement:
  69.      70  *
  70.      71  * #throbber-box {
  71.      72  *   display: none !important;
  72.      73  * }
  73.      74  */
  74.      75
  75.      76 /*
  76.      77  * For more examples see [url]http://www.mozilla.org/unix/customizing.html[/url]
  77.      78  */
  78.      79
  79.      80  /* Place the sidebar on the right edge of the window */
  80.      81 window > hbox {
  81.      82 direction:rtl;
  82.      83 }
  83.      84 window > hbox > * {
  84.      85 direction:ltr;
  85.      86 }
复制代码
发表于 2004-6-24 13:48:06 | 显示全部楼层
我想问一下```就是在KDE下使用楼主提供的浏览器,当我用kwrite打开文本,复制后,不能在firefox里粘贴丫```怎么回事?请指教!
发表于 2004-6-24 18:22:21 | 显示全部楼层

浏览不了flash

请问怎么安装flash插件?
发表于 2004-6-24 19:39:41 | 显示全部楼层

回复: 浏览不了flash

最初由 hytong81 发表
请问怎么安装flash插件?


找到原来的Mozilla的flash插件````复制过去就行了```
发表于 2004-6-25 13:03:33 | 显示全部楼层
最初由 theseus 发表
~/.mozilla/firefox/default.xxxxx/chrome/userChrome.css
改一下字体大小就可以了。
现在偶已经抛弃了opera和konqueror了,呵呵。

  1.       1 /*
  2.       2  * Edit this file and copy it as userChrome.css into your
  3.       3  * profile-directory/chrome/
  4.       4  */
  5.       5
  6.       6 /*
  7.       7  * This file can be used to customize the look of Mozilla's user interface
  8.       8  * You should consider using !important on rules which you want to
  9.       9  * override default settings.
  10.      10  */
  11.      11
  12.      12 /*
  13.      13  * Do not remove the @namespace line -- it's required for correct functioning
  14.      14  */
  15.      15 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
  16.      16 window {
  17.      17     font-size: 12pt !important;
  18.      18     font-family: helvetica !important;
  19.      19 }
  20.      20 menubar, menubutton, menulist, menu, menuitem, textbox, toolbar, tab, tree, tooltip {
  21.      21     font-family: helvetica !important;
  22.      22     font-size: 12pt !important;
  23.      23 }
  24.      24 input {
  25.      25     /* Set font size and family of text fields */
  26.      26     font-family: helvetica !important;
  27.      27     font-size: 12pt !important;
  28.      28
  29.      29     /* Set background color to something a little prettier */
  30.      30     background-color: rgb(200, 255, 220) !important;
  31.      31
  32.      32     /* Add some key bindings.
  33.      33      * For an explanation of how to do this,
  34.      34      * see below under "Custom key bindings".
  35.      35      */
  36.      36     -moz-binding: url("resource:///res/builtin/myHTMLBindings.xml#myInputFields") !important;
  37.      37 }
  38.      38
  39.      39 toolbargrippy {
  40.      40     display: none !important;
  41.      41 }
  42.      42
  43.      43 /*
  44.      44  * Some possible accessibility enhancements:
  45.      45  */
  46.      46 /*     47  * Make all the default font sizes 20 pt:
  47.      48  *
  48.      49  * * {
  49.      50  *   font-size: 20pt !important
  50.      51  * }
  51.      52  */
  52.      53 /*
  53.      54  * Make menu items in particular 15 pt instead of the default size:
  54.      55  *
  55.      56  * menupopup > * {
  56.      57  *   font-size: 15pt !important
  57.      58  * }
  58.      59  */
  59.      60 /*
  60.      61  * Give the Location (URL) Bar a fixed-width font
  61.      62  *
  62.      63  * #urlbar {
  63.      64  *    font-family: monospace !important;
  64.      65  * }
  65.      66  */
  66.      67
  67.      68 /*
  68.      69  * Eliminate the throbber and its annoying movement:
  69.      70  *
  70.      71  * #throbber-box {
  71.      72  *   display: none !important;
  72.      73  * }
  73.      74  */
  74.      75
  75.      76 /*
  76.      77  * For more examples see [url]http://www.mozilla.org/unix/customizing.html[/url]
  77.      78  */
  78.      79
  79.      80  /* Place the sidebar on the right edge of the window */
  80.      81 window > hbox {
  81.      82 direction:rtl;
  82.      83 }
  83.      84 window > hbox > * {
  84.      85 direction:ltr;
  85.      86 }
复制代码

3x
发表于 2004-6-25 22:41:06 | 显示全部楼层
为什么我在firefox 0.9 的编辑->首选项中设置字体没有用?好像不能保存一样...点解?
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表