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.

    MMM-CalendarExt3 How can I increase my cell height?

    Scheduled Pinned Locked Moved Custom CSS
    3 Posts 2 Posters 1.3k 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.
    • R Offline
      Ragged4310
      last edited by

      Hello,

      I would like to increase the cell height of my calendar, mainly when it’s in full-screen mode. I’ve tried messing with the cell-body, cell height, and tried getting chatGPT to help me but I cannot figure out how to do it.

      Here’s my CSS:

      /* Global Settings */
      body {
          margin: 0;
          height: 100%;
          width: 100%;
          background: rgb(0 0 0 / 100%);
          color: white;
        }
        
        .dimmed,
        .normal,
        .bright {
          color: white;
        }
        
        /* Region Definitions */
        .region.top.right,
        .region.bottom.right {
          position: absolute;
          width: 79%;
        }
        
        .region.top.left,
        .region.bottom.left,
        .region.middle.center {
          position: absolute;
          width: 20.5%;
        }
        
        .region.fullscreen.below {
          position: absolute;
          width: 24.25%;
        }
        
        /* Clock Options */
        .clock {
          float: right;
          text-align: right;
        }
        
        .clock .time {
          font-size: 90px;
        }
        
        /* MMM-GoogleTrafficTimes - Horizontal Layout */
        .MMM-GoogleTrafficTimes {
          position: absolute; /* Prevents it from affecting layout */
          top: 50px; /* Adjust this value to align with MMM-CoinMarketCap */
          left: 50%;
          transform: translateX(-50%); /* Centers horizontally */
          display: flex;
          justify-content: center; /* Center horizontally */
          align-items: center;
          flex-wrap: wrap;
          margin: 0; /* Remove any margins */
          padding: 0;
          width: auto; /* Prevents it from taking unnecessary width */
          height: auto; /* Ensures no vertical overflow */
          z-index: 10; /* Makes it appear above other modules if needed */
        }
        
        .MMM-GoogleTrafficTimes .destination {
          margin: 0 10px;
          text-align: center;
          font-size: 16px;
        }
        
        .MMM-GoogleTrafficTimes .destination .label {
          font-weight: bold;
          font-size: 14px;
        }
        
        /* MMM-CoinMarketCap Adjustments */
        .MMM-CoinMarketCap {
          position: absolute; /* Prevents it from being pushed */
          top: 50px; /* Matches the vertical position of MMM-GoogleTrafficTimes */
          right: 0;
          padding: 0;
          margin: 0;
        }
        
        .MMM-CoinMarketCap .graphWithChanges {
          display: inline-block; /* Ensures proper alignment */
        }
        
        /* MMM-CalendarExt3 Options */
        .CX3 {
          --celllinecolor: #333;
          --cellbgcolor: rgba(0, 0, 0, 0.2);
          --cellheaderheight: 25px;
          --cellfooterheight: 2px;
          --defaultcolor: #FFF;
          --eventheight: calc(var(--fontsize) + 4px);
          --totalheight: calc(var(--eventheight) * var(--maxeventlines));
          font-size: var(--fontsize);
          color: var(--defaultcolor);
          line-height: calc(var(--eventheight));
        }
        
        .MMM-CalendarExt3 {
          margin-top: 100px;
          height: calc(100% - 100px);
        }
        
        .CX3 .cellContainer {
          display: grid;
          grid-template-columns: repeat(7, 1fr);
          grid-template-rows: repeat(5, var(--cellheight));
          gap: 2px;
        }
        
        .CX3 .cell {
          height: var(--cellheight);
          overflow: hidden;
        }
        
        .CX3 .weekGridRow {
          margin-bottom: 0;
        }
        
        .CX3 .event {
          height: var(--eventheight);
        }
        
        .CX3 .event .headline {
          display: flex;
          align-items: center;
        }
        
        .CX3 .event .symbol {
          margin-right: 4px;
        }
        
        .CX3 .event .time {
          margin-right: 4px;
        }
        
        .CX3 .cellHeader {
          height: var(--cellheaderheight);
          display: flex;
          justify-content: space-between;
          align-items: center;
        }
        
        .CX3 .cellHeader .cellDate {
          font-weight: bold;
        }
        
        .CX3 .cellFooter {
          height: var(--cellfooterheight);
        }
        
        .CX3 .weekend {
          background-color: rgba(255, 255, 255, 0.1);
        }
        
        .CX3 .today {
          background-color: rgba(255, 255, 255, 0.2);
        }
        
        .CX3 .passed {
          opacity: 0.6;
        }
        
        .CX3 .multiday {
          border-radius: 4px;
        }
        
        .CX3 .fullday {
          background-color: rgba(255, 255, 255, 0.1);
          border-radius: 4px;
        }
        
        .CX3 .legends {
          display: flex;
          justify-content: flex-end;
          margin-top: 8px;
        }
        
        .CX3 .legends .legend {
          margin-left: 8px;
          display: flex;
          align-items: center;
        }
        
        .CX3 .legends .legend .symbol {
          margin-right: 4px;
        }
        
        /* MMM-OpenWeatherForecast */
        .MMM-OpenWeatherForecast {
          display: flex;
          flex-direction: column;
          align-items: center;
          text-align: center;
        }
        
        .MMM-OpenWeatherForecast .weather-icon {
          margin: 0 auto;
        }
        
        /* MMM-Todoist Centering */
        .MMM-Todoist {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          text-align: center;
          margin: 0 auto;
          width: 100%;
          max-width: 95%;
          overflow: hidden;
          box-sizing: border-box;
        }
      

      Here is my fullscreen view:
      alt text

      Here is my view when it is not full screen:
      alt text

      I would like if the full screen view had the same gap as it does when its not in full screen, just have the module / cells stretched up so more events can be displayed.

      S 1 Reply Last reply Reply Quote 0
      • S Offline
        sdetweil @Ragged4310
        last edited by sdetweil

        @Ragged4310 you didn’t change event-height or total height

        You could use the css media screen value to get the screen size to adjust
        From
        https://stackoverflow.com/questions/35393429/how-to-get-current-screen-width-in-css

        IMG_0514.png

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        R 1 Reply Last reply Reply Quote 0
        • R Offline
          Ragged4310 @sdetweil
          last edited by sdetweil

          @sdetweil said in MMM-CalendarExt3 How can I increase my cell height?:

          @Ragged4310 you didn’t change event-height or total height

          You could use the css media screen value to get the screen size to adjust

          Thanks for the advice. I solved my problem when I tweaked my display by adding more event lines and a legend so I didn’t end up needing to mess with the CSS.

          1 Reply Last reply Reply Quote 0

          Hello! It looks like you're interested in this conversation, but you don't have an account yet.

          Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

          With your input, this post could be even better 💗

          Register Login
          • 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