搜索 | 用户支持

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

Learn More

How to change background color of bookmark menus?

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

more options

How do I change the background color (in the userchrome) of the bookmark folder menus? I'm not talking about the bookmark sidebar background color, I'm talking about when you have a folder in your bookmark bar and click on it, the drop down background color.

I don't want to have to change themes, I know there is a way to "hack" or over ride the current color without having to change the theme. Also, changing my computer settings don't do crap, it has nothing to do with the colors of my browser.

Thanks for your help in advance.

How do I change the background color (in the userchrome) of the bookmark folder menus? I'm not talking about the bookmark sidebar background color, I'm talking about when you have a folder in your bookmark bar and click on it, the drop down background color. I don't want to have to change themes, I know there is a way to "hack" or over ride the current color without having to change the theme. Also, changing my computer settings don't do crap, it has nothing to do with the colors of my browser. Thanks for your help in advance.

所有回复 (10)

more options

Are you talking about the Bookmarks menu on the Menu Bar or about the menu of a folder item on the Bookmarks Toolbar?

#personal-bookmarks menupopup {
 color:#000 !important;
 background-color: #e8e8ff !important;
}

#bookmarksMenuPopup,
#bookmarksMenuPopup menupopup {
 color:#000 !important;
 background-color: #e8e8ff !important;
}
more options

The menu of a folder item on the bookmarks toolbar, as in the dropdown menu you get when you click on a folder in the bookmarks toolbar. I tried both of those in the userChrome and it didn't change the back ground color.

more options

Are you using the default theme (Tools > Add-ons > Themes) or a custom theme?

The #personal-bookmarks code should work for the Bookmarks Toolbar.

more options

Yes, I disabled everything and switched to the default theme and it still did not work.

more options

That didn't work but I used this code and it worked, not sure why since it is basically the same thing:

  1. bookmarksMenuPopup menupopup arrowscrollbox,
  2. personal-bookmarks menupopup arrowscrollbox {

background-color:#ffc !important; }

由aptharsia于修改

more options

Does other code that you place in userChrome.css work ?

Make sure that the file has a @namespace line at the begin of the userChrome.css file.

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


See also http://kb.mozillazine.org/Editing_configuration#How_to_edit_configuration_files

由cor-el于修改

more options

How do I change ALL the drop-down menus' background color (File, Edit, View, etc.)?

more options

Code like this should work for the menu bar:

#main-menubar menupopup {
 color:#000 !important;
 background-color: #e8e8ff !important;
}
more options

cor-el, thank you! Your code worked, but you have to add arrowscrollbox after menupopup.

  1. main-menubar menupopup arrowscrollbox {
color:#000 !important;
background-color: #e8e8ff !important;

}

more options

I hadn't checked the CSS code, but I see (-moz-appearance: menupopup;) for the menupopup, so that is the most likely cause that you need to specifiy the next (child) element.

Adding -moz-appearance: none!important; should make it work in such cases.