Add a border to the minimonth calendar
Categories
(Calendar :: Calendar Frontend, enhancement)
Tracking
(thunderbird_esr102 unaffected)
Tracking | Status | |
---|---|---|
thunderbird_esr102 | --- | unaffected |
People
(Reporter: elizabeth, Assigned: elizabeth)
References
(Blocks 1 open bug)
Details
Attachments
(1 file)
When first implemented, backgrounds of the minimonth calendar inside the Calendar context were removed for high contrast OS themes and situations where the OS theme is different from a set Thunderbird theme (light mode or dark mode). We need to use a variant of one of the theme colors to set a background for the calendar. It should not be transparent in these contexts.
The minimonth calendar is used throughout the application in places where a background is definitely needed for each minimonth displayed. It should not be transparent.
Assignee | ||
Comment 1•6 months ago
|
||
Inside calendar/base/themes/common/widgets/minimonth.css:
:root[systemcolors] calendar-minimonth {
/* TODO: This should not be transparent */
--mmMainBackground: transparent;
}
:root[lwt-tree]:not([lwt-tree-brighttext]) calendar-minimonth {
--mmMainColor: var(--sidebar-text-color, FieldText);
/* TODO: This should not be transparent */
--mmMainBackground: transparent;
}
Assignee | ||
Updated•6 months ago
|
Assignee | ||
Updated•6 months ago
|
Assignee | ||
Comment 2•5 months ago
•
|
||
- Distinguish minimonth calendar from its container and other minimonth calendars
- Minimonth calendar should have a border in high contrast contexts
- Evaluate if a background is needed in high contrast contexts (moved to bug 1811361)
Borders and backgrounds can distinguish between different calendars and make clear the boundary of a calendar versus its container's background.
The current designs include a border, but this border was not implemented in the initial UI updates to the minimonth calendar in bug 1799934. The border needs to be implemented.
Assignee | ||
Comment 3•4 months ago
|
||
Updated•4 months ago
|
Updated•4 months ago
|
Updated•4 months ago
|
Updated•4 months ago
|
Assignee | ||
Updated•4 months ago
|
Assignee | ||
Updated•4 months ago
|
Assignee | ||
Updated•4 months ago
|
Updated•4 months ago
|
Pushed by alessandro@thunderbird.net:
https://hg.mozilla.org/comm-central/rev/84cb958ae2cc
Add border to minimonth calendar. =#thunderbird-front-end-reviewers r=Paenglab,aleca
Description
•