Pretraži podršku

Izbjegni prevare podrške. Nikad te nećemo tražiti da nas nazoveš, da nam pošalješ telefonski broj ili da podijeliš osobne podatke. Prijavi sumnjive radnje pomoću opcije „Prijavi zlouporabu”.

Saznaj više

How do I change the height of the bookmarks toolbar?

  • 2 odgovora
  • 3 imaju ovaj problem
  • 93 prikaza
  • Posljednji odgovor od William

more options

The bookmarks toolbar is too narrow when I choose the compact density in customize settings.

The bookmarks toolbar is too narrow when I choose the compact density in customize settings.
Priložene slike ekrana

Izmjenjeno od William

Izabrano rješenje

You could try a custom style rule in a userChrome.css file.

Rule:

/* Use Normal top and bottom padding for Compact */
#PlacesToolbarItems .bookmark-item {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}

About userChrome.css files:

https://www.userchrome.org/what-is-userchrome-css.html

Pročitaj ovaj odgovor u kontekstu 👍 1

Svi odgovori (2)

more options

Odabrano rješenje

You could try a custom style rule in a userChrome.css file.

Rule:

/* Use Normal top and bottom padding for Compact */
#PlacesToolbarItems .bookmark-item {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}

About userChrome.css files:

https://www.userchrome.org/what-is-userchrome-css.html

more options

Thank you, just what I'm looking for.