Created
July 21, 2024 09:33
-
-
Save dugite-code/7a17e8a3bc40a2e7b8b1564fc9ae637b to your computer and use it in GitHub Desktop.
Thunderbird userChrome.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Tested on Thunderbird 115.12.2 (64-bit) */ | |
/* Enable the preference toolkit.legacyUserProfileCustomizations.stylesheets in Settings -> Config Editor */ | |
/* Create chrome folder in %APPDATA%\Roaming\Thunderbird\Profiles\[xxxxxxxx].default-release\ */ | |
/* Create userChrome.css with below contents */ | |
/* Change background color of unread messages to a light green */ | |
#threadTree tbody [data-properties~="unread"] { | |
background-color: #26655a !important; | |
} | |
/* Highlight Taged emails with background color rather than text*/ | |
tr[is="thread-row"][data-properties~="tagged"] { | |
background-color: | |
color-mix(in srgb,var(--tag-color),#000 55%); | |
color: var(--tag-contrast-color) !important; | |
font-weight: bolder; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment