Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

Цей вебсайт матиме обмежену функціональність, доки ми проводимо його обслуговування для поліпшення роботи. Якщо прочитана стаття не розв'язала вашу проблему і ви хочете поставити питання, наша спільнота підтримки з радістю допоможе вам на @FirefoxSupport у Twitter та /r/firefox на Reddit.

Шукати в статтях підтримки

Остерігайтеся нападів зловмисників. Mozilla ніколи не просить вас зателефонувати, надіслати номер телефону у повідомленні або поділитися з кимось особистими даними. Будь ласка, повідомте про підозрілі дії за допомогою меню “Повідомити про зловживання”

Докладніше

Ця тема перенесена в архів. Якщо вам потрібна допомога, запитайте.

firefox sidebar/library spacing

  • 5 відповідей
  • 1 має цю проблему
  • 1 перегляд
  • Остання відповідь від kuopiofi

more options

Updated to the latest Firefox today and found that the same old problem from FF 25 is still around. There's extra added blank space between each bookmark in my sidebar and library. Anyone know how to fix this? I tried https://support.mozilla.org/en-US/questions/1183976 but it still leaves Library with extra space, sidebar seems to work but still bit too much space for my taste.

Updated to the latest Firefox today and found that the same old problem from FF 25 is still around. There's extra added blank space between each bookmark in my sidebar and library. Anyone know how to fix this? I tried https://support.mozilla.org/en-US/questions/1183976 but it still leaves Library with extra space, sidebar seems to work but still bit too much space for my taste.
Прикріплені знімки екрана

Усі відповіді (5)

more options

Also, the font-size is notably larger than elsewhere on menubar, so I'm dropping that coding.

more options

https://support.mozilla.org/en-US/questions/1183976

The userChrome.css code used in that thread doesn't address the Library window at all. You need the 'selectors' code for the Library. I avoid using the Library window as much as possible, and don't ever bother with the "perceived faults" that I see there.

As far as spacing of the Sidebar, the font heights, margins and padding probably are off from what you want; vary those settings until you hit your "sweet-spot".

Perhaps this reddit grouping of postings has the fix that you desire, or at least gets you a bit closer to your desired results. https://www.reddit.com/r/FirefoxCSS/

more options

I found that that page via https://www.reddit.com/r/FirefoxCSS/comments/9l1jbe/reduce_spacing_of_sidebar_bookmarks_old_code_no/

Which ones are the font heights, margins and padding specifically? I tried some changes but got nothing.

more options

If you can't find a FirefoxCSS thread @reddit newer than Fx 63 about this issue, why don't you start a new thread there?

You're going in circles trying to fix code that was posted here at SUMO in the days of Firefox 57 that you reached from a reddit thread from the days of Firefox 63; work forwards rather than backwards when seeking code.

more options

OK, took some doing and gobbling together but current one seems to work. Could someone more skilled check that I didn't create something that causes problems in the future?

@-moz-document url(chrome://browser/content/places/places.xul){

 #placesView treechildren::-moz-tree-row{min-height: 17px !important;}

} .sidebar-placesTreechildren::-moz-tree-row{height: 1.6em !important;}

  1. bookmarks-view {
  padding: 0px !important;
  font-size: 12px !important;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
#bookmarks-view treechildren::-moz-tree-row {
  min-height: 12px !important;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}