A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Calendar - Past Events are a different color/shade
-
I’m having an issue where past events show as a different color. For example, the attached image I included shows the US Holidays calendar with 2 different “greens”. It seems consistent that past events are a dulled out color of the current/future events. But I would like them all to be the same color.
Calendars and colors are set within the default Calendars module and CalendarEXT3 is used for display.
Thank you
-
@roysim11 See the css in the calendar module. If this is Ext3 you’ll find this:
.CX3 .event.passed { filter: brightness(0.8) grayscale(0.5); opacity:0.5; }
Then for example to this:
.CX3 .event.passed { /* filter: brightness(0.8) grayscale(0.5); opacity:0.5; */ }
Cheers,
Chris -
-
@chrisfr1976 Nailed it! Thank you