I have a userChrome.css to change the color of unread messages in the "list of messages" pane to orange:
/* Messagepane text */
treechildren::-moz-tree-cell-text(new) {
… (читать ещё)
I have a userChrome.css to change the color of unread messages in the "list of messages" pane to orange:
/* Messagepane text */
treechildren::-moz-tree-cell-text(new) {
color: #34ebdc !important;
font-weight: normal;
}
treechildren::-moz-tree-cell-text(unread) {
color: #34c6eb !important;
font-weight: normal !important;
}
This worked fine in TB 102 and prior. When I upgraded to TB 115 this no longer has any effect. I'm not sure if the userChrome.css is being ignored or if the styling elements in userChrome.css have changed.
I'm on Windows 11 and userChrome.css is located in 2 places:
C:\Users\$username\AppData\Roaming\Thunderbird\Profiles\$profile.default\chrome\userChrome.css
C:\Users\$username\Application Data\Thunderbird\Profiles\$profile.default\chrome\userChrome.css