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

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

Learn More

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

How to increase line height in Thunderbird's interface panes?

  • 4 відповіді
  • 1 має цю проблему
  • 463 перегляди
  • Остання відповідь від alex_t

more options

Would you please tell me, how to increase line-height for text in Thunderbird's user panes (Folder Pane, Message Pane)? (not Font-size, but Line-height parameter, that's what I'm trying to find.)

Thank you!

Would you please tell me, how to increase line-height for text in Thunderbird's user panes (Folder Pane, Message Pane)? (not Font-size, but Line-height parameter, that's what I'm trying to find.) Thank you!

Обране рішення

amanchesterman said

The /chrome/ subdirectory needs to be created within that.

Thanks, NOW it works.

Figured out, line-height attribute doesn't work in userChrome.css. Like, at all. So I searched the Net and tried this code instead:

/* Row Height*/ treechildren::-moz-tree-row {

   margin-top: 2px !important;
   margin-bottom: 2px !important;

}

Success )

Читати цю відповідь у контексті 👍 0

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

more options

You'll need to edit the userChrome.css file in your Thunderbird folder (or create the file if it isn't there). There's quite a good tutorial here: http://www.linnhe2.free-online.co.uk/thunderbird/chrome.html It includes several examples but unfortunately not one to adjust the line height. However the css property line-height: 150% (or whatever percentage you want) should work. You just have to experiment really to get it the way you want. Just about everything in the Thunderbird interface can be tailored this way.

more options

Thanks, amanchesterman, I have created the file "userChrome.css" in ~/Users/Username/Library/Thunderbird/Profiles/chrome/ (I'm on a Mac), and pasted some folder-pane-tweaking code into it it from the page you had suggested. Restarted TBird. No effect at all. Maybe I should have put the file into another directory?

more options

I don't use a Mac so I'm rather out of my depth here. However according to this page it looks as if you haven't got the path right: https://developer.mozilla.org/en-US/docs/Mozilla/Thunderbird/Thunderbird_Configuration_Files The page is somewhat out of date but I guess the path hasn't changed much. If it's still correct, in your /Thunderbird/Profiles/ folder there should be another folder with a name like xxxxxxxx.default where the x's are a random string of 8 characters. That's your actual Thunderbird profile which contains all your mail and settings. The /chrome/ subdirectory needs to be created within that.

more options

Вибране рішення

amanchesterman said

The /chrome/ subdirectory needs to be created within that.

Thanks, NOW it works.

Figured out, line-height attribute doesn't work in userChrome.css. Like, at all. So I searched the Net and tried this code instead:

/* Row Height*/ treechildren::-moz-tree-row {

   margin-top: 2px !important;
   margin-bottom: 2px !important;

}

Success )