先の「Thunderbird」と同じくWindows 10に入れ替えたらブラウザ「Cyberfox」で使っているアドオン「NewsFox」の未読表示もなんだか見辛い。
というわけでこちらも色を修正できたのでメモ書き♪
- cyberfox(Firefox)のプロファイルフォルダ内「newsfox」フォルダを開く。
- ここにに「newsfox.css」を作成する。
ファイルの中身は以下の通り。
@-moz-document url("chrome://newsfox/content/newsfox.xul") {
/* 未読の文字色(フィード部) */
treechildren::-moz-tree-cell-text(unread,feed)
{ color: #CC0000 !important; }
/* 未読の文字色(タイトル部) */
treechildren::-moz-tree-cell-text(unread,title)
{ color: #CC0000 !important; }
/* フィード部のツリー+-マークを消す */
treechildren::-moz-tree-twisty {
padding: 0px!important;
width: 0px!important;
list-style-image: none!important;
}
/* フィード部のツリーインデント */
treechildren::-moz-tree-indentation {
width:0.8em !important;
}
/* 行間を狭める */
treechildren::-moz-tree-row {
margin-top:-1px !important;
margin-bottom:-1px !important;
}
/* 文字サイズの変更(全体) */
*
{font-size:14px !important;}
} - Cyberfox(Firefox)を再起動する。
以上。