This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

How can Thunderbird 128 display the subject line with different font colors based on tags?

more options

Hi

In Thunderbird version 128, the table view displays the subject line with different font colors based on tags, as shown in the example below.

https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2024-07-30-07-16-08-b0bfa9.png

I’ve seen at Thunderbird's release notes that Thunderbird supports displaying different font colors based on tags in the card view, as shown in the example below.

https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2024-07-30-07-28-44-d4881a.png

However, in my card view, the subject is displayed in white font, and only the tag label is highlighted, as shown in the example below.

https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2024-07-30-07-20-48-f841b4.png

I would like to know if the card view in 128.0.1esr (64-bit) on Windows 11 has the capability to display the subject line with different font colors based on tags. If it does, could you please advise on how to configure it?

Hi In Thunderbird version 128, the table view displays the subject line with different font colors based on tags, as shown in the example below. https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2024-07-30-07-16-08-b0bfa9.png I’ve seen at Thunderbird's release notes that Thunderbird supports displaying different font colors based on tags in the card view, as shown in the example below. https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2024-07-30-07-28-44-d4881a.png However, in my card view, the subject is displayed in white font, and only the tag label is highlighted, as shown in the example below. https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2024-07-30-07-20-48-f841b4.png I would like to know if the card view in 128.0.1esr (64-bit) on Windows 11 has the capability to display the subject line with different font colors based on tags. If it does, could you please advise on how to configure it?
Attached screenshots

Chosen solution

The following code works in 128 (see picture):

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

Help/Troubleshooting Info, Profile Folder, Open Folder, close TB, create a new folder named chrome, create a new document in chrome with a text editor, name it userChrome.css, Save as type: All files *.*, copy in the above code, change the number as desired. Double-click toolkit.legacyUserProfileCustomizations.stylesheets to true in Settings/General/Config. editor, restart TB.

Online css generator

video on how to create a css file (Firefox and TB)

Did you toggle the stylesheets preference?

Read this answer in context 👍 7

All Replies (5)

more options

Helpful?

more options

Hi,

Thank you for the advice. However, I’ve tried the following steps, but they haven't had any effect.

https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2024-07-30-08-25-51-d117af.png

Could you please provide further advice?

Modified by charlee.ch

Helpful?

more options

Seçilmiş Həll

The following code works in 128 (see picture):

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

Help/Troubleshooting Info, Profile Folder, Open Folder, close TB, create a new folder named chrome, create a new document in chrome with a text editor, name it userChrome.css, Save as type: All files *.*, copy in the above code, change the number as desired. Double-click toolkit.legacyUserProfileCustomizations.stylesheets to true in Settings/General/Config. editor, restart TB.

Online css generator

video on how to create a css file (Firefox and TB)

Did you toggle the stylesheets preference?

Helpful?

more options

Thank you for your advice. After toggling the `toolkit.legacyUserProfileCustomizations.stylesheets` to `true`, the configuration takes effect properly.

Helpful?

more options

This was extremely useful!

I wanted only the subject text to be highlighted, so I ended up using:

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

}

Modified by dswitzer1

Helpful?

Sual ver

You must log in to your account to reply to posts. Please start a new question, if you do not have an account yet.