Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

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
Wannan tattunawa ta zama daɗaɗɗiya. Yi sabuwar tambaya idan ka na bukatar taimako.
Solved Ajiyayyu

UserChrome.css - Highlight sent messages

GrennyDar replied
GrennyDar

Hi all, I am at a lost on this one, I want to highlight all sent messages.

I am using the following code to Highlight unread messages.

  1. threadTree tbody [data-properties~="unread"]{
 color: #0931f7 !important; 
 font-weight: bold !important;

} any Suggestions on the code I need.

Hi all, I am at a lost on this one, I want to highlight all sent messages. I am using the following code to Highlight unread messages. #threadTree tbody [data-properties~="unread"]{ color: #0931f7 !important; font-weight: bold !important; } any Suggestions on the code I need.
Karanta wannan amsa a matsayinta

Zaɓi Mafita

To highlight sent messages in Table View:

#threadTree tbody [data-properties~="outgoing"]{ 
color: red !important; 
font-weight: bold !important;
}


For Cards View:

tr[is="thread-card"][data-properties~="outgoing"] .card-container
{color: red !important;}

All Replies (4)

Hi,

the following CSS code should work gor you

#threadTree tbody [data-properties~="unread"]{ 
color: #0931f7 !important; 
font-weight: bold !important;
} 

If it doesn't work go to Settings > General > scroll to bottom and click Config Editor... Search for style and find toolkit.legacyUserProfileCustomizations.stylesheets, if its value is false toggle ut to true

Hi Mapenzi, Thanks for your reply. Yes the code you posted does work for UNREAD messages however I am after code for SENT messages,

Many Thanks Grennydar

Zaɓi Mafita

To highlight sent messages in Table View:

#threadTree tbody [data-properties~="outgoing"]{ 
color: red !important; 
font-weight: bold !important;
}


For Cards View:

tr[is="thread-card"][data-properties~="outgoing"] .card-container
{color: red !important;}

Hi sfhowes Thank you for your reply,

I have been able to modify to only highlight Read/sent messages

  1. threadTree tbody [data-properties~="outgoing"][data-properties~="read"]{

color: red !important; font-weight: bold !important; }

Thanks Grennydar