Şu anda bakım nedeniyle sitemiz kısıtlı işlevsellik sunmaktadır. Mevcut makaleler sorununuzu çözmediyse ve bize soru sormak isterseniz Twitter’da @FirefoxSupport hesabından ve Reddit’teki /r/firefox subreddit'inden destek gönüllülerimize ulaşabilirsiniz.

Mozilla Destek’te Ara

Destek dolandırıcılığından kaçının. Mozilla sizden asla bir telefon numarasını aramanızı, mesaj göndermenizi veya kişisel bilgilerinizi paylaşmanızı istemez. Şüpheli durumları “Kötüye kullanım bildir” seçeneğini kullanarak bildirebilirsiniz.

Daha Fazlasını Öğren

userChrome.css help

  • 2 yanıt
  • 1 kişi bu sorunu yaşıyor
  • 7 gösterim
  • Son yanıtı yazan: 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

Seçilen çözüm

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

Bu yanıtı konu içinde okuyun 👍 0

Tüm Yanıtlar (2)

more options

Seçilen çözüm

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

more options

thank you cor-el!