' +
'
' +
diff --git a/src/common/TimeGrid.js b/src/common/TimeGrid.js
index 7dd23f1..e71fa23 100644
--- a/src/common/TimeGrid.js
+++ b/src/common/TimeGrid.js
@@ -82,7 +82,7 @@ $.extend(TimeGrid.prototype, {
minutes = slotDate.minutes();
axisHtml =
- '
' +
((!slotNormal || !minutes) ? // if irregular slot duration, or on the hour, then display the time
'' + // for matchCellWidths
htmlEscape(calendar.formatDate(slotDate, view.opt('axisFormat'))) +
diff --git a/src/common/View.js b/src/common/View.js
index c3c1921..df74b25 100644
--- a/src/common/View.js
+++ b/src/common/View.js
@@ -30,8 +30,6 @@ View.prototype = {
widgetContentClass: null,
highlightStateClass: null,
- dayRowThemeClass: null, // sets the theme className applied to DayGrid rows (none by default)
-
// document handlers, bound to `this` object
documentMousedownProxy: null,
documentDragStartProxy: null,
diff --git a/src/common/common.css b/src/common/common.css
index 45da855..a27c348 100644
--- a/src/common/common.css
+++ b/src/common/common.css
@@ -508,3 +508,39 @@ tr:first-child > td > .fc-day-grid-event {
left: -3px;
cursor: w-resize;
}
+
+
+/* Event Limiting
+--------------------------------------------------------------------------------------------------*/
+
+/* "more" link that represents hidden events */
+
+a.fc-more {
+ margin: 1px 2px;
+ font-size: .85em;
+ cursor: pointer;
+ text-decoration: none;
+}
+
+a.fc-more:hover {
+ text-decoration: underline;
+}
+
+.fc-limited { /* rows and cells that are hidden because of a "more" link */
+ display: none;
+}
+
+/* popover that appears when "more" link is clicked */
+
+.fc-day-grid .fc-row {
+ z-index: 1; /* make the "more" popover one higher than this */
+}
+
+.fc-more-popover {
+ z-index: 2;
+ width: 220px;
+}
+
+.fc-more-popover .fc-event-container {
+ padding: 10px;
+}
|