Przeszukaj pomoc

Unikaj oszustw związanych z pomocą.Nigdy nie będziemy prosić Cię o dzwonienie na numer telefonu, wysyłanie SMS-ów ani o udostępnianie danych osobowych. Zgłoś podejrzaną aktywność, korzystając z opcji „Zgłoś nadużycie”.

Więcej informacji

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

  • 2 odpowiedzi
  • 1 osoba ma ten problem
  • 2 wyświetlenia
  • Ostatnia odpowiedź od 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?

Wybrane rozwiązanie

You can try this code in userChrome.css,

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

See also:

Przeczytaj tę odpowiedź w całym kontekście 👍 0

Wszystkie odpowiedzi (2)

more options

Wybrane rozwiązanie

You can try this code in userChrome.css,

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

See also:

more options

Thanks very much.