vkurko / calendar

Full-sized drag & drop JavaScript event calendar with resource & timeline views
https://vkurko.github.io/calendar/
MIT License
1.37k stars 119 forks source link

Fill width for resourceTimeline view #385

Open LMarcinkowski opened 5 days ago

LMarcinkowski commented 5 days ago

Zrzut ekranu 2024-11-25 o 22 35 09

Is it possible to make this view responsive?

vkurko commented 3 days ago

For resourceTimelineMonth only:

.ec-timeline.ec-resource-month-view .ec-time, .ec-timeline.ec-resource-month-view .ec-line {
    width: 150px;
    flex-grow: 1;
}
.ec-timeline.ec-resource-month-view .ec-main {
    flex-grow: 1;
}
.ec-timeline.ec-resource-month-view .ec-header .ec-day {
    flex-direction: row;
}

You can notice that in this case the 150px value works as a minimum column width.