スポンサーリンク

Thunderbirdのメール一覧の文字サイズを変更する

Thunderbirdのメール本文の文字サイズは設定から変更できるが、フォルダ一覧やメール一覧の文字サイズを変更するにはcssファイルを追加しなければならない。

1.toolkit.legacyUserProfileCustomizations.stylesheetsの設定

まずはCSSファイルを読み込む設定を有効にする。

[ツール] → [設定] → [設定エディター] を開く。

toolkit.legacyUserProfileCustomizations.stylesheets をTrueに設定。

2. プロファイルフォルダを開く

3.chrome\userChrome.css を追加

プロファイルフォルダへchromeフォルダを追加し、中にuserChrome.cssファイルを追加。

4.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;
}

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

日本語が含まれない投稿は無視されますのでご注意ください。(スパム対策)


この記事のトラックバックURL: