Támogatás keresése

Kerülje el a támogatási csalásokat. Sosem kérjük arra, hogy hívjon fel egy telefonszámot vagy osszon meg személyes információkat. Jelentse a gyanús tevékenységeket a „Visszaélés bejelentése” lehetőséggel.

További tudnivalók

A témacsoportot lezárták és archiválták. Tegyen fel új kérdést, ha segítségre van szüksége.

How do I change the height of the bookmarks toolbar?

  • 2 válasz
  • 3 embernek van ilyen problémája
  • 93 megtekintés
  • Utolsó üzenet ettől: 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.
Csatolt képernyőmentések

Módosította: William,

Kiválasztott megoldás

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

Válasz olvasása eredeti szövegkörnyezetben 👍 1

Összes válasz (2)

more options

Kiválasztott megoldás

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.