Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

Pesquisar no apoio

Evite burlas no apoio. Nunca iremos solicitar que telefone ou envie uma mensagem de texto para um número de telefone ou que partilhe informações pessoais. Por favor, reporte atividades suspeitas utilizando a opção "Reportar abuso".

Saber mais

Fx 25 - Display Arrows in Quick Find Bar

  • 4 respostas
  • 4 têm este problema
  • 14 visualizações
  • Última resposta por Yaron
  • Resolvido

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

Solução escolhida

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; }
Ler esta resposta no contexto 👍 6

Todas as respostas (4)

Solução escolhida

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