Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

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

Learn More

Color of unread messages in the pane for 102.5.0 (64-bit) using System theme

  • 2 回覆
  • 1 有這個問題
  • 12 次檢視
  • 最近回覆由 disepure

more options

The attached image shows how my email list pane looks like. I would like to change the color of the whole unread line, to be the same color as the Read column (the green dot).

I tried the following after reading some thread of older versions of thunderbird, to no avail:

Changed toolkit.legacyUserProfileCustomizations.stylesheets to true Created a file name userChrome.css in %APPDATA%\Roaming\Thunderbird\Profiles\t6yl6i44.default\chrome

Had this in its content:

  1. threadTree > treechildren {
 color: green !important;}

Is it possible to do what I want? Thanks

The attached image shows how my email list pane looks like. I would like to change the color of the whole unread line, to be the same color as the Read column (the green dot). I tried the following after reading some thread of older versions of thunderbird, to no avail: Changed toolkit.legacyUserProfileCustomizations.stylesheets to true Created a file name userChrome.css in %APPDATA%\Roaming\Thunderbird\Profiles\t6yl6i44.default\chrome Had this in its content: #threadTree > treechildren { color: green !important;} Is it possible to do what I want? Thanks
附加的畫面擷圖

被選擇的解決方法

Here is an example to play with. This example sets background to white and text to black:

 /* Make unread messages black text and italic */
  treechildren::-moz-tree-cell-text(unread) {
    color: #000000 !important;
    font-style: italic !important;
    font-weight: bold !important;  background-color: #ffffff !important; 
 }
從原來的回覆中察看解決方案 👍 0

所有回覆 (2)

more options

選擇的解決方法

Here is an example to play with. This example sets background to white and text to black:

 /* Make unread messages black text and italic */
  treechildren::-moz-tree-cell-text(unread) {
    color: #000000 !important;
    font-style: italic !important;
    font-weight: bold !important;  background-color: #ffffff !important; 
 }
more options

Thanks. The following text did what I wanted.

'@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */

/*set toolkit.legacyUserProfileCustomizations.stylesheets to true in about:config*/

/* Make unread messages black text and italic */
  1. threadTree > treechildren::-moz-tree-cell-text(unread) {
   color: #57BE66 !important;
   font-weight: bold !important;
}'