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

Caută ajutor

Atenție la excrocheriile de asistență. Noi nu îți vom cere niciodată să suni sau să trimiți vreun SMS la vreun număr de telefon sau să dai informații personale. Te rugăm să raportezi activitățile suspecte folosind opțiunea „Raportează un abuz”.

Află mai multe

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

  • 2 răspunsuri
  • 1 are această problemă
  • 29 de vizualizări
  • Ultimul răspuns dat 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ție aleasă

You can try this code in userChrome.css,

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

See also:

Citește răspunsul în context 👍 0

Toate răspunsurile (2)

more options

Soluție aleasă

You can try this code in userChrome.css,

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

See also:

more options

Thanks very much.