搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

how do I switch off the Menu Bar font shadowing in a theme

  • 3 个回答
  • 2 人有此问题
  • 3 次查看
  • 最后回复者为 cor-el

more options

The themes I am used to using have now (Firefox 33.0 Linux) black font with shadowing. How can I turn off the shadowing? Using the Theme Font Size addon does not give me the options I need. I don't really want to change themes to something else.

The themes I am used to using have now (Firefox 33.0 Linux) black font with shadowing. How can I turn off the shadowing? Using the Theme Font Size addon does not give me the options I need. I don't really want to change themes to something else.

所有回复 (3)

more options

Is that happening when you use a lightweight theme (Persona)?

You can try to edit the textcolor and possibly the accentcolor of the theme(s) as stored in the lightweightThemes.usedThemes pref.


The colors of the currently selected Persona are stored as the first entry in the lightweightThemes.usedThemes pref as textcolor and accentcolor. The data of other installed Personas are stores in following records in this pref in JSON format (backslashes are escaped as \"). You can edit that pref and set another value for the "textcolor":"#ffffff" part (e.g. "textcolor":"#000000").

You can open the about:config page via the location/address bar. You can accept the warning and click "I'll be careful" to continue.

more options

You can try changing/creating the userChrome.css and set the font for the menubar to your liking. The following articles contains more information.

For example, yours can use:


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

/*change size, color, style of text in Menu Bar */ menubar > menu {color: black !important}


Alternatively, you can create your own style using the Stylish extension:

Be sure to restart Firefox to see your changes.

more options

You can also add a rule to disable the text-shadow in addition to setting the (text) color.

@namespace url("https://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#navigator-toolbox .menubar-text { text-shadow: none !important; }