Read the statement by Michael Teeuw here.
MMM-CalendarExt
-
@sk4018
I think you can useweeks
view insteaddaily
view. But starting weekday depends on which locale are you using. -
@sean
Thx a lot
It works
Greetz -
I just updated this module, and it stopped working. I even tried resting to the simple config from the readme, and nothing is coming up. Where can I see the logs for it to try and fix this?
-
@redink
stop pm2 mm
thennpm start dev
in your MM directory root. -
@Sean
Sorry to ask again
Is there any possibility to increase a little bit the size of the letters?
I mean the ones showing in the calendar as a “task”?
thanks -
@vauxdvihl
You can adjust anything in CSS. (It could not be so easy but really funny)
Or tell me which letters to be increased. -
@Sean
I want to play around with the following values
Increase / Decrease “FINAL: SEA7 - OAK 6”
Increase / Decrease “Time (04:05-07:05)”I am not a programmer :-)
Thanks a lot
-
@vauxdvihl
Add this into yourMagicMirror/css/custom.css
file..CALEXT .eventTime { font-size: 120%; line-height:110%; } .CALEXT .eventContent { font-size: 140%; line-height:110%; }
You can adjust these values with relative
%
or absolutepx
(Or many other various things) -
@Sean
Thanks a lot
In custom css file a have the following:div.CALEXT .event .symbol { order:1; display:block; flex-basis: 30px; // Modify this text-align:center; min-width: 50px; // Modify this font-size: 150%; // Add this } div.CALEXT .events .symbol.emoji { font-size: 150%; //Adjust this as your wish. you can use px or % } div.CALEXT .events .symbol.font-awesome { font-size: 250%; //Adjust this as your wish. you can use px or % } div.CALEXT .tableStyle .eventTime { display:block; } .CALEXT .eventTime { font-size: 80%; line-height:110%; } .CALEXT .eventContent { font-size: 250%; line-height:110%; }
The adjustment of time works fine.
But not of the initial content.Sorry
But can you please help againThanks a lot
-
@vauxdvihl
Because your other CSS rules might override that rule. (Simpler rule name might have lower priority). See this. https://developer.mozilla.org/en-US/docs/Web/CSS/SpecificityAnyway, you can use like this;
div.CALEXT div.slot div.eventsBoard div.eventContainer div.eventContent { font-size: 250%; line-height:110%; }
(For more exact rule specificity, I should know whole CSS of your MM, but I believe above code enough)