搜索 | 用户支持

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

Learn More

Background color of bookmarks

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

more options

I got the Stylish Addon for FF And manged to get the color to the bars the way i want but the actual bookmark menu back ground color i cant change and the color of the menubar is grey is only correct color of #333333 when it out of focus

I have inclosed picture with red cirle around the areas i want to change the color, I know it all possible as I been using LavaFoxV2 for years cause it make the area black, but i want to use defualt scheme of FF I just want the area i marked in red to be darker.

#navigator-toolbox {
  background-color: #333333 !important;
}

.menubar-text,
#toolbar-menubar .toolbarbutton-text,
.tabbrowser-tab .tab-label {
  color: #333333 !important
}

this is the code i use to get the above colors on the menu bar

I got the Stylish Addon for FF And manged to get the color to the bars the way i want but the actual bookmark menu back ground color i cant change and the color of the menubar is grey is only correct color of #333333 when it out of focus I have inclosed picture with red cirle around the areas i want to change the color, I know it all possible as I been using LavaFoxV2 for years cause it make the area black, but i want to use defualt scheme of FF I just want the area i marked in red to be darker. <pre><nowiki> #navigator-toolbox { background-color: #333333 !important; } .menubar-text, #toolbar-menubar .toolbarbutton-text, .tabbrowser-tab .tab-label { color: #333333 !important }</nowiki></pre> this is the code i use to get the above colors on the menu bar
已附加屏幕截图

由cor-el于修改

被采纳的解决方案

This should cover all of them:

#menubar-items menu menupopup * {
  background-color: #DDDDDD !important;
  color: #333333 !important;
}
定位到答案原位置 👍 1

所有回复 (10)

more options

Try using this:

#bookmarks-view, #historyTree {
  background-color: #DDDDDD !important;

}

more options

the-edmeister said

Try using this: #bookmarks-view, #historyTree { background-color: #DDDDDD !important; }

sadly that does not change its color it remains the same color as in the picture

more options

That would be this code:

#bookmarksMenuPopup * {
  background-color: #DDDDDD !important;
  color: #333333 !important;
}

(#bookmarks-view *, #historyTree * would be for the sidebar)

more options

Thanks cor-el, that works fine for the menu bar popup. How about the "Show your bookmarks" combo toolbar button?

more options

That would be this selector:

#BMB_bookmarksPopup * { }
more options

Omg thank you bookmarkmenu is fix, Would you know the code to change the popdown menus for (File,Edit,,View,History,Tools,Help) too? and the hover color when in those menus?

and possible the code to change the color that the (File,Edit,View,History,Bookmarks,Tools,Help?) cause that color is only correct when the browser is not the focus.

由tsunami2311于修改

more options

选择的解决方案

This should cover all of them:

#menubar-items menu menupopup * {
  background-color: #DDDDDD !important;
  color: #333333 !important;
}
more options

Oh my thank you

#navigator-toolbox {
  background-color: #333333 !important;

}

.menubar-text,
#toolbar-menubar .toolbarbutton-text,
.tabbrowser-tab .tab-label {
  color: #333333 !important
}

#main-menubar menu:hover .menubar-text {
  color: black !important;
}
  
#menubar-items menu menupopup * {
  background-color:#333333!important;
  color: white !important;
}

and all the menu pop downs are same color, I just need to change the hover color and the actual color behind the menubar items

由cor-el于修改

more options

Thanks for all your help, I pretty much got all the menu correct color except for 2 spot.

The top parts red circles that part is wrong color (it only show correct color when it not in focus if i go in options or click on windows start bar) is way to change focus color to match the rest?

Also the bottom parts red circle the part where the mouse curse boxing the bookmark would there be code to change that?

And would there be site where i can go to see what code change what?

Thanks again

more options