Avatar for Username

Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

Μάθετε περισσότερα

Change navigation bar line style

  • 2 απαντήσεις
  • 2 έχουν αυτό το πρόβλημα
  • 4 προβολές
  • Τελευταία απάντηση από memeplex

more options

Hi all,

I don't like the much darker line around the back button (see screenshot) in the latest version of firefox (45). I would like to style it softer, more like the lines around tabs (see screenshot). I tried to get this working with a custom chrome/userChrome.css but to no avail. I'm not a css expert and I don't understand the details of firefox dom at all. Could anyone here help me achieve my goal?

Thank you in advance -- Carlos

Hi all, I don't like the much darker line around the back button (see screenshot) in the latest version of firefox (45). I would like to style it softer, more like the lines around tabs (see screenshot). I tried to get this working with a custom chrome/userChrome.css but to no avail. I'm not a css expert and I don't understand the details of firefox dom at all. Could anyone here help me achieve my goal? Thank you in advance -- Carlos
Συνημμένα στιγμιότυπα

Όλες οι απαντήσεις (2)

more options

That border color seems to be defined via --urlbar-border-color

  • chrome://browser/skin/browser.css
/* Location bar */
#nav-bar {
  --urlbar-border-color: ThreeDShadow;
}
more options

Thank you very much cor-el. Changing that attribute did the trick.

But there are other gui elements affected by the same system color (see https://bugzilla.mozilla.org/show_bug.cgi?id=1211892).

Do you know if it's possible to redefine ThreeDShadow instead of replacing each occurrence?