MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    All White MMM-CalendarExt3 & Agenda

    Scheduled Pinned Locked Moved Unsolved Troubleshooting
    2 Posts 2 Posters 256 Views 2 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • D Offline
      DarkHelmet1
      last edited by

      I can’t seem to make the color formatting work for the dates shown on MMM-CalendarExt3 and MMM-CalendarExt3Agenda to make all of my dates be white in lieu of ‘gold’, ‘blue’, and ‘red’. I tried the changes below in my custom.css, but it has not worked no matter how many times I have messed with it. Any help would be greatly appreciated.

      .CX3A .cellheader .cellHeaderMain .cellDate {
      color: white;
      }

      M 1 Reply Last reply Reply Quote 0
      • M Offline
        MMRIZE @DarkHelmet1
        last edited by MMRIZE

        @DarkHelmet1
        Gold is dedicated for today or current moment.
        Blue(dodgerblue) is for weekend_1
        Red(crimson) is for weekend_2

        You can find those colors in module’s css.
        So; you can override like this;

        .CX3A .cell.today .cellDay {
          color: white; /* It was var(--todayColor) */
        }
        
        .CX3A .cell.weekend_1 .cellDay {
            color: white; /* It was dodgerblue */
        }
        
        .CX3A .cell.weekend_2 .cellDay 
          color: white; /* It was crimson */
        }
        

        The reason why your selector .CX3A .cellheader .cellHeaderMain .cellDate didn’t work, is this; .cellHeader is right, not .cellheader.

        1 Reply Last reply Reply Quote 0
        • 1 / 1
        • First post
          Last post
        Enjoying MagicMirror? Please consider a donation!
        MagicMirror created by Michael Teeuw.
        Forum managed by Sam, technical setup by Karsten.
        This forum is using NodeBB as its core | Contributors
        Contact | Privacy Policy