-
Notifications
You must be signed in to change notification settings - Fork 376
add style box-sizing display issues #57
Copy link
Copy link
Open
Description
used jquery-week-calendar to Bootstrap project
Bootstrap has css box-sizing: border-box;
eg:
,:before, *:after {
box-sizing: border-box;
}
But not supported
I changed jquery.weekcalendar.js 860th lines of code:
$calendarContainer.find('.wc-time-slot').height(options.timeslotHeight - 1);
changed
$calendarContainer.find('.wc-time-slot').height(options.timeslotHeight + 0.009);
$calendarContainer.find('.wc-time-header-cell').css({
height: (options.timeslotHeight * options.timeslotsPerHour) - 11,
padding: 5
});
changed
$calendarContainer.find('.wc-time-header-cell').css({
height: (options.timeslotHeight * options.timeslotsPerHour) - 1,
padding: 5
});
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels