Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Learn More

Background color of bookmarks

  • 10 odpovedí
  • 4 majú tento problém
  • 25 zobrazení
  • Posledná odpoveď od 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
Priložené obrázky

Upravil(a) cor-el dňa

Vybrané riešenie

This should cover all of them:

#menubar-items menu menupopup * {
  background-color: #DDDDDD !important;
  color: #333333 !important;
}
Čítať túto odpoveď v kontexte 👍 1

Všetky odpovede (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.

Upravil(a) tsunami2311 dňa

more options

Vybrané riešenie

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

Upravil(a) cor-el dňa

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