スポンサーリンク
Thunderbirdのメール本文の文字サイズは設定から変更できるが、フォルダ一覧やメール一覧の文字サイズを変更するにはcssファイルを追加しなければならない。
まずはCSSファイルを読み込む設定を有効にする。
[ツール] → [設定] → [設定エディター] を開く。
toolkit.legacyUserProfileCustomizations.stylesheets をTrueに設定。
プロファイルフォルダへchromeフォルダを追加し、中にuserChrome.cssファイルを追加。
以下のCSSを記述して保存。
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* reference: https://gist.github.com/AnthonyDiGirolamo/6032387 */ /* メール一覧の文字サイズ */ #threadTree treechildren { font-size:30px !important; } /* フォルダ一覧の文字サイズ*/ #folderTree treechildren{ font-size: 25px; } /* フォルダ一覧の行間 */ #folderTree treechildren::-moz-tree-row { height: 35px !important; }
Thunderbirdを再起動すると反映される。
https://gist.github.com/AnthonyDiGirolamo/6032387
上記にはほかの設定例も書かれている。
例えば奇数行偶数行で色を変える方法は以下。
#threadTree treechildren::-moz-tree-row(odd) { -moz-appearance: none !important; background-image: none !important; background-color:#F3F6FA !important; }