Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Learn More

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

Background color of bookmarks

  • 10 risposte
  • 4 hanno questo problema
  • 26 visualizzazioni
  • Ultima risposta di 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
Immagini allegate

Modificato da cor-el il

Soluzione scelta

This should cover all of them:

#menubar-items menu menupopup * {
  background-color: #DDDDDD !important;
  color: #333333 !important;
}
Leggere questa risposta nel contesto 👍 1

Tutte le risposte (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.

Modificato da tsunami2311 il

more options

Soluzione scelta

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

Modificato da cor-el il

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