Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

Thunderbirdの表示カスタマイズ(未読メッセージ、選択時の色)

フォルダペインのフォーカス、選択時の背景色を#ffaaaaに設定

#folderTree treechildren::-moz-tree-row(selected, focus) {
background-color: #ffaaaa !important;
}

#threadTree treechildren::-moz-tree-row(selected, focus) {
background-color: #ffaaaa !important;
}

スレッドペインの未読時の文字を赤・イタリックに設定

#threadTree treechildren::-moz-tree-cell-text(unread) {
color: red!important;
font-style :italic;