Thunderbird で未読の色を変える

パソコン/ネットワーク

以下は、Author:alphan さんのページを引用したものです。

===

Thunderbirdでもう1つ。
先日サンダーバードのバージョンを何も考えず最新(115)にしてしまった。
大きな改定があったらしくメニューの外観が変わったが、未読メールを濃い青で表示していた設定が効かなくなった。
userChrome.css が効かなくなったためで、バージョン115用にcssを見様見真似で書き変えておいた。
内容は以下のとおり。

:root {
–thread-pane-unread-color: #0000ff !important;
}

#threadTree tbody [data-properties~=”unread”] {
color: var(–thread-pane-unread-color);
}

.unread > .container > .name,
.new-messages > .container > .name {
color: #0000ff !important;
}

#folderTree:focus-within li.selected.unread > .container > .name,
#folderTree:focus-within li.selected.new-messages > .container > .name {
color: #ffffff !important;
}

.unread > .container > .unread-count {
background-color: #0000ff !important;
}

#folderTree:focus-within li.selected > .container > .unread-count {
background-color: #ffffff !important;
color: #0000ff !important;
}

古いuserChrome.cssはリネーム等して残して、上記内容のuserChrome.cssとした。
Windows10でのフォルダの場所は以下であった。
C:\Users\アカウント名\AppData\Roaming\ThunderBird\Profiles\????????.default-release\chrome
ここでアカウント名には該当PCのアカウント名、?????????はPCによって変化する。

===引用ここまで