Buttons on calendar invitation bar are unreadable in Dark Mode
Categories
(Thunderbird :: Theme, defect)
Tracking
(Not tracked)
People
(Reporter: justdave, Unassigned)
Details
Attachments
(2 files)
Thunderbird 114.0b5
Mac OS Ventura 13.3
Steps to reproduce:
- Receive an email with a calendar invitation
- open the email
- Observe purple bar at top of email
Actual Results
See attached screenshot
Desired Results
I should be able to see what the buttons say on them.
Reporter | ||
Comment 1•2 years ago
|
||
For comparison, here's that bar in light mode.
Looks like the text changes color properly but the button backgrounds don't.
Reporter | ||
Comment 2•2 years ago
|
||
The background color of the buttons is set with --imip-button-background
This is defined here:
calendar/base/themes/common/calendar.css:138: --imip-button-background: var(--layout-background-1);
--layout-background-1 is here:
mail/themes/shared/mail/layout.css:28: --layout-background-1: var(--color-gray-05);
:host,
:root {
--layout-background-0: var(--color-white);
--layout-background-1: var(--color-gray-05);
mail/themes/shared/mail/layout.css:47: --layout-background-1: var(--color-gray-80);
@media (prefers-color-scheme: dark) {
:host,
:root {
--layout-background-0: var(--color-gray-90);
--layout-background-1: var(--color-gray-80);
mail/themes/shared/mail/layout.css:67: --layout-background-1: -moz-Dialog;
@media (prefers-contrast) {
:host,
:root:not(:-moz-lwtheme) {
--layout-background-0: Window;
--layout-background-1: -moz-Dialog;
So going by that, we should be getting a dark gray for those buttons already... but from the screenshots, obviously I'm not....
Updated•2 years ago
|
Comment 3•2 years ago
|
||
This was fixed in bug 1832999 which wasn't uplifted to 114. The next 115 beta should fix this.
Description
•