Thunderbird 78.2.2 Calendar "TODAY" highlight
The highlight for "Today" is a light bluish color that does not stand out to me - I'd like to change the highlight to something a bit more obvious - a deeper blue, or even more distinct by highlighting the entire "day" fram rather than just the header.
Have a look at my calendar image: see if you can easily find "today" (hint, Sep 13).
Chosen solution
Try this css code (see picture):
.calendar-month-day-box-current-month[selected="true"] { background-color: orange !important; } .calendar-month-day-box-current-month[relation="today"] { background-color: red !important; }
Toggle toolkit.legacyUserProfileCustomizations.stylesheets to true in Config. editor.
Ler a resposta no contexto 👍 1All Replies (3)
As a postscript - using the "color blind accessibility" setting makes it even worse since that removes all color.
Chosen Solution
Try this css code (see picture):
.calendar-month-day-box-current-month[selected="true"] { background-color: orange !important; } .calendar-month-day-box-current-month[relation="today"] { background-color: red !important; }
Toggle toolkit.legacyUserProfileCustomizations.stylesheets to true in Config. editor.
That gets the job done, thank you!