搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Color differentiation of messages in list seems erratic

  • 4 个回答
  • 1 人有此问题
  • 10 次查看
  • 最后回复者为 sfhowes

more options

I'm on a Mac using the "dark"theme. When viewing any list of messages, the one that is selected is not highlighted the same way. Sometimes, it seems as if even-numbered messages appear with a golden color when selected, and other times, they appear without the golden color, but still show as selected with a pale gray color. Other times, I can select a message but there is no indication at all that it is actually selected.

Also, when switching the sort order of any column by clicking the column title, there is no longer the up or down arrow to indicate the sort order even though the sort is working as expected.

I'm on a Mac using the "dark"theme. When viewing any list of messages, the one that is selected is not highlighted the same way. Sometimes, it seems as if even-numbered messages appear with a golden color when selected, and other times, they appear without the golden color, but still show as selected with a pale gray color. Other times, I can select a message but there is no indication at all that it is actually selected. Also, when switching the sort order of any column by clicking the column title, there is no longer the up or down arrow to indicate the sort order even though the sort is working as expected.

所有回复 (4)

more options

Also --- some very old messages that have the status "Replied" appear in red text, but newer ones do not.

I guess I am looking for the place in preferences where these settings can be adjusted.

more options

The color of selected messages in the dark theme is barely distinguishable from the background, but fortunately this can be corrected with css.

1. Help/Troubleshooting Information, click Show in Finder, close TB. 2. Create a new folder named chrome. 3. Create a new file in chrome with a text editor, save it as userChrome.css. 4. Copy this into the css file:

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

#threadTree treechildren::-moz-tree-row(selected) {
  -moz-appearance: none !important;
  background-image: none !important;
  background-color: black !important;
}

#threadTree treechildren::-moz-tree-cell-text(selected) {
  -moz-appearance: none !important;
  color: orange !important;
}

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

#threadTree treechildren::-moz-tree-cell-text(selected, focus) {
  -moz-appearance: none !important;
  color: yellow !important;
}

5. Restart TB.

Change the colors as desired. Tested and working in TB 68.2.2/W10.

http://forums.mozillazine.org/viewtopic.php?p=14807481#p14807481

I don't know about the arrows, as they are visible here in W10. Are they visible with the default or light themes?

more options

I was able to create the CSS file as described here but it doesn't change anything regarding colors. However, it does uniformly make the selected message visible with a pale gray shade.

more options

I've attached two pictures with the css applied. The first one shows the red background and yellow text of a selected message when the focus is on the Threads Pane, and the second when the focus is not on the TP. The blue text is the normal color of unread messages.

Check that your css file is of type 'Cascading Style Sheet', not Text, and that the name is exactly userChrome.css.