My favorites | Sign in
Project Home Issues
New issue   Search
for
  Advanced search   Search tips   Subscriptions
Issue 1397: Adding full/part day css
1 person starred this issue and may be notified of changes. Back to list
Status:  Duplicate
Merged:  issue 203
Owner:  ----
Closed:  Aug 2013


Sign in to add a comment
 
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
Sign in to add a comment

Powered by Google Project Hosting