为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

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

详细了解

Thunderbird Folders pane font size in Linux Lite

  • 1 个回答
  • 1 人有此问题
  • 3 次查看
  • 最后回复者为 Zenos

more options

I am using Linux Lite, an excellent Ubuntu-based OS.

The problem I had was the tiny font used in the Thunderbird folders pane.

A suggested solution was to install an add-on which can customise these, but for me the necessity of giving a 3rd. party full access to my data was a step too far in terms of potential compromise of privacy and security. I don't recommend it.

Then I discovered that I could use my Linux Lite settings>appearance>fonts to adjust both font and font size - set by default at 9pt. This does effect menu etc. sizes across the system, so I compromised at 11pt which suits me and looks well on Firefox too. (In Linux Lite all this is done by GUI, no command lines are needed).

By default it changes desktop icon text, but desktop-settings>icons>select "use custom font size" gives back control.

I hope this is useful to some.

I am using Linux Lite, an excellent Ubuntu-based OS. The problem I had was the tiny font used in the Thunderbird folders pane. A suggested solution was to install an add-on which can customise these, but for me the necessity of giving a 3rd. party full access to my data was a step too far in terms of potential compromise of privacy and security. I don't recommend it. Then I discovered that I could use my Linux Lite settings>appearance>fonts to adjust both font and font size - set by default at 9pt. This does effect menu etc. sizes across the system, so I compromised at 11pt which suits me and looks well on Firefox too. (In Linux Lite all this is done by GUI, no command lines are needed). By default it changes desktop icon text, but desktop-settings>icons>select "use custom font size" gives back control. I hope this is useful to some.

所有回复 (1)

more options

I am also a Linux user, though not your particular distribution.

We usually recommend an add-on, Theme Font & Size Changer, but this has had issues with a "timebomb" in the code that causes it to expire.

My own approach is to use a userChrome.css file with the following content:

/*
 * Do not remove the @namespace line -- it's required for correct functioning
 */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */

/* Make all the default font sizes 13 pt. */
* {
    font-family: "Liberation Sans" !important;
    font-size: 13pt !important;
}

You can of course adjust or omit the line setting the font-family, and adjust the font-size to suit your needs.