Windows 10 will reach EOS (end of support) on October 14, 2025. For more information, see this article.

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

Fx 25 - Display Arrows in Quick Find Bar

  • 4 yanıt
  • 4 kişi bu sorunu yaşıyor
  • 2 gösterim
  • Son yanıtı yazan: Yaron

more options

.findbar-container > * { display: -moz-box !important; }

Used to work in previous versions. What's the code for v25?

Thank you.

.findbar-container > * { display: -moz-box !important; } Used to work in previous versions. What's the code for v25? Thank you.

Seçilen çözüm

hello yaron, in order to get it to work as you're used to, please change that line into:

.findbar-container > *, .findbar-container > hbox > * { display: -moz-box !important; }
Bu yanıtı konu içinde okuyun 👍 6

Tüm Yanıtlar (4)

more options

Seçilen çözüm

hello yaron, in order to get it to work as you're used to, please change that line into:

.findbar-container > *, .findbar-container > hbox > * { display: -moz-box !important; }
more options

Hello Philipp,

Thank you so much! I'm really grateful.


Perfectionists can add:

.findbar-textbox.minimal{

 border-radius: 2px 0 0 2px !important;

}

.findbar-textbox.minimal:-moz-locale-dir(rtl) {

 border-radius: 0 2px 2px 0 !important;

}

more options

See also chrome://global/skin/findBar.css

more options

Thank you cor-el.

You can delete the '.findbar-textbox.minimal' entry. I've done that. :)