
UserChrome.css - Highlight sent messages
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)
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
ఎంపిక చేసిన పరిష్కారం
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
- threadTree tbody [data-properties~="outgoing"][data-properties~="read"]{
color: red !important; font-weight: bold !important; }
Thanks Grennydar