Skip to content

add style box-sizing display issues #57

@dvb3688

Description

@dvb3688

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
});

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions