Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

Double spacing in Bookmarks Menu and sidebars is back

  • 8 回覆
  • 1 有這個問題
  • 16 次檢視
  • 最近回覆由 kuopiofi

more options

So, the old problem of double spacing is back. Luckily only on bookmarks menu and sidebar, but even so it's annoying.

Has there been any progress with finding a solution for this perennial nuisance?

Also, the userchrome.css fixes I've used previously don't seem to be working. What's the latest fix to be used?

So, the old problem of double spacing is back. Luckily only on bookmarks menu and sidebar, but even so it's annoying. Has there been any progress with finding a solution for this perennial nuisance? Also, the userchrome.css fixes I've used previously don't seem to be working. What's the latest fix to be used?

被選擇的解決方法

You can start with CSS code like this:

/* Line height for treechildren */
:is(#bookmarks-view, #historyTree, #editBMPanel_folderTree, #placesList, #placeContent)
treechildren::-moz-tree-row {
  margin-top: 0px !important;
  min-height: 20px !important;
  height: 20px !important;
}

從原來的回覆中察看解決方案 👍 0

所有回覆 (8)

more options

The userChrome.css fixes for menus should still be working without change in Firefox 103 (referring to https://www.userchrome.org/firefox-89-styling-proton-ui.html#menuspacing).

Are your other rules working? If not, double-check about:config to make sure toolkit.legacyUserProfileCustomizations.stylesheets still is customized to true.

more options

OK, that works with menu, how about the sidebar? That's still double spacing.

more options

I don't think Proton (Firefox 89) changed the sidebar spacing. You may need to search for older rules.

more options

Could you point me to a latest working one?

For some reason none of the ones I tried work.

more options

I don't use CSS for the sidebar and do not know what is working. You could check the sites and repositories I list here: https://www.userchrome.org/find-user-style-recipes.html

more options

Couldn't really find anything that I haven't seen before, sooo... Anyone else has ideas?

由 kuopiofi 於 修改

more options

選擇的解決方法

You can start with CSS code like this:

/* Line height for treechildren */
:is(#bookmarks-view, #historyTree, #editBMPanel_folderTree, #placesList, #placeContent)
treechildren::-moz-tree-row {
  margin-top: 0px !important;
  min-height: 20px !important;
  height: 20px !important;
}

more options

That did it. Thanks.