MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. Jk1
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    J Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 6
    • Groups 0

    Jk1

    @Jk1

    0
    Reputation
    1
    Profile views
    6
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    Jk1 Unfollow Follow
    • RE: MMM-CalendarExt3 full color for timed events

      @sdetweil YES! That helped me find the missing piece.

      I needed this to set the header color

      background-color: var(--calendarColor);
      

      Now I just need to figure out how to set all the text to black.

      Thanks for your help! Very much appreciated.

      a5e1d430-fcb9-4e66-9529-d585e052aca9-image.jpeg

      posted in Custom CSS
      J
      Jk1
    • RE: MMM-CalendarExt3 full color for timed events

      @sdetweil right the Juneteenth is a full day event (holiday) so it has a colored background. But your timed event on the 4th is just colored text. I am able to make it do that too.

      BUT what I want is the timed event, “Grandpa sam…” to also have a colored background like “Juneteenth” ( but of course a different color since it’s not a holiday).

      posted in Custom CSS
      J
      Jk1
    • RE: MMM-CalendarExt3 full color for timed events

      @sdetweil i’m probably missing something…

      I removed all of the other .CX3 entries and left this.

      .normal,
      .dimmed,
      header,
      body {
        color: #fff;
      }
      
      .CX3 .headline {
        color: var(--calendarColor);
      }
      

      and this is what it shows.

      d1d5b2e8-6331-4582-a6d2-c0d75d887c59-image.jpeg

      posted in Custom CSS
      J
      Jk1
    • RE: MMM-CalendarExt3 full color for timed events

      @sdetweil That didn’t work either. Here’s my custom.css file… maybe something sticks out to you?

      I appreciate the help.

      custom.css

      .normal,
      .dimmed,
      header,
      body {
        color: #fff;
      }
      
      
      .CX3 .headline {
        color: var(--calendarColor);
      }
      
      /* set text color to match color for the calendar list */
      .CX3 .event:not(.fullday) .headline .title {
        color: var(--calendarColor);
      }
      
      
      /* Remove the colored dot marker completely in CalendarExt3 */
      .CX3 .event.singleday .headline:not(.useSymbol)::before, 
      .CX3 .event.singleday .headline.useSymbol .symbol.noSymbol::before { 
        display: none !important; 
      }
      
      /* Optional: Clean up spacing if the headline text looks cut off */
      .CX3 .event .headline {
        padding-left: 0px !important;
        margin-left: 0px !important;
      }
      
      posted in Custom CSS
      J
      Jk1
    • RE: MMM-CalendarExt3 full color for timed events

      @sdetweil Yeah, I saw that before but it only colors the text. I want to have it color the whole line like the full-day event.

      e720c4bb-5a12-496c-b5de-11b6ccc69234-image.jpeg

      posted in Custom CSS
      J
      Jk1
    • MMM-CalendarExt3 full color for timed events

      Hi. I have my MagicMirror pretty much set up the way I want except for one little thing…

      I would like the timed events to have the same block coloring as the full day events. Right now, it’s just the text that’s colored. Is there a way to do this?

      I eventually will also change the color based on the keyword in the title which I already know how to do for the text. I’m assuming it’ll be the same for the full entry coloring?

      cd5493e9-8b78-4d20-bccf-62fbf5427f1a-image.jpeg

      posted in Custom CSS
      J
      Jk1