Skip to content

Instantly share code, notes, and snippets.

@kleuter
Created March 5, 2024 13:17
Show Gist options
  • Save kleuter/90154c2ca6b52c4da6ddc421ba32b4bb to your computer and use it in GitHub Desktop.
Save kleuter/90154c2ca6b52c4da6ddc421ba32b4bb to your computer and use it in GitHub Desktop.
/* This code reverts Mozilla Thunderbird unread badges to numbers in parentheses like it was before SuperNova 115 */
.name {
flex: inherit !important;
margin-right: 4px !important;
}
.folder-count-badge {
color: inherit !important;
font-size: inherit !important;
padding: 0 !important;
min-width: 0 !important;
}
.folder-count-badge:before {
content: '(';
}
.folder-count-badge:after {
content: ')';
}
.unread > .container > .unread-count
{
background-color: inherit !important;
}
@kleuter
Copy link
Author

kleuter commented Mar 5, 2024

Result:

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment