Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

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

  • 2 답장
  • 1 이 문제를 만남
  • 14 보기
  • 최종 답변자: 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;
}'