Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

Learn More

Background color of bookmarks

  • 10 답장
  • 4 이 문제를 만남
  • 25 보기
  • 최종 답변자: 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