Thread: UI Update
View Single Post
Old 27 Jan 2022, 07:31 PM   #69
smtper
Junior Member
 
Join Date: Jan 2022
Posts: 18
Quote:
Originally Posted by Gsptlsnz View Post
Try this...

Code:
/* Puts a count badge on every folder except "ARCHIVE", "SENT", and "TRASH" and shows the number of unread emails */
.v-MailboxSource-badge {
display:inline-block;
font-size:12pt;
color:navy;
background-color:white;
border:2px solid black;
padding-left:3px;
padding-right:3px;
border-radius:4px;
margin-right:-12px!important;
text-shadow:1px 1px 1px #808080 !important;
}
Thank you!

I switched to the dark theme in the new UI (that's slightly less unusable). So I tweaked your changes a bit.

/* Puts a count badge on every folder except "ARCHIVE", "SENT", and "TRASH" and shows the number of unread emails */
.v-MailboxSource-badge {
display:inline-block;
font-size:12pt;
color:white;
background-color:black;
border:2px solid white;
padding-left:3px;
padding-right:3px;
border-radius:4px;
margin-right:-12px!important;

Last edited by smtper : 29 Jan 2022 at 10:56 PM.
smtper is offline   Reply With Quote