Mozilla 도움말 검색

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

자세히 살펴보기

Remove colored background for unselected messages with tags in message pane

  • 1 답장
  • 0 이 문제를 만남
  • 1 보기
  • 최종 답변자: david

more options

I am using Thunderbird 91.8.0 and make use of tags to categorize messages. The tags are associated with colors and have names that I assigned to them. I.e. I am not using the standard 5 or so built-in names and colors that Thunderbird comes with but 8 tags with names and colors that I chose a long time ago.

For a long time, the title (i.e. the text of the title) of a message that I had assigned a tag to had the color of the tag in the list with messages (for example my Inbox). The background of the whole message pane was white. That is, all message titles were displayed on a white background in my message pane and the title of the message was in black when it had no tag, and in the color of the tag when it did have a tag (like here like here).

After a recent upgrade however, in my list with messages, all rows of messages with a tag now have a light shade of the tag color as background, i.e. not (let's say) red title on white background, as before, but red title on light-red background. I find this distracting and would like to change that back.

I tried forcing a white background for the message pane by adapting my userchrome.css like this, but that did not help:

treechildren { background-color: #FFFFFF !important; } treechildren::-moz-tree-row { background-color: #FFFFFF !important; }

Does anyone know how to restore my Thunderbird to showing a white background for all non-selected message titles in my message pane? Thanks so much in advance!

I am using Thunderbird 91.8.0 and make use of tags to categorize messages. The tags are associated with colors and have names that I assigned to them. I.e. I am not using the standard 5 or so built-in names and colors that Thunderbird comes with but 8 tags with names and colors that I chose a long time ago. For a long time, the title (i.e. the text of the title) of a message that I had assigned a tag to had the color of the tag in the list with messages (for example my Inbox). The background of the whole message pane was white. That is, all message titles were displayed on a white background in my message pane and the title of the message was in black when it had no tag, and in the color of the tag when it did have a tag ([https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/gallery/images/2018-08-16-10-35-35-67cddd.png like here] like here). After a recent upgrade however, in my list with messages, all rows of messages with a tag now have a light shade of the tag color as background, i.e. not (let's say) red title on white background, as before, but red title on light-red background. I find this distracting and would like to change that back. I tried forcing a white background for the message pane by adapting my userchrome.css like this, but that did not help: treechildren { background-color: #FFFFFF !important; } treechildren::-moz-tree-row { background-color: #FFFFFF !important; } Does anyone know how to restore my Thunderbird to showing a white background for all non-selected message titles in my message pane? Thanks so much in advance!

모든 댓글 (1)

more options

Well, I will share here my setting for the 'important' tag. That may give you ideas on whatever you are wanting to change:

 /* label1 Important  */
treechildren::-moz-tree-cell(T_24label1) { border-bottom:1px solid #FF0000 !important; background-color:  
  #FF0000 !important; }
 treechildren::-moz-tree-cell-text(T_24label1) { color: #FFF !important; }
 treechildren::-moz-tree-cell(T_24label1, selected) { border-bottom:1px solid #FF0000 !important; 
 background-color: #FF0000 !important;} 
 treechildren::-moz-tree-cell-text(T_24label1, selected) { color: #000 !important;  font-weight: bold !important; } 

However, I think all of this goes away with ver 115, due this summer.