Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Fx 25 - Display Arrows in Quick Find Bar

  • 4 பதிலளிப்புகள்
  • 4 இந்த பிரச்னைகள் உள்ளது
  • 1 view
  • Last reply by Yaron

.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.

தீர்வு தேர்ந்தெடுக்கப்பட்டது

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; }
Read this answer in context 👍 6

All Replies (4)

தீர்வு தேர்ந்தெடுக்கப்பட்டது

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. :)