4
How to get rid of the border around urlbar upon clicking
(lemmy.world)
Post your unsupported Firefox customizations here!
From the makers of r/FirefoxCSS
Links
Related
This worked, thank you. Would you mind telling what difference between using urlbar-background over the other one?
You'll be styling another element, that's really all it is.
Normally Firefox applies various styling rules to the element with id
urlbar-background
- so it makes sense to also apply your custom style rules and overrides to it. If you apply your background-color or border or other rules to some other element such as#urlbar-input-container
then the original styling of#urlbar-background
still applies as well.This would then cause issue like you would see in your first image, exactly like you guessed; the outline of
#urlbar-background
is seen behind the background-color of#urlbar-input-container
because the two boxes don't have exactly the same shape and thus you are not fully covering the urlbar-background.I see. Thank you for the explanation as well!