如何在 Mac 上更改 Thunderbird 线程列表的字体大小?

Yog*_*oga 3 thunderbird macos

如何在 Mac 上更改 Thunderbird 线程列表的字体大小?

我在首选项中没有看到任何设置。

qin*_*ngu 5

丹尼尔的回答是正确的。您必须userChrome.css~/Library/Thunderbird/Profiles/[yourProfileName]/chrome/文件夹中扩展。下面是修复间距的 CSS 代码:

/* Set default namespace to XUL */
@namespace
url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

/* Set font size in folder pane */
#folderTree >treechildren::-moz-tree-cell-text {
    font-size: 12pt !important;
}

/* Set font size in thread pane */
#threadTree >treechildren::-moz-tree-cell-text {
    font-size: 12pt !important;
}

/* Set height for cells in folder pane */
#folderTree >treechildren::-moz-tree-row {
   height: 25px !important;
}

/* Set height for cells in thread pane */
#threadTree >treechildren::-moz-tree-row {
   height: 25px !important;
}
Run Code Online (Sandbox Code Playgroud)

Thunderbird 版本> 115.*改变了样式,这对我有用:

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

/* Set Font Size And Spacing In Folder Pane */

html|ul#folderTree html|li[is="folder-tree-row"] > html|div.container > html|span.name {
    font-size: 1.45rem !important;
    line-height: 1.6 !important;
}

/* Set Font Size And Spacing In Thread Pane */

html|table[is="tree-view-table"] {
    font-size: 1.45rem !important;
    line-height: 1.65 !important;
}
Run Code Online (Sandbox Code Playgroud)