Thunderbird 140 esr calendar today highlight
Is there a way to make the “Today” tile stand out more clearly in the calendar month view? The currently selected day is displayed with a light gray background and stands out, but the actual day is only modestly marked by the day number. With many entries in the calendar, it is therefore difficult to recognize. I would therefore like to see a user-selectable background for the current day.
Chosen solution
This can be done with css:
/* today bg colour for multiweek & month */
.calendar-month-day-box-current-month[relation="today"] {
background-color: lightgreen !important;
}
/* today bg colour for week */
.day-column-today .day-column-heading {
background-color: lightgreen !important;
}
Help/Troubleshooting Info, Profile Folder, Open Folder, close TB, create a new folder named chrome, create a new document in chrome with a text editor, name it userChrome.css, Save as type: All files *.*, copy in the above code, change the colour as desired. Double-click toolkit.legacyUserProfileCustomizations.stylesheets to true in Settings/General/Config. editor, restart TB.
video: How to create a css file (Firefox or TB)
Read this answer in context 👍 0All Replies (1)
Chosen Solution
This can be done with css:
/* today bg colour for multiweek & month */
.calendar-month-day-box-current-month[relation="today"] {
background-color: lightgreen !important;
}
/* today bg colour for week */
.day-column-today .day-column-heading {
background-color: lightgreen !important;
}
Help/Troubleshooting Info, Profile Folder, Open Folder, close TB, create a new folder named chrome, create a new document in chrome with a text editor, name it userChrome.css, Save as type: All files *.*, copy in the above code, change the colour as desired. Double-click toolkit.legacyUserProfileCustomizations.stylesheets to true in Settings/General/Config. editor, restart TB.