Fx 25 - Display Arrows in Quick Find Bar
.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)
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; }
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;
}
See also chrome://global/skin/findBar.css
Thank you cor-el.
You can delete the '.findbar-textbox.minimal' entry. I've done that. :)