Mozilla 도움말 검색

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

자세히 살펴보기

How can I show the tag names on the message cards in `Cards View`?

  • 8 답장
  • 3 이 문제를 만남
  • 최종 답변자: Wayne Mery

more options

I am using Thunderbird 128, and by default if a message has a tag it just shows an icon in the Cards view - how can I change it to show the actual tag name(s)?

I can enable a column for this in Table View, but I prefer to do this in the Cards View.

I am using Thunderbird 128, and by default if a message has a tag it just shows an icon in the Cards view - how can I change it to show the actual tag name(s)? I can enable a column for this in Table View, but I prefer to do this in the Cards View.

모든 댓글 (8)

more options

I don't think there's a way to show the name in the card, but it can be shown in the Header Pane with the Message Header Toolbar Customize add-on (see picture).

글쓴이 sfhowes 수정일시

도움이 되셨습니까?

more options

Thanks for the idea! It seems like this might be the default behaviour now? I don't have any addons installed, and haven't configured much yet but it still shows like that for me.

Which is nice, but ideally I would be able to see at a glance which of my emails are tagged in what way from the list.

도움이 되셨습니까?

more options

You're right, the tag name appears in the header pane without the add-on.

It is possible to make the card background match the tag colour, to make it more prominent, and also to use the Quick Filter Bar to filter the list by tag (see pictures).

도움이 되셨습니까?

more options

Good suggestions as well! Thank you 💙

I will look into the possibility of making a custom CSS rule and/or a proper feature request for this when I have a moment.

도움이 되셨습니까?

more options

sfhowes said

You're right, the tag name appears in the header pane without the add-on. It is possible to make the card background match the tag colour, to make it more prominent, and also to use the Quick Filter Bar to filter the list by tag (see pictures).

Could you show how to configure thunderbird to show the background color, as that is exactly what I'm looking for. Thx!

도움이 되셨습니까?

more options

Jeroen said

sfhowes said

You're right, the tag name appears in the header pane without the add-on. It is possible to make the card background match the tag colour, to make it more prominent, and also to use the Quick Filter Bar to filter the list by tag (see pictures).

Could you show how to configure thunderbird to show the background color, as that is exactly what I'm looking for. Thx!

See https://support.mozilla.org/en-US/questions/1422144#answer-1599821

Here is a sample of css to change the background colour of tagged messages:

/* tag background colour for the first 2 default tags and a custom tag named customtag */

#threadTree tr[data-properties~="T_24label1"] {background-color:LightCoral !important;}
#threadTree tr[data-properties~="T_24label1"].selected {background-color:orange !important;}
 
#threadTree tr[data-properties~="T_24label2"] { background-color:#f5cba7 !important; }
#threadTree tr[data-properties~="T_24label2"].selected {background-color:grey !important;
}

#threadTree tr[data-properties~="Tcustomtag"] {background-color:lightgrey !important;}
#threadTree tr[data-properties~="Tcustomtag"].selected {background-color:grey !important;}

도움이 되셨습니까?

more options

sfhowes said

Jeroen said

sfhowes said

You're right, the tag name appears in the header pane without the add-on. It is possible to make the card background match the tag colour, to make it more prominent, and also to use the Quick Filter Bar to filter the list by tag (see pictures).

Could you show how to configure thunderbird to show the background color, as that is exactly what I'm looking for. Thx!

See https://support.mozilla.org/en-US/questions/1422144#answer-1599821

Here is a sample of css to change the background colour of tagged messages:

(...)

Thanks a lot for your reply! I was hoping for a way to automatically use the color from the tag of the mail (just like the Table View does), rather than having to define a css rule for each tag, since I use 50+ tags.

However, after some poking around with the developer tools, I found the following works for my use case:

#threadTree[rows="thread-card"] .card-container {
    color: var(--tag-color);
}

도움이 되셨습니까?

more options

> it just shows an icon in the Cards view

Actually if you mouse over the icon it gives the tag name

도움이 되셨습니까?

질문하기

글에 답글을 달기 위해서는 계정으로 로그인해야만 합니다. 계정이 아직 없다면 새로운 질문을 올려주세요.