Pesquisar no site de suporte

Evite golpes de suporte. Nunca pedimos que você ligue ou envie uma mensagem de texto para um número de telefone, ou compartilhe informações pessoais. Denuncie atividades suspeitas usando a opção “Denunciar abuso”.

Saiba mais

Esta discussão foi arquivada. Faça uma nova pergunta se precisa de ajuda.

How can I reduce the line spacing in the Firefox address-bar drop-down list

  • 2 respostas
  • 1 tem este problema
  • 19 visualizações
  • Última resposta de OneMoreName

more options

Three years ago I asked this question and received a good answer (see https://support.mozilla.org/en-US/questions/1168880) but the solution posted then stopped working a few releases ago. That solution was to use some css

 #PopupAutoCompleteRichResult .autocomplete-richlistitem {
   height: 26px !important;
   min-height: 26px !important;
 }

but the suggested css no longer seems to have any effect. Any ideas how I can get a nice compact drop-down list?

Three years ago I asked this question and received a good answer (see https://support.mozilla.org/en-US/questions/1168880) but the solution posted then stopped working a few releases ago. That solution was to use some css #PopupAutoCompleteRichResult .autocomplete-richlistitem { height: 26px !important; min-height: 26px !important; } but the suggested css no longer seems to have any effect. Any ideas how I can get a nice compact drop-down list?

Solução escolhida

You can try this code in userChrome.css,

*|*.urlbarView-row-inner {padding-block: 0px !important;}

See also:

Ler esta resposta 👍 0

Todas as respostas (2)

more options

Solução escolhida

You can try this code in userChrome.css,

*|*.urlbarView-row-inner {padding-block: 0px !important;}

See also:

more options

Thanks very much.