搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

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 )