To make the calendar more readable (like the google version) i added the code below in the snippet therunder. Now we can create separate css styles for fullday and partial day events.
(event.allDay ? ' fc-event-allday ' : ' fc-event-partday ') +
into
if (url) {
html += "<a href='" + htmlEscape(url) + "'";
}else{
html += "<div";
}
html +=
" class='" + classes.join(' ') + (event.allDay ? ' fc-event-allday ' : ' fc-event-partday ') + "'" +
" style='position:absolute;z-index:8;left:"+left+"px;" + skinCss + "'" +
">" +
"<div" +
" class='fc-event-inner fc-event-skin'" +
(skinCss ? " style='" + skinCss + "'" : '') +
">";
if (!event.allDay && seg.isStart) {
Mergedinto: 203