A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
MMM-CalendarExt2 - Event Color Fade - Removable?
-
Greetings :)
Been tinkering for a few days now to remove the black color fade from my events.
Been changing a lot of custom.css settings without any luck.
Changing color isn’t the problem but removing the fading effect is. My goal would be to have it with the same opacity as everything else.Some help or tip in the right direction would be awesome.
Here is my settings so far:
.CX2 .period .eventTitle { white-space:normal; } .CX2 .agenda .eventSub { display:none; } .CX2 .daily .fullday .evenTime { display:none; } .CX2 .slot .event { background-color:rgba(0,0,0,0.1); color:white; } .CX2 .slot .slotHeader { background-color:inherit; text-transform:uppercase; font-size:15px; font-family:"Roboto Condensed", Arial, Helvetica, sans-serif; font-weight:400; border-bottom:1px solid #666; line-height:15px; padding-bottom:5px; margin-bottom:10px; color:#999; } .CX2 .today .slotHeader * { color:inherit; } .CX2 .event .fullday { background-color:rgba(0,0,0,0.1); color:white; } .CX2 .slot .slotFooter { display:none; } .CX2 .slot .slotContent { background-color:rgba(0,0,0,0.1); } .CX2 .aktiv { background-color:rgba(0,0,0,0.1); color:white; } .CX2 .mat { background-color:rgba(0,0,0,0.1) color:white; }
- Ellings3n
-
Found the solution:
Adding the following command to my css config fixed it :)
background-image:none;
- Ellings3n