fullcalendar 3.10.1 → 3.10.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,4 +1,10 @@
1
1
 
2
+ v3.10.2 (2020-05-13)
3
+ --------------------
4
+
5
+ Compatibilty with jQuery 3.5.0 (#5391, #5348)
6
+
7
+
2
8
  v3.10.1 (2019-08-10)
3
9
  --------------------
4
10
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * FullCalendar v3.10.1
2
+ * FullCalendar v3.10.2
3
3
  * Docs & License: https://fullcalendar.io/
4
4
  * (c) 2019 Adam Shaw
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * FullCalendar v3.10.1
2
+ * FullCalendar v3.10.2
3
3
  * Docs & License: https://fullcalendar.io/
4
4
  * (c) 2019 Adam Shaw
5
5
  */
@@ -339,7 +339,7 @@ function getIsLeftRtlScrollbars() {
339
339
  return _isLeftRtlScrollbars;
340
340
  }
341
341
  function computeIsLeftRtlScrollbars() {
342
- var el = $('<div><div/></div>')
342
+ var el = $('<div><div></div></div>')
343
343
  .css({
344
344
  position: 'absolute',
345
345
  top: -1000,
@@ -805,7 +805,7 @@ function htmlEscape(s) {
805
805
  .replace(/>/g, '&gt;')
806
806
  .replace(/'/g, '&#039;')
807
807
  .replace(/"/g, '&quot;')
808
- .replace(/\n/g, '<br />');
808
+ .replace(/\n/g, '<br>');
809
809
  }
810
810
  exports.htmlEscape = htmlEscape;
811
811
  function stripHtmlEntities(text) {
@@ -1976,7 +1976,7 @@ function isHitPropsWithin(subHit, superHit) {
1976
1976
  /***/ (function(module, exports, __webpack_require__) {
1977
1977
 
1978
1978
  Object.defineProperty(exports, "__esModule", { value: true });
1979
- exports.version = '3.10.1';
1979
+ exports.version = '3.10.2';
1980
1980
  // When introducing internal API incompatibilities (where fullcalendar plugins would break),
1981
1981
  // the minor version of the calendar should be upped (ex: 2.7.2 -> 2.8.0)
1982
1982
  // and the below integer should be incremented.
@@ -7105,7 +7105,7 @@ var FillRenderer = /** @class */ (function () {
7105
7105
  return '<' + this.fillSegTag +
7106
7106
  (classes.length ? ' class="' + classes.join(' ') + '"' : '') +
7107
7107
  (css ? ' style="' + css + '"' : '') +
7108
- ' />';
7108
+ '></' + this.fillSegTag + '>';
7109
7109
  };
7110
7110
  // Should return wrapping DOM structure
7111
7111
  FillRenderer.prototype.attachSegEls = function (type, segs) {
@@ -7463,7 +7463,7 @@ var DayGrid = /** @class */ (function (_super) {
7463
7463
  var weekCalcFirstDoW;
7464
7464
  if (!isDayNumberVisible && !this.cellWeekNumbersVisible) {
7465
7465
  // no numbers in day cell (week number must be along the side)
7466
- return '<td/>'; // will create an empty space above events :(
7466
+ return '<td></td>'; // will create an empty space above events :(
7467
7467
  }
7468
7468
  classes = this.getDayClasses(date);
7469
7469
  classes.unshift('fc-day-top');
@@ -7673,7 +7673,7 @@ var DayGrid = /** @class */ (function (_super) {
7673
7673
  if (segsBelow.length) {
7674
7674
  td = cellMatrix[levelLimit - 1][col];
7675
7675
  moreLink = _this.renderMoreLink(row, col, segsBelow);
7676
- moreWrap = $('<div/>').append(moreLink);
7676
+ moreWrap = $('<div>').append(moreLink);
7677
7677
  td.append(moreWrap);
7678
7678
  moreNodes.push(moreWrap[0]);
7679
7679
  }
@@ -7704,11 +7704,11 @@ var DayGrid = /** @class */ (function (_super) {
7704
7704
  segMoreNodes = [];
7705
7705
  // make a replacement <td> for each column the segment occupies. will be one for each colspan
7706
7706
  for (j = 0; j < colSegsBelow.length; j++) {
7707
- moreTd = $('<td class="fc-more-cell"/>').attr('rowspan', rowspan);
7707
+ moreTd = $('<td class="fc-more-cell">').attr('rowspan', rowspan);
7708
7708
  segsBelow = colSegsBelow[j];
7709
7709
  moreLink = this.renderMoreLink(row, seg.leftCol + j, [seg].concat(segsBelow) // count seg as hidden too
7710
7710
  );
7711
- moreWrap = $('<div/>').append(moreLink);
7711
+ moreWrap = $('<div>').append(moreLink);
7712
7712
  moreTd.append(moreWrap);
7713
7713
  segMoreNodes.push(moreTd[0]);
7714
7714
  moreNodes.push(moreTd[0]);
@@ -7740,7 +7740,7 @@ var DayGrid = /** @class */ (function (_super) {
7740
7740
  DayGrid.prototype.renderMoreLink = function (row, col, hiddenSegs) {
7741
7741
  var _this = this;
7742
7742
  var view = this.view;
7743
- return $('<a class="fc-more"/>')
7743
+ return $('<a class="fc-more">')
7744
7744
  .text(this.getMoreLinkText(hiddenSegs.length))
7745
7745
  .on('click', function (ev) {
7746
7746
  var clickOption = _this.opt('eventLimitClick');
@@ -7832,7 +7832,7 @@ var DayGrid = /** @class */ (function (_super) {
7832
7832
  '<span class="fc-title">' +
7833
7833
  util_1.htmlEscape(title) +
7834
7834
  '</span>' +
7835
- '<div class="fc-clear"/>' +
7835
+ '<div class="fc-clear"></div>' +
7836
7836
  '</div>' +
7837
7837
  '<div class="fc-body ' + theme.getClass('popoverContent') + '">' +
7838
7838
  '<div class="fc-event-container"></div>' +
@@ -7970,7 +7970,7 @@ var BasicView = /** @class */ (function (_super) {
7970
7970
  this.el.addClass('fc-basic-view').html(this.renderSkeletonHtml());
7971
7971
  this.scroller.render();
7972
7972
  dayGridContainerEl = this.scroller.el.addClass('fc-day-grid-container');
7973
- dayGridEl = $('<div class="fc-day-grid" />').appendTo(dayGridContainerEl);
7973
+ dayGridEl = $('<div class="fc-day-grid">').appendTo(dayGridContainerEl);
7974
7974
  this.el.find('.fc-body > tr > td').append(dayGridContainerEl);
7975
7975
  this.dayGrid.headContainerEl = this.el.find('.fc-head-container');
7976
7976
  this.dayGrid.setElement(dayGridEl);
@@ -9674,7 +9674,7 @@ var Popover = /** @class */ (function () {
9674
9674
  Popover.prototype.render = function () {
9675
9675
  var _this = this;
9676
9676
  var options = this.options;
9677
- this.el = $('<div class="fc-popover"/>')
9677
+ this.el = $('<div class="fc-popover">')
9678
9678
  .addClass(options.className || '')
9679
9679
  .css({
9680
9680
  // position initially to the top left to avoid creating scrollbars
@@ -10853,7 +10853,7 @@ var Calendar = /** @class */ (function () {
10853
10853
  el.toggleClass('fc-ltr', !opts.isRTL);
10854
10854
  el.toggleClass('fc-rtl', opts.isRTL);
10855
10855
  });
10856
- this.contentEl = $("<div class='fc-view-container'/>").prependTo(el);
10856
+ this.contentEl = $("<div class='fc-view-container'>").prependTo(el);
10857
10857
  this.initToolbars();
10858
10858
  this.renderHeader();
10859
10859
  this.renderFooter();
@@ -10922,7 +10922,7 @@ var Calendar = /** @class */ (function () {
10922
10922
  (this.viewsByType[viewType] = this.instantiateView(viewType));
10923
10923
  this.bindViewHandlers(newView);
10924
10924
  newView.startBatchRender(); // so that setElement+setDate rendering are joined
10925
- newView.setElement($("<div class='fc-view fc-" + viewType + "-view' />").appendTo(this.contentEl));
10925
+ newView.setElement($("<div class='fc-view fc-" + viewType + "-view'>").appendTo(this.contentEl));
10926
10926
  this.toolbarsManager.proxyCall('activateButton', viewType);
10927
10927
  }
10928
10928
  if (this.view) {
@@ -12487,7 +12487,7 @@ var AgendaView = /** @class */ (function (_super) {
12487
12487
  this.el.addClass('fc-agenda-view').html(this.renderSkeletonHtml());
12488
12488
  this.scroller.render();
12489
12489
  timeGridWrapEl = this.scroller.el.addClass('fc-time-grid-container');
12490
- timeGridEl = $('<div class="fc-time-grid" />').appendTo(timeGridWrapEl);
12490
+ timeGridEl = $('<div class="fc-time-grid">').appendTo(timeGridWrapEl);
12491
12491
  this.el.find('.fc-body > tr > td').append(timeGridWrapEl);
12492
12492
  this.timeGrid.headContainerEl = this.el.find('.fc-head-container');
12493
12493
  this.timeGrid.setElement(timeGridEl);
@@ -12521,8 +12521,8 @@ var AgendaView = /** @class */ (function (_super) {
12521
12521
  '<tr>' +
12522
12522
  '<td class="' + theme.getClass('widgetContent') + '">' +
12523
12523
  (this.dayGrid ?
12524
- '<div class="fc-day-grid"/>' +
12525
- '<hr class="fc-divider ' + theme.getClass('widgetHeader') + '"/>' :
12524
+ '<div class="fc-day-grid"></div>' +
12525
+ '<hr class="fc-divider ' + theme.getClass('widgetHeader') + '"></hr>' :
12526
12526
  '') +
12527
12527
  '</td>' +
12528
12528
  '</tr>' +
@@ -12888,7 +12888,7 @@ var TimeGrid = /** @class */ (function (_super) {
12888
12888
  var theme = this.view.calendar.theme;
12889
12889
  this.el.html('<div class="fc-bg"></div>' +
12890
12890
  '<div class="fc-slats"></div>' +
12891
- '<hr class="fc-divider ' + theme.getClass('widgetHeader') + '" style="display:none" />');
12891
+ '<hr class="fc-divider ' + theme.getClass('widgetHeader') + '" style="display:none"></hr>');
12892
12892
  this.bottomRuleEl = this.el.find('hr');
12893
12893
  };
12894
12894
  TimeGrid.prototype.renderSlats = function () {
@@ -12934,7 +12934,7 @@ var TimeGrid = /** @class */ (function (_super) {
12934
12934
  (isLabeled ? '' : ' class="fc-minor"') +
12935
12935
  '>' +
12936
12936
  (!isRTL ? axisHtml : '') +
12937
- '<td class="' + theme.getClass('widgetContent') + '"/>' +
12937
+ '<td class="' + theme.getClass('widgetContent') + '"></td>' +
12938
12938
  (isRTL ? axisHtml : '') +
12939
12939
  '</tr>';
12940
12940
  slotTime.add(this.slotDuration);
@@ -13368,15 +13368,15 @@ var TimeGridEventRenderer = /** @class */ (function (_super) {
13368
13368
  '</div>' :
13369
13369
  '') +
13370
13370
  '</div>' +
13371
- '<div class="fc-bg"/>' +
13371
+ '<div class="fc-bg"></div>' +
13372
13372
  /* TODO: write CSS for this
13373
13373
  (isResizableFromStart ?
13374
- '<div class="fc-resizer fc-start-resizer" />' :
13374
+ '<div class="fc-resizer fc-start-resizer"></div>' :
13375
13375
  ''
13376
13376
  ) +
13377
13377
  */
13378
13378
  (isResizableFromEnd ?
13379
- '<div class="fc-resizer fc-end-resizer" />' :
13379
+ '<div class="fc-resizer fc-end-resizer"></div>' :
13380
13380
  '') +
13381
13381
  '</a>';
13382
13382
  };
@@ -13717,7 +13717,7 @@ var DayGridEventRenderer = /** @class */ (function (_super) {
13717
13717
  var colCnt = this.dayGrid.colCnt;
13718
13718
  var segLevels = this.buildSegLevels(rowSegs); // group into sub-arrays of levels
13719
13719
  var levelCnt = Math.max(1, segLevels.length); // ensure at least one level
13720
- var tbody = $('<tbody/>');
13720
+ var tbody = $('<tbody>');
13721
13721
  var segMatrix = []; // lookup for which segments are rendered into which level+col cells
13722
13722
  var cellMatrix = []; // lookup for all <td> elements of the level+col matrix
13723
13723
  var loneCellMatrix = []; // lookup for <td> elements that only take up a single column
@@ -13737,7 +13737,7 @@ var DayGridEventRenderer = /** @class */ (function (_super) {
13737
13737
  td.attr('rowspan', parseInt(td.attr('rowspan') || 1, 10) + 1);
13738
13738
  }
13739
13739
  else {
13740
- td = $('<td/>');
13740
+ td = $('<td>');
13741
13741
  tr.append(td);
13742
13742
  }
13743
13743
  cellMatrix[i][col] = td;
@@ -13748,7 +13748,7 @@ var DayGridEventRenderer = /** @class */ (function (_super) {
13748
13748
  for (i = 0; i < levelCnt; i++) { // iterate through all levels
13749
13749
  levelSegs = segLevels[i];
13750
13750
  col = 0;
13751
- tr = $('<tr/>');
13751
+ tr = $('<tr>');
13752
13752
  segMatrix.push([]);
13753
13753
  cellMatrix.push([]);
13754
13754
  loneCellMatrix.push([]);
@@ -13759,7 +13759,7 @@ var DayGridEventRenderer = /** @class */ (function (_super) {
13759
13759
  seg = levelSegs[j];
13760
13760
  emptyCellsUntil(seg.leftCol);
13761
13761
  // create a container that occupies or more columns. append the event element.
13762
- td = $('<td class="fc-event-container"/>').append(seg.el);
13762
+ td = $('<td class="fc-event-container">').append(seg.el);
13763
13763
  if (seg.leftCol !== seg.rightCol) {
13764
13764
  td.attr('colspan', seg.rightCol - seg.leftCol + 1);
13765
13765
  }
@@ -13878,10 +13878,10 @@ var DayGridEventRenderer = /** @class */ (function (_super) {
13878
13878
  ) +
13879
13879
  '</div>' +
13880
13880
  (isResizableFromStart ?
13881
- '<div class="fc-resizer fc-start-resizer" />' :
13881
+ '<div class="fc-resizer fc-start-resizer"></div>' :
13882
13882
  '') +
13883
13883
  (isResizableFromEnd ?
13884
- '<div class="fc-resizer fc-end-resizer" />' :
13884
+ '<div class="fc-resizer fc-end-resizer"></div>' :
13885
13885
  '') +
13886
13886
  '</a>';
13887
13887
  };
@@ -13929,7 +13929,7 @@ var DayGridHelperRenderer = /** @class */ (function (_super) {
13929
13929
  // inject each new event skeleton into each associated row
13930
13930
  this.component.rowEls.each(function (row, rowNode) {
13931
13931
  var rowEl = $(rowNode); // the .fc-row
13932
- var skeletonEl = $('<div class="fc-helper-skeleton"><table/></div>'); // will be absolutely positioned
13932
+ var skeletonEl = $('<div class="fc-helper-skeleton"><table></table></div>'); // will be absolutely positioned
13933
13933
  var skeletonTopEl;
13934
13934
  var skeletonTop;
13935
13935
  // If there is an original segment, match the top position. Otherwise, put it at the row's top level
@@ -13999,19 +13999,19 @@ var DayGridFillRenderer = /** @class */ (function (_super) {
13999
13999
  className = type.toLowerCase();
14000
14000
  }
14001
14001
  skeletonEl = $('<div class="fc-' + className + '-skeleton">' +
14002
- '<table><tr/></table>' +
14002
+ '<table><tr></tr></table>' +
14003
14003
  '</div>');
14004
14004
  trEl = skeletonEl.find('tr');
14005
14005
  if (startCol > 0) {
14006
14006
  trEl.append(
14007
14007
  // will create (startCol + 1) td's
14008
- new Array(startCol + 1).join('<td/>'));
14008
+ new Array(startCol + 1).join('<td></td>'));
14009
14009
  }
14010
14010
  trEl.append(seg.el.attr('colspan', endCol - startCol));
14011
14011
  if (endCol < colCnt) {
14012
14012
  trEl.append(
14013
14013
  // will create (colCnt - endCol) td's
14014
- new Array(colCnt - endCol + 1).join('<td/>'));
14014
+ new Array(colCnt - endCol + 1).join('<td></td>'));
14015
14015
  }
14016
14016
  this.component.bookendCells(trEl);
14017
14017
  return skeletonEl;
@@ -14197,7 +14197,7 @@ var ListView = /** @class */ (function (_super) {
14197
14197
  var dayIndex;
14198
14198
  var daySegs;
14199
14199
  var i;
14200
- var tableEl = $('<table class="fc-list-table ' + this.calendar.theme.getClass('tableList') + '"><tbody/></table>');
14200
+ var tableEl = $('<table class="fc-list-table ' + this.calendar.theme.getClass('tableList') + '"><tbody></tbody></table>');
14201
14201
  var tbodyEl = tableEl.find('tbody');
14202
14202
  for (dayIndex = 0; dayIndex < segsByDay.length; dayIndex++) {
14203
14203
  daySegs = segsByDay[dayIndex];
@@ -14456,7 +14456,7 @@ var Toolbar = /** @class */ (function () {
14456
14456
  var el = this.el;
14457
14457
  if (sections) {
14458
14458
  if (!el) {
14459
- el = this.el = $("<div class='fc-toolbar " + this.toolbarOptions.extraClasses + "'/>");
14459
+ el = this.el = $("<div class='fc-toolbar " + this.toolbarOptions.extraClasses + "'>");
14460
14460
  }
14461
14461
  else {
14462
14462
  el.empty();
@@ -14464,7 +14464,7 @@ var Toolbar = /** @class */ (function () {
14464
14464
  el.append(this.renderSection('left'))
14465
14465
  .append(this.renderSection('right'))
14466
14466
  .append(this.renderSection('center'))
14467
- .append('<div class="fc-clear"/>');
14467
+ .append('<div class="fc-clear"></div>');
14468
14468
  }
14469
14469
  else {
14470
14470
  this.removeElement();
@@ -14482,7 +14482,7 @@ var Toolbar = /** @class */ (function () {
14482
14482
  var theme = calendar.theme;
14483
14483
  var optionsManager = calendar.optionsManager;
14484
14484
  var viewSpecManager = calendar.viewSpecManager;
14485
- var sectionEl = $('<div class="fc-' + position + '"/>');
14485
+ var sectionEl = $('<div class="fc-' + position + '">');
14486
14486
  var buttonStr = this.toolbarOptions.layout[position];
14487
14487
  var calendarCustomButtons = optionsManager.get('customButtons') || {};
14488
14488
  var calendarButtonTextOverrides = optionsManager.overrides.buttonText || {};
@@ -14600,7 +14600,7 @@ var Toolbar = /** @class */ (function () {
14600
14600
  .last().addClass(theme.getClass('cornerRight')).end();
14601
14601
  }
14602
14602
  if (groupChildren.length > 1) {
14603
- groupEl = $('<div/>');
14603
+ groupEl = $('<div>');
14604
14604
  if (isOnlyButtons) {
14605
14605
  groupEl.addClass(theme.getClass('buttonGroup'));
14606
14606
  }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * FullCalendar v3.10.1
2
+ * FullCalendar v3.10.2
3
3
  * Docs & License: https://fullcalendar.io/
4
4
  * (c) 2019 Adam Shaw
5
5
  */.fc button,.fc table,body .fc{font-size:1em}.fc .fc-axis,.fc button,.fc-day-grid-event .fc-content,.fc-list-item-marker,.fc-list-item-time,.fc-time-grid-event .fc-time,.fc-time-grid-event.fc-short .fc-content{white-space:nowrap}.fc-event,.fc-event:hover,.fc-state-hover,.fc.fc-bootstrap3 a,.ui-widget .fc-event,a.fc-more{text-decoration:none}.fc{direction:ltr;text-align:left}.fc-rtl{text-align:right}.fc th,.fc-basic-view .fc-day-top .fc-week-number,.fc-basic-view td.fc-week-number,.fc-icon,.fc-toolbar{text-align:center}.fc-highlight{background:#bce8f1;opacity:.3}.fc-bgevent{background:#8fdf82;opacity:.3}.fc-nonbusiness{background:#d7d7d7}.fc button{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;height:2.1em;padding:0 .6em;cursor:pointer}.fc button::-moz-focus-inner{margin:0;padding:0}.fc-state-default{border:1px solid;background-color:#f5f5f5;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);color:#333;text-shadow:0 1px 1px rgba(255,255,255,.75);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05)}.fc-state-default.fc-corner-left{border-top-left-radius:4px;border-bottom-left-radius:4px}.fc-state-default.fc-corner-right{border-top-right-radius:4px;border-bottom-right-radius:4px}.fc button .fc-icon{position:relative;top:-.05em;margin:0 .2em;vertical-align:middle}.fc-state-active,.fc-state-disabled,.fc-state-down,.fc-state-hover{color:#333;background-color:#e6e6e6}.fc-state-hover{color:#333;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}.fc-state-active,.fc-state-down{background-color:#ccc;background-image:none;box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05)}.fc-state-disabled{cursor:default;background-image:none;opacity:.65;box-shadow:none}.fc-event.fc-draggable,.fc-event[href],.fc-popover .fc-header .fc-close,a[data-goto]{cursor:pointer}.fc-button-group{display:inline-block}.fc .fc-button-group>*{float:left;margin:0 0 0 -1px}.fc .fc-button-group>:first-child{margin-left:0}.fc-popover{position:absolute;box-shadow:0 2px 6px rgba(0,0,0,.15)}.fc-popover .fc-header{padding:2px 4px}.fc-popover .fc-header .fc-title{margin:0 2px}.fc-ltr .fc-popover .fc-header .fc-title,.fc-rtl .fc-popover .fc-header .fc-close{float:left}.fc-ltr .fc-popover .fc-header .fc-close,.fc-rtl .fc-popover .fc-header .fc-title{float:right}.fc-divider{border-style:solid;border-width:1px}hr.fc-divider{height:0;margin:0;padding:0 0 2px;border-width:1px 0}.fc-bg table,.fc-row .fc-bgevent-skeleton table,.fc-row .fc-highlight-skeleton table{height:100%}.fc-clear{clear:both}.fc-bg,.fc-bgevent-skeleton,.fc-helper-skeleton,.fc-highlight-skeleton{position:absolute;top:0;left:0;right:0}.fc-bg{bottom:0}.fc table{width:100%;box-sizing:border-box;table-layout:fixed;border-collapse:collapse;border-spacing:0}.fc td,.fc th{border-style:solid;border-width:1px;padding:0;vertical-align:top}.fc td.fc-today{border-style:double}a[data-goto]:hover{text-decoration:underline}.fc .fc-row{border-style:solid;border-width:0}.fc-row table{border-left:0 hidden transparent;border-right:0 hidden transparent;border-bottom:0 hidden transparent}.fc-row:first-child table{border-top:0 hidden transparent}.fc-row{position:relative}.fc-row .fc-bg{z-index:1}.fc-row .fc-bgevent-skeleton,.fc-row .fc-highlight-skeleton{bottom:0}.fc-row .fc-bgevent-skeleton td,.fc-row .fc-highlight-skeleton td{border-color:transparent}.fc-row .fc-bgevent-skeleton{z-index:2}.fc-row .fc-highlight-skeleton{z-index:3}.fc-row .fc-content-skeleton{position:relative;z-index:4;padding-bottom:2px}.fc-row .fc-helper-skeleton{z-index:5}.fc .fc-row .fc-content-skeleton table,.fc .fc-row .fc-content-skeleton td,.fc .fc-row .fc-helper-skeleton td{background:0 0;border-color:transparent}.fc-row .fc-content-skeleton td,.fc-row .fc-helper-skeleton td{border-bottom:0}.fc-row .fc-content-skeleton tbody td,.fc-row .fc-helper-skeleton tbody td{border-top:0}.fc-scroller{-webkit-overflow-scrolling:touch}.fc-day-grid-event .fc-content,.fc-icon,.fc-row.fc-rigid,.fc-time-grid-event{overflow:hidden}.fc-scroller>.fc-day-grid,.fc-scroller>.fc-time-grid{position:relative;width:100%}.fc-event{position:relative;display:block;font-size:.85em;line-height:1.3;border-radius:3px;border:1px solid #3a87ad}.fc-event,.fc-event-dot{background-color:#3a87ad}.fc-event,.fc-event:hover{color:#fff}.fc-not-allowed,.fc-not-allowed .fc-event{cursor:not-allowed}.fc-event .fc-bg{z-index:1;background:#fff;opacity:.25}.fc-event .fc-content{position:relative;z-index:2}.fc-event .fc-resizer{position:absolute;z-index:4;display:none}.fc-event.fc-allow-mouse-resize .fc-resizer,.fc-event.fc-selected .fc-resizer{display:block}.fc-event.fc-selected .fc-resizer:before{content:"";position:absolute;z-index:9999;top:50%;left:50%;width:40px;height:40px;margin-left:-20px;margin-top:-20px}.fc-event.fc-selected{z-index:9999!important;box-shadow:0 2px 5px rgba(0,0,0,.2)}.fc-event.fc-selected.fc-dragging{box-shadow:0 2px 7px rgba(0,0,0,.3)}.fc-h-event.fc-selected:before{content:"";position:absolute;z-index:3;top:-10px;bottom:-10px;left:0;right:0}.fc-ltr .fc-h-event.fc-not-start,.fc-rtl .fc-h-event.fc-not-end{margin-left:0;border-left-width:0;padding-left:1px;border-top-left-radius:0;border-bottom-left-radius:0}.fc-ltr .fc-h-event.fc-not-end,.fc-rtl .fc-h-event.fc-not-start{margin-right:0;border-right-width:0;padding-right:1px;border-top-right-radius:0;border-bottom-right-radius:0}.fc-ltr .fc-h-event .fc-start-resizer,.fc-rtl .fc-h-event .fc-end-resizer{cursor:w-resize;left:-1px}.fc-ltr .fc-h-event .fc-end-resizer,.fc-rtl .fc-h-event .fc-start-resizer{cursor:e-resize;right:-1px}.fc-h-event.fc-allow-mouse-resize .fc-resizer{width:7px;top:-1px;bottom:-1px}.fc-h-event.fc-selected .fc-resizer{border-radius:4px;border-width:1px;width:6px;height:6px;border-style:solid;border-color:inherit;background:#fff;top:50%;margin-top:-4px}.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,.fc-rtl .fc-h-event.fc-selected .fc-end-resizer{margin-left:-4px}.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,.fc-rtl .fc-h-event.fc-selected .fc-start-resizer{margin-right:-4px}.fc-day-grid-event{margin:1px 2px 0;padding:0 1px}tr:first-child>td>.fc-day-grid-event{margin-top:2px}.fc-day-grid-event.fc-selected:after{content:"";position:absolute;z-index:1;top:-1px;right:-1px;bottom:-1px;left:-1px;background:#000;opacity:.25}.fc-day-grid-event .fc-time{font-weight:700}.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer{margin-left:-2px}.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer{margin-right:-2px}a.fc-more{margin:1px 3px;font-size:.85em;cursor:pointer}a.fc-more:hover{text-decoration:underline}.fc-limited{display:none}.fc-day-grid .fc-row{z-index:1}.fc-more-popover{z-index:2;width:220px}.fc-more-popover .fc-event-container{padding:10px}.fc-bootstrap3 .fc-popover .panel-body,.fc-bootstrap4 .fc-popover .card-body{padding:0}.fc-now-indicator{position:absolute;border:0 solid red}.fc-bootstrap3 .fc-today.alert,.fc-bootstrap4 .fc-today.alert{border-radius:0}.fc-unselectable{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent}.fc-unthemed .fc-content,.fc-unthemed .fc-divider,.fc-unthemed .fc-list-heading td,.fc-unthemed .fc-list-view,.fc-unthemed .fc-popover,.fc-unthemed .fc-row,.fc-unthemed tbody,.fc-unthemed td,.fc-unthemed th,.fc-unthemed thead{border-color:#ddd}.fc-unthemed .fc-popover{background-color:#fff;border-width:1px;border-style:solid}.fc-unthemed .fc-divider,.fc-unthemed .fc-list-heading td,.fc-unthemed .fc-popover .fc-header{background:#eee}.fc-unthemed td.fc-today{background:#fcf8e3}.fc-unthemed .fc-disabled-day{background:#d7d7d7;opacity:.3}.fc-icon{display:inline-block;height:1em;line-height:1em;font-size:1em;font-family:"Courier New",Courier,monospace;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fc-icon:after{position:relative}.fc-icon-left-single-arrow:after{content:"\2039";font-weight:700;font-size:200%;top:-7%}.fc-icon-right-single-arrow:after{content:"\203A";font-weight:700;font-size:200%;top:-7%}.fc-icon-left-double-arrow:after{content:"\AB";font-size:160%;top:-7%}.fc-icon-right-double-arrow:after{content:"\BB";font-size:160%;top:-7%}.fc-icon-left-triangle:after{content:"\25C4";font-size:125%;top:3%}.fc-icon-right-triangle:after{content:"\25BA";font-size:125%;top:3%}.fc-icon-down-triangle:after{content:"\25BC";font-size:125%;top:2%}.fc-icon-x:after{content:"\D7";font-size:200%;top:6%}.fc-unthemed .fc-popover .fc-header .fc-close{color:#666;font-size:.9em;margin-top:2px}.fc-unthemed .fc-list-item:hover td{background-color:#f5f5f5}.ui-widget .fc-disabled-day{background-image:none}.fc-bootstrap3 .fc-time-grid .fc-slats table,.fc-bootstrap4 .fc-time-grid .fc-slats table,.fc-time-grid .fc-slats .ui-widget-content{background:0 0}.fc-popover>.ui-widget-header+.ui-widget-content{border-top:0}.fc-bootstrap3 hr.fc-divider,.fc-bootstrap4 hr.fc-divider{border-color:inherit}.ui-widget .fc-event{color:#fff;font-weight:400}.ui-widget td.fc-axis{font-weight:400}.fc.fc-bootstrap3 a[data-goto]:hover{text-decoration:underline}.fc.fc-bootstrap4 a{text-decoration:none}.fc.fc-bootstrap4 a[data-goto]:hover{text-decoration:underline}.fc-bootstrap4 a.fc-event:not([href]):not([tabindex]){color:#fff}.fc-bootstrap4 .fc-popover.card{position:absolute}.fc-toolbar.fc-header-toolbar{margin-bottom:1em}.fc-toolbar.fc-footer-toolbar{margin-top:1em}.fc-toolbar .fc-left{float:left}.fc-toolbar .fc-right{float:right}.fc-toolbar .fc-center{display:inline-block}.fc .fc-toolbar>*>*{float:left;margin-left:.75em}.fc .fc-toolbar>*>:first-child{margin-left:0}.fc-toolbar h2{margin:0}.fc-toolbar button{position:relative}.fc-toolbar .fc-state-hover,.fc-toolbar .ui-state-hover{z-index:2}.fc-toolbar .fc-state-down{z-index:3}.fc-toolbar .fc-state-active,.fc-toolbar .ui-state-active{z-index:4}.fc-toolbar button:focus{z-index:5}.fc-view-container *,.fc-view-container :after,.fc-view-container :before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.fc-view,.fc-view>table{position:relative;z-index:1}.fc-basicDay-view .fc-content-skeleton,.fc-basicWeek-view .fc-content-skeleton{padding-bottom:1em}.fc-basic-view .fc-body .fc-row{min-height:4em}.fc-row.fc-rigid .fc-content-skeleton{position:absolute;top:0;left:0;right:0}.fc-day-top.fc-other-month{opacity:.3}.fc-basic-view .fc-day-number,.fc-basic-view .fc-week-number{padding:2px}.fc-basic-view th.fc-day-number,.fc-basic-view th.fc-week-number{padding:0 2px}.fc-ltr .fc-basic-view .fc-day-top .fc-day-number{float:right}.fc-rtl .fc-basic-view .fc-day-top .fc-day-number{float:left}.fc-ltr .fc-basic-view .fc-day-top .fc-week-number{float:left;border-radius:0 0 3px}.fc-rtl .fc-basic-view .fc-day-top .fc-week-number{float:right;border-radius:0 0 0 3px}.fc-basic-view .fc-day-top .fc-week-number{min-width:1.5em;background-color:#f2f2f2;color:grey}.fc-basic-view td.fc-week-number>*{display:inline-block;min-width:1.25em}.fc-agenda-view .fc-day-grid{position:relative;z-index:2}.fc-agenda-view .fc-day-grid .fc-row{min-height:3em}.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton{padding-bottom:1em}.fc .fc-axis{vertical-align:middle;padding:0 4px}.fc-ltr .fc-axis{text-align:right}.fc-rtl .fc-axis{text-align:left}.fc-time-grid,.fc-time-grid-container{position:relative;z-index:1}.fc-time-grid{min-height:100%}.fc-time-grid table{border:0 hidden transparent}.fc-time-grid>.fc-bg{z-index:1}.fc-time-grid .fc-slats,.fc-time-grid>hr{position:relative;z-index:2}.fc-time-grid .fc-content-col{position:relative}.fc-time-grid .fc-content-skeleton{position:absolute;z-index:3;top:0;left:0;right:0}.fc-time-grid .fc-business-container{position:relative;z-index:1}.fc-time-grid .fc-bgevent-container{position:relative;z-index:2}.fc-time-grid .fc-highlight-container{z-index:3;position:relative}.fc-time-grid .fc-event-container{position:relative;z-index:4}.fc-time-grid .fc-now-indicator-line{z-index:5}.fc-time-grid .fc-helper-container{position:relative;z-index:6}.fc-time-grid .fc-slats td{height:1.5em;border-bottom:0}.fc-time-grid .fc-slats .fc-minor td{border-top-style:dotted}.fc-time-grid .fc-highlight{position:absolute;left:0;right:0}.fc-ltr .fc-time-grid .fc-event-container{margin:0 2.5% 0 2px}.fc-rtl .fc-time-grid .fc-event-container{margin:0 2px 0 2.5%}.fc-time-grid .fc-bgevent,.fc-time-grid .fc-event{position:absolute;z-index:1}.fc-time-grid .fc-bgevent{left:0;right:0}.fc-v-event.fc-not-start{border-top-width:0;padding-top:1px;border-top-left-radius:0;border-top-right-radius:0}.fc-v-event.fc-not-end{border-bottom-width:0;padding-bottom:1px;border-bottom-left-radius:0;border-bottom-right-radius:0}.fc-time-grid-event.fc-selected{overflow:visible}.fc-time-grid-event.fc-selected .fc-bg{display:none}.fc-time-grid-event .fc-content{overflow:hidden}.fc-time-grid-event .fc-time,.fc-time-grid-event .fc-title{padding:0 1px}.fc-time-grid-event .fc-time{font-size:.85em}.fc-time-grid-event.fc-short .fc-time,.fc-time-grid-event.fc-short .fc-title{display:inline-block;vertical-align:top}.fc-time-grid-event.fc-short .fc-time span{display:none}.fc-time-grid-event.fc-short .fc-time:before{content:attr(data-start)}.fc-time-grid-event.fc-short .fc-time:after{content:"\A0-\A0"}.fc-time-grid-event.fc-short .fc-title{font-size:.85em;padding:0}.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer{left:0;right:0;bottom:0;height:8px;overflow:hidden;line-height:8px;font-size:11px;font-family:monospace;text-align:center;cursor:s-resize}.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after{content:"="}.fc-time-grid-event.fc-selected .fc-resizer{border-radius:5px;border-width:1px;width:8px;height:8px;border-style:solid;border-color:inherit;background:#fff;left:50%;margin-left:-5px;bottom:-5px}.fc-time-grid .fc-now-indicator-line{border-top-width:1px;left:0;right:0}.fc-time-grid .fc-now-indicator-arrow{margin-top:-5px}.fc-ltr .fc-time-grid .fc-now-indicator-arrow{left:0;border-width:5px 0 5px 6px;border-top-color:transparent;border-bottom-color:transparent}.fc-rtl .fc-time-grid .fc-now-indicator-arrow{right:0;border-width:5px 6px 5px 0;border-top-color:transparent;border-bottom-color:transparent}.fc-event-dot{display:inline-block;width:10px;height:10px;border-radius:5px}.fc-rtl .fc-list-view{direction:rtl}.fc-list-view{border-width:1px;border-style:solid}.fc .fc-list-table{table-layout:auto}.fc-list-table td{border-width:1px 0 0;padding:8px 14px}.fc-list-table tr:first-child td{border-top-width:0}.fc-list-heading{border-bottom-width:1px}.fc-list-heading td{font-weight:700}.fc-ltr .fc-list-heading-main{float:left}.fc-ltr .fc-list-heading-alt,.fc-rtl .fc-list-heading-main{float:right}.fc-rtl .fc-list-heading-alt{float:left}.fc-list-item.fc-has-url{cursor:pointer}.fc-list-item-marker,.fc-list-item-time{width:1px}.fc-ltr .fc-list-item-marker{padding-right:0}.fc-rtl .fc-list-item-marker{padding-left:0}.fc-list-item-title a{text-decoration:none;color:inherit}.fc-list-item-title a[href]:hover{text-decoration:underline}.fc-list-empty-wrap2{position:absolute;top:0;left:0;right:0;bottom:0}.fc-list-empty-wrap1{width:100%;height:100%;display:table}.fc-list-empty{display:table-cell;vertical-align:middle;text-align:center}.fc-unthemed .fc-list-empty{background-color:#eee}