eouia / MMM-CalendarExt

Calendar views for MagicMirror
MIT License
55 stars 18 forks source link

Display start time for Event in weeks or month Mode #27

Closed GerPrimus closed 5 years ago

GerPrimus commented 6 years ago

Hello everyone, i´m looking for a way do display the start time for an event in weeks-mode. i´ve be looking through "custom.css" but only could find:

.CALEXT .weeks .fulldayevent .eventTime, .CALEXT .month .fulldayevent .eventTime, .CALEXT .daily .fulldayevent .eventTime { display:none; }

is this the right one? am i missing something?

Thanks, F

eouia commented 6 years ago

@GerPrimus Here you should modify.

.CALEXT .tableStyle .eventLocation,
.CALEXT .tableStyle .eventTime {
    display:none;
}
GerPrimus commented 6 years ago

@eouia Wow, thanks for the quick awnser! Found it, but is there a way to show only the start time, not location, etc? im sorry, my CSS is not the best... :-D

eouia commented 6 years ago
.CALEXT .tableStyle .eventLocation {
     display:none;
}
.CALEXT .tableStyle .eventTime {
    display:block;
}
GerPrimus commented 6 years ago

Thank you! Thats it. 👍

sworrs commented 5 years ago

Hi, I used the change you wrote in custom.css but it did change anything. Is there anything I have to do except change .CALEXT .tableStyle .eventLocation, .CALEXT .tableStyle .eventTime { display:none; } to .CALEXT .tableStyle .eventLocation { display:none; } .CALEXT .tableStyle .eventTime { display:block; }

Thanks in advance

sworrs commented 5 years ago

Sorry, I found the problem. You depricated the custom.css. After editing the MMM-CalendarExt.css it worked. Thank you

eouia commented 5 years ago

Nice to you. I’ll close this issue.