Windows 10 will reach EOS (end of support) on October 14, 2025. For more information, 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

UserChrome.css - Highlight sent messages

  • 4 valiny
  • 0 manana an'ity olana ity
  • 12 views
  • Valiny farany nomen'i GrennyDar

more options

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.

Vahaolana nofidina

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;}
Hamaky an'ity valiny ity @ sehatra 👍 0

All Replies (4)

more options

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

Helpful?

more options

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

Helpful?

more options

Vahaolana Nofidina

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;}

Helpful?

more options

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

Helpful?

Mametraha fanontaniana

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