Mozilla Destek’te Ara

Destek dolandırıcılığından kaçının. Mozilla sizden asla bir telefon numarasını aramanızı, mesaj göndermenizi veya kişisel bilgilerinizi paylaşmanızı istemez. Şüpheli durumları “Kötüye kullanım bildir” seçeneğini kullanarak bildirebilirsiniz.

Learn More

How do I change the height of the bookmarks toolbar?

  • 2 yanıt
  • 3 kişi bu sorunu yaşıyor
  • 234 gösterim
  • Son yanıtı yazan: 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.
Ekli ekran görüntüleri

William tarafından tarihinde düzenlendi

Seçilen çözüm

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

Bu yanıtı konu içinde okuyun 👍 1

Tüm Yanıtlar (2)

more options

Seçilen çözüm

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.