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!

搜索 | 用户支持

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

Learn More

URL bar background color Change CSS????

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; }

被采纳的解决方案

Glad I could help :)

定位到答案原位置 👍 1

所有回复 (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

选择的解决方案

Glad I could help :)