Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

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.

Daha Fazlasını Öğren
Bu başlık kapatıldı ve arşivlendi. Yardıma ihtiyacınız varsa lütfen yeni bir soru sorun.
Kilitli Arşivlendi

bookmarks toolbar "overflow" spacing

cor-el yanıtlandı
SuMo Bot

How do I change the bookmarks toolbar "overflow" to single spacing? Like v 91

How do I change the bookmarks toolbar "overflow" to single spacing? Like v 91

Tüm Yanıtlar (2)

Hey there!

Please see https://support.mozilla.org/en-US/questions/1342447 for how to remove the double spacing.

Hope I helped!

Kind regards,

Bithiah

You can add a min-height rule in addition to reducing the padding.

You can use code in userChrome.css to modify the menu spacing.

Add CSS code to the userChrome.css file.


menupopup > menuitem, menupopup > menu {
padding-top: 2px !important; padding-bottom: 2px !important; /*adjust*/
min-height: 22px !important; /*adjust or use unset*/
}

*|*:root {--arrowpanel-menuitem-padding: 2px 8px !important;} /*adjust 2px value*/

In Firefox 69 and later you need to set this pref to true on the about:config page to enable userChrome.css and userContent.css in the chrome folder.

  • toolkit.legacyUserProfileCustomizations.stylesheets = true

cor-el tarafından tarihinde düzenlendi

This question has been locked because the original author has deleted their account. While you can no longer post new replies, the existing content remains available for reference.