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.

ఇంకా తెలుసుకోండి

UserChrome.css - Highlight sent messages

  • 4 ప్రత్యుత్తరాలు
  • 0 ఈ సమస్యలు కలిగి ఉన్నాయి
  • 12 వీక్షణలు
  • చివరి సమాధానమిచ్చినది 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.

ఎంపిక చేసిన పరిష్కారం

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;}
ఈ సందర్భంలో ఈ సమాధానం చదవండి 👍 0

ప్రత్యుత్తరాలన్నీ (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

ఉపయోగపడిందా?

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

ఉపయోగపడిందా?

more options

ఎంపిక చేసిన పరిష్కారం

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

ఉపయోగపడిందా?

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

ఉపయోగపడిందా?

ఒక ప్రశ్న అడగండి

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