Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Double spacing in Bookmarks Menu and sidebars is back

  • 8 பதிலளிப்புகள்
  • 1 இந்த பிரச்சனை உள்ளது
  • 16 views
  • Last reply by kuopiofi

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;
}

Read this answer in context 👍 0

All Replies (8)

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.

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

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

Could you point me to a latest working one?

For some reason none of the ones I tried work.

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

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

kuopiofi மூலமாக திருத்தப்பட்டது

தீர்வு தேர்ந்தெடுக்கப்பட்டது

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;
}