How do I change the height of the bookmarks toolbar?
The bookmarks toolbar is too narrow when I choose the compact density in customize settings.
William দ্বারা পরিমিত
সমাধান চয়ন করুন
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
প্রেক্ষাপটে এই উত্তরটি পড়ুন। 👍 1All Replies (2)
চয়ন করা সমাধান
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:
Thank you, just what I'm looking for.