This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

Etsi tuesta

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Lue lisää

Thunderbird 78.2.2 Calendar "TODAY" highlight

  • 3 vastausta
  • 1 henkilöllä on sama ongelma
  • 1 näyttö
  • Viimeisin kirjoittaja GWild55

more options

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).

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).
Liitetyt ruutukaappaukset

Valittu ratkaisu

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.

Lue tämä vastaus kontekstissaan 👍 1

Kaikki vastaukset (3)

more options

As a postscript - using the "color blind accessibility" setting makes it even worse since that removes all color.

more options

Valittu ratkaisu

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.

more options

That gets the job done, thank you!