Αυτός ο ιστότοπος θα έχει περιορισμένη λειτουργικότητα, όσο εκτελούμε εργασίες συντήρησης για να βελτιώσουμε την εμπειρία σας. Αν ένα άρθρο δεν επιλύει το ζήτημά σας και θέλετε να κάνετε μια ερώτηση, η κοινότητα υποστήριξής μας είναι έτοιμη να σας βοηθήσει στο Twitter (@FirefoxSupport) και στο Reddit (/r/firefox).

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

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

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

userChrome.css help

  • 2 απαντήσεις
  • 1 έχει αυτό το πρόβλημα
  • 7 προβολές
  • Τελευταία απάντηση από greg.klanderman

more options

Hi, I just discovered userChrome.css the other day after upgrading to firefox 9.0.1. I was previously using some no-longer-working extensions, and have transitioned most of what I was getting from those to userChrome.css. There is one remaining extension I am using, oldbar, which is a nearly trivial bit of javascript:

function oldbarStartup(event) {

 var urlbar = document.getElementById("urlbar");
 urlbar.setAttribute("autocompletepopup", "PopupAutoComplete");

} window.addEventListener("load", oldbarStartup, false);

I was wondering if this can also be accomplished in userChrome.css?

I have tried a few variations on

  1. urlbar { autocompletepopup: "PopupAutoComplete" !important; }

with no success.

thanks for any help, Greg

Hi, I just discovered userChrome.css the other day after upgrading to firefox 9.0.1. I was previously using some no-longer-working extensions, and have transitioned most of what I was getting from those to userChrome.css. There is one remaining extension I am using, oldbar, which is a nearly trivial bit of javascript: function oldbarStartup(event) { var urlbar = document.getElementById("urlbar"); urlbar.setAttribute("autocompletepopup", "PopupAutoComplete"); } window.addEventListener("load", oldbarStartup, false); I was wondering if this can also be accomplished in userChrome.css? I have tried a few variations on #urlbar { autocompletepopup: "PopupAutoComplete" !important; } with no success. thanks for any help, Greg

Επιλεγμένη λύση

No, you can't do that via userChrome.css. That oldbarStartup code change an attribute and not a style property.

Ανάγνωση απάντησης σε πλαίσιο 👍 0

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

more options

Επιλεγμένη λύση

No, you can't do that via userChrome.css. That oldbarStartup code change an attribute and not a style property.