CustomCSSforFx icon indicating copy to clipboard operation
CustomCSSforFx copied to clipboard

Firefox 143: Address bar now has gray background instead of white

Open Nicholas-Steel opened this issue 3 months ago • 12 comments

Guidelines

Does the issue occur without any files inside /chrome/ folder?

No

Description of the Issue

I updated to FIrefox v143 from 142.0.1 and noticed the background of the Address Bar became gray, so I then downloaded the latest CustomCSSforFx package and updated my CSS and Image folders but the issue remains.

Issue description, userChrome.css/userContent.css 'settings' the issue occurs with and steps to reproduce the issue

chrome.zip

Does the issue occur with the most recent version of CustomCSSforFx (release/test/dev build)?

Yes, with the latest release

Screenshots showing the issue

Image

System information

  • OS & OS version: Windows 10 22H2
  • DPI/HiDPI/scaling value, if not 100% (e.g. 125%, 150%...): "Make text bigger" is set to 120%
  • Firefox version: 143
  • Firefox theme (e.g. default, build in light/dark, external theme + link): System Theme (Auto) 1.4.2

Nicholas-Steel avatar Sep 16 '25 21:09 Nicholas-Steel

Using the inspector I came up with this that seems to partly work:

/* Set the background color of the URL for fx143.  */
.urlbar-input-container {
	background-color: white !important;
} /**/
Image

MarkRH avatar Sep 17 '25 05:09 MarkRH

That worked, thank you!

But why do you say it only partially fixes it? What am I not noticing?

Nicholas-Steel avatar Sep 17 '25 06:09 Nicholas-Steel

I’m using a custom theme, so the background inside the address bar has remained white. However, after updating to FF143, the border inside the address bar disappeared when it’s not focused. Could you please provide me with the CSS to bring the border back in the address bar?

Image

Hobbix avatar Sep 17 '25 12:09 Hobbix

@Hobbix This worked for me.

.urlbar-input-container{
border: 1px #b1b1b1 solid !important;
}

jack-ii avatar Sep 17 '25 12:09 jack-ii

It turns out that in FF143 the file urlbar_restore_visible_border.css just broke. I found another solution here: https://github.com/Aris-t2/CustomCSSforFx/issues/775#issuecomment-3300207702 Including restoring the small rounded corners.

Hobbix avatar Sep 17 '25 13:09 Hobbix

ff 143 is a really nightmare...see these bugs: https://github.com/Aris-t2/CustomCSSforFx/issues/777

p060477 avatar Sep 18 '25 08:09 p060477

@Hobbix This worked for me.

.urlbar-input-container{
border: 1px #b1b1b1 solid !important;
}

Thank you for this!

mozo78 avatar Sep 20 '25 10:09 mozo78

Thank you

ChasCB avatar Sep 24 '25 01:09 ChasCB

While using the Browser Toolbox to inspect the urlbar in FFX143 I've discovered that what used to be #urlbar-background was changed to .urlbar-background. In other words it's now a class instead of an id. So to make the following 3 stylesheets work: urlbar_background_color.css urlbar_border_roundness.css urlbar_restore_visible_border.css simply edit every occurrance of #urlbar-background to become .urlbar-background. Of course, for backward compatibility you can also use :is(#urlbar-background,.urlbar-background)

deedub-hub avatar Sep 25 '25 05:09 deedub-hub

While using the Browser Toolbox to inspect the urlbar in FFX143 I've discovered that what used to be #urlbar-background was changed to .urlbar-background. In other words it's now a class instead of an id. So to make the following 3 stylesheets work: urlbar_background_color.css urlbar_border_roundness.css urlbar_restore_visible_border.css simply edit every occurrance of #urlbar-background to become .urlbar-background. Of course, for backward compatibility you can also use :is(#urlbar-background,.urlbar-background)

Yes, it's working :)

mozo78 avatar Sep 25 '25 08:09 mozo78

Thanks for finding that @deedub-hub That's a great fix while we wait for @Aris-t2 to update the files.

glennpc avatar Sep 25 '25 15:09 glennpc

we all anxiously wait for Aris-t2 to fix this issues....

p060477 avatar Sep 25 '25 16:09 p060477