Die Funktionalität dieser Website ist durch Wartungsarbeiten eingeschränkt, die Ihr Erlebnis verbessern sollen. Wenn ein Artikel Ihr Problem nicht löst und Sie eine Frage stellen möchten, können Sie unsere Gemeinschaft über @FirefoxSupport auf Twitter, /r/firefox oder Reddit fragen.

Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Weitere Informationen

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

  • 2 Antworten
  • 1 hat dieses Problem
  • 2 Aufrufe
  • Letzte Antwort von 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?

Ausgewählte Lösung

You can try this code in userChrome.css,

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

See also:

Diese Antwort im Kontext lesen 👍 0

Alle Antworten (2)

more options

Ausgewählte Lösung

You can try this code in userChrome.css,

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

See also:

more options

Thanks very much.