搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

Unread Grouped emails in bold colour

  • 1 回覆
  • 1 有這個問題
  • 1 次檢視
  • 最近回覆由 sfhowes

more options

Currently when there is one unread email in a grouped email series, the title is only underlined, but not in bold.

But if it is an ungrouped email, and it is unread, it is displayed as bold font.

Please make grouped unread emails bold font. even if only 1 grouped email is unread and the rest is read.

This way I don't accidentally skip these emails because they are too light in colour.

Currently when there is one unread email in a grouped email series, the title is only underlined, but not in bold. But if it is an ungrouped email, and it is unread, it is displayed as bold font. Please make grouped unread emails bold font. even if only 1 grouped email is unread and the rest is read. This way I don't accidentally skip these emails because they are too light in colour.
附加的畫面擷圖

所有回覆 (1)

more options

This can be done with a userChrome.css file. References:

http://forums.mozillazine.org/viewtopic.php?f=28&t=345979

https://support.mozilla.org/en-US/questions/1265223

  treechildren::-moz-tree-cell-text(container, closed, hasUnread, read) {
    text-decoration: none !important;
    font-weight:  bold !important;
    color: #000000 !important;
  }
  treechildren::-moz-tree-cell-text(container, closed, hasUnread, read, focus, selected),
  treechildren::-moz-tree-cell-text(container, hasUnread, read, focus, selected) {
    color: HighlightText !important;
  }

Double-click toolkit.legacyUserProfileCustomizations.stylesheets to true in Config. editor.