Prohledat stránky podpory

Vyhněte se podvodům. Za účelem poskytnutí podpory vás nikdy nežádáme, abyste zavolali nebo poslali SMS na nějaké telefonní číslo nebo abyste sdělili své osobní údaje. Jakékoliv podezřelé chování nám prosím nahlaste pomocí odkazu „Nahlásit zneužití“.

Zjistit více

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

  • 2 odpovědi
  • 1 má tento problém
  • 2 zobrazení
  • Poslední odpověď 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?

Zvolené řešení

You can try this code in userChrome.css,

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

See also:

Přečíst dotaz v kontextu 👍 0

Všechny odpovědi (2)

more options

Zvolené řešení

You can try this code in userChrome.css,

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

See also:

more options

Thanks very much.