Issue 1397: Adding full/part day css
Status:  Duplicate
Merged:  issue 203
Owner: ----
Closed:  Aug 2013
Reported by voort...@gmail.com, May 7, 2012
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) {
Aug 18, 2013
Project Member #1 adamrs...@gmail.com
(No comment was entered for this change.)
Status: Duplicate
Mergedinto: 203