Is there a way to remove the padding from an event when the calendar is in 'timegridview'? Users are taking advantage of the empty space created, allowing them to bypass a blocked time slot.
I currently have it set so that clicking on an event displays its details.
For instance, if I block off the 11am to noon time slot for 'Lunch', users are able to click in the empty space and bring up the scheduling dialog.
https://i.sstatic.net/uFGxg.png
I've tried using this CSS snippet to address the spacing on the left and right, but I'm struggling with the top and bottom:
.fc-timegrid-event-harness-inset {
left: -8% !important;
right: -8% !important;
}