如何调整Thunderbird中消息列表和文件夹列表的字体大小?

use*_*348 17 thunderbird fontconfig

在 Windows 10 中,我使用 Thunderbird 78.11.0(32 位)作为电子邮件客户端。

今天,消息列表和文件夹列表的字体突然变得很小。(其他应用程序没有变化)。

如何调整 Thunderbird 中消息列表和文件夹列表的字体大小?

kye*_*yer 36

编辑:正如许多人指出的那样,现在有其他答案可能更适合问题的限制。我的答案扩展了包括文本在内的整个界面,这很可能足以满足您的需求。但如果您想要更细粒度的控制,请查看其他答案。

打开菜单并转到首选项 > 常规。一直向下滚动并在最底部单击“配置编辑器...”按钮(接受警告)。

您正在寻找layout.css.devPixelsPerPx,您只需搜索“ pixels ”,它就会显示出来。

单击layout.css.devPixelsPerPx并将默认值-1.0 编辑为您满意的比例因子(例如:1.5、2.0、2.25 等)。

单击“确定”将使您立即看到所做的更改,以便您可以轻松地进行拨入。


Her*_*rot 5

这是您问题的实际解决方案。这是在 Thunderbird 支持论坛中给出的,所以它不是我的作品。

试试这个CSS代码:

/* Threads Pane font and background*/
#threadTree > treechildren {
  font-size: 12pt !important;
  font-family: Times !important;
  background-color: lightgrey !important;
  color: navy !important;
}

/* Folder Pane font and background*/
#folderTree > treechildren {
  font-size: 12pt !important;
  font-family: Times !important;
  background-color: lightgrey !important;
  color: navy !important;
}
Run Code Online (Sandbox Code Playgroud)

帮助/疑难解答,配置文件夹,打开文件夹,关闭 TB,创建一个名为 chrome 的新文件夹,使用文本编辑器在 chrome 中创建一个新文档,将其命名为 userChrome.css,保存类型:所有文件,复制上面的代码,根据需要更改数字和颜色。在选项(首选项)/常规/配置中双击 toolkit.legacyUserProfileCustomizations.stylesheets 为 true。编辑,重启TB。


小智 5

今天我花了几个小时尝试userChrome.css在 Linux Mint 上使用 Thunderbird 91。无论我做什么,该文件都被忽略。我终于找到了答案:进入配置编辑器并搜索:toolkit.legacyUserProfileCustomizations.stylesheets 并将其设置为true. 完成此操作后,该userChrome.css文件将按预期工作。