当サイトはユーザー体験を改善するためのメンテナンスを実施中に機能が制限される予定です。記事を読んでもあなたの問題が解決せず質問をしたい場合は、Twitter の @FirefoxSupport、Reddit の /r/firefox で、サポートコミュニティが皆さんを助けようと待機しています。

Mozilla サポートの検索

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

詳しく学ぶ

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

Make unread emails not Bold

  • 1 件の返信
  • 1 人がこの問題に困っています
  • 6 回表示
  • 最後の返信者: sfhowes

more options

Is it possible to make it so unread emails no longer show up as bold? (or perhaps a less severe bold) If so how?

Is it possible to make it so unread emails no longer show up as bold? (or perhaps a less severe bold) If so how?

選ばれた解決策

Here is a userChrome.css example for the Threads Pane font for unread mail:

/* Threads pane text */
treechildren::-moz-tree-cell-text(unread) {
  font-size: 12pt !important;
  font-family: Verdana !important;
  font-style: italic !important;
  font-weight: normal !important;
  color: cyan !important;
}
treechildren::-moz-tree-cell-text(selected, unread) {
  font-size: 12pt !important;
  font-family: Verdana !important;
  font-weight: normal !important;
  color: orange !important;
}

The font is normal instead of bold, and in italics. The size, color and family are all adjustable.

Create a folder named chrome in the profile folder, and in chrome create a userChrome.css file with a text editor.

この回答をすべて読む 👍 0

すべての返信 (1)

more options

選ばれた解決策

Here is a userChrome.css example for the Threads Pane font for unread mail:

/* Threads pane text */
treechildren::-moz-tree-cell-text(unread) {
  font-size: 12pt !important;
  font-family: Verdana !important;
  font-style: italic !important;
  font-weight: normal !important;
  color: cyan !important;
}
treechildren::-moz-tree-cell-text(selected, unread) {
  font-size: 12pt !important;
  font-family: Verdana !important;
  font-weight: normal !important;
  color: orange !important;
}

The font is normal instead of bold, and in italics. The size, color and family are all adjustable.

Create a folder named chrome in the profile folder, and in chrome create a userChrome.css file with a text editor.