Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Kërkoni te Asistenca

Shmangni karremëzime gjoja asistence. S’do t’ju kërkojmë kurrë të bëni një thirrje apo të dërgoni tekst te një numër telefoni, apo të na jepni të dhëna personale. Ju lutemi, raportoni veprimtari të dyshimtë duke përdorur mundësinë “Raportoni Abuzim”.

Learn More

URL bar background color Change CSS????

  • 5 përgjigje
  • 1 e ka hasur këtë problem
  • 1 parje
  • Përgjigjja më e re nga Wesley Branton

more options

I tried all these below and none work


  1. urlbar[breakout][breakout-extend] {background: black !important;}
  1. urlbar[breakout]{background: black !important;}
  1. urlbar{background: black !important;}

.urlbar{background: black !important;}

.urlbarview{background: black !important;}

root {--mbarstyler-match-background-color: black; /* [0.0,0.05,0.1] */ }
root {--mbarstyler-match-background: black; /* [0.0,0.05,0.1] */ }
  1. urlbar[breakout][breakout-extend] > #urlbar-background { color: black !important; }


/* Megabar background */

.urlbarView.megabar{

background-color: black !important;

}

I tried all these below and none work #urlbar[breakout][breakout-extend] {background: black !important;} #urlbar[breakout]{background: black !important;} #urlbar{background: black !important;} .urlbar{background: black !important;} .urlbarview{background: black !important;} :root {--mbarstyler-match-background-color: black; /* [0.0,0.05,0.1] */ } :root {--mbarstyler-match-background: black; /* [0.0,0.05,0.1] */ } #urlbar[breakout][breakout-extend] > #urlbar-background { color: black !important; } /* Megabar background */ .urlbarView.megabar{ background-color: black !important; }

Zgjidhje e zgjedhur

Glad I could help :)

Lexojeni këtë përgjigje brenda kontekstit 👍 1

Krejt Përgjigjet (5)

more options

If you are looking to change the background of the entire address bar (the input area and the drop-down area), the following CSS code should achieve what you are looking for:

#urlbar-background {
    background: black !important;
}

If you are looking to change just the input part of the address bar, you need to change the CSS selector to #urlbar-input-container instead and that should work for you.

Hope this helps.

more options

HI Wesley,

I figured it out myself, at least this works but now need to figure out how to change the txt color. joy

For anyone interested this is what is needed:

  1. urlbar > #urlbar-background {background-color: black !important;}

I don't know if i can remove the #urlbar > your syntax is probably correct.

But now what is the code to change the text color when it is in static mode?

more options

you are right i just tested and it does not need the "urlbar >"

But now all the icons in the url bar are not visible. Why does mozilla have to change the UI and make this so difficult, this all worked fine prior to 77.0.1

What is the code to make the txt white and the icons like tracker/https/bookmarks be white??? you fix one thing and than everything else goes to hell.

more options

You are the man, the second part of what you had is what i needed.

This is for anyone looking for the older way it used to be.

  1. urlbar-background {background-color: black !important;}
  2. urlbar-input-container {color: white !important;}
more options

Zgjidhja e Zgjedhur

Glad I could help :)