Mozilla サポートの検索

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.

詳しく学ぶ

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

Thunderbird 78.2.2 Calendar "TODAY" highlight

  • 3 件の返信
  • 1 人がこの問題に困っています
  • 1 回表示
  • 最後の返信者: 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).
添付されたスクリーンショット

選ばれた解決策

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.

この回答をすべて読む 👍 1

すべての返信 (3)

more options

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

more options

選ばれた解決策

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!