@event-calendar/build 0.16.1 → 0.17.1
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/README.md +31 -4
- package/event-calendar.min.css +1 -1
- package/event-calendar.min.js +2 -2
- package/event-calendar.min.js.map +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Event Calendar [](https://www.jsdelivr.com/package/npm/@event-calendar/build) [](https://www.npmjs.com/package/@event-calendar/core)
|
|
1
|
+
# Event Calendar [](https://www.jsdelivr.com/package/npm/@event-calendar/build) [](https://www.npmjs.com/package/@event-calendar/core)
|
|
2
2
|
|
|
3
3
|
See [demo](https://vkurko.github.io/calendar/) and [changelog](CHANGELOG.md).
|
|
4
4
|
|
|
@@ -6,7 +6,7 @@ Full-sized drag & drop JavaScript event calendar with resource view:
|
|
|
6
6
|
|
|
7
7
|
* Lightweight (37kb [br](https://en.wikipedia.org/wiki/Brotli) compressed)
|
|
8
8
|
* Zero-dependency (pre-built bundle)
|
|
9
|
-
* Used
|
|
9
|
+
* Used on over 60,000 websites with [Bookly](https://wordpress.org/plugins/bookly-responsive-appointment-booking-tool/)
|
|
10
10
|
|
|
11
11
|
Inspired by [FullCalendar](https://fullcalendar.io/), implements similar options.
|
|
12
12
|
|
|
@@ -117,6 +117,7 @@ Inspired by [FullCalendar](https://fullcalendar.io/), implements similar options
|
|
|
117
117
|
</td><td>
|
|
118
118
|
|
|
119
119
|
- [dateFromPoint](#datefrompoint-x-y-)
|
|
120
|
+
- [destroy](#destroy)
|
|
120
121
|
- [getView](#getview)
|
|
121
122
|
- [unselect](#unselect-1)
|
|
122
123
|
</td></tr>
|
|
@@ -191,8 +192,8 @@ import '@event-calendar/core/index.css';
|
|
|
191
192
|
### Pre-built browser ready bundle
|
|
192
193
|
Include the following lines of code in the `<head>` section of your page:
|
|
193
194
|
```html
|
|
194
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@0.
|
|
195
|
-
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@0.
|
|
195
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@0.17.1/event-calendar.min.css">
|
|
196
|
+
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@0.17.1/event-calendar.min.js"></script>
|
|
196
197
|
```
|
|
197
198
|
|
|
198
199
|
<details>
|
|
@@ -475,6 +476,7 @@ Determines whether to display an event’s end time.
|
|
|
475
476
|
### dragScroll
|
|
476
477
|
- Type `boolean`
|
|
477
478
|
- Default `true`
|
|
479
|
+
- Requires `Interaction` plugin
|
|
478
480
|
|
|
479
481
|
Determines whether the calendar should automatically scroll during the event drag-and-drop when the mouse crosses the edge.
|
|
480
482
|
|
|
@@ -499,6 +501,7 @@ This should be a value that can be parsed into a [Duration](#duration-object) ob
|
|
|
499
501
|
### editable
|
|
500
502
|
- Type `boolean`
|
|
501
503
|
- Default `false`
|
|
504
|
+
- Requires `Interaction` plugin
|
|
502
505
|
|
|
503
506
|
Determines whether the events on the calendar can be dragged and resized (both at the same time).
|
|
504
507
|
|
|
@@ -667,12 +670,14 @@ The current [View](#view-object) object
|
|
|
667
670
|
### eventDragMinDistance
|
|
668
671
|
- Type `integer`
|
|
669
672
|
- Default `5`
|
|
673
|
+
- Requires `Interaction` plugin
|
|
670
674
|
|
|
671
675
|
Defines how many pixels the user’s mouse must move before the event dragging begins.
|
|
672
676
|
|
|
673
677
|
### eventDragStart
|
|
674
678
|
- Type `function`
|
|
675
679
|
- Default `undefined`
|
|
680
|
+
- Requires `Interaction` plugin
|
|
676
681
|
|
|
677
682
|
Callback function that is triggered when the event dragging begins.
|
|
678
683
|
|
|
@@ -713,6 +718,7 @@ The current [View](#view-object) object
|
|
|
713
718
|
### eventDragStop
|
|
714
719
|
- Type `function`
|
|
715
720
|
- Default `undefined`
|
|
721
|
+
- Requires `Interaction` plugin
|
|
716
722
|
|
|
717
723
|
Callback function that is triggered when the event dragging stops.
|
|
718
724
|
|
|
@@ -755,6 +761,7 @@ The current [View](#view-object) object
|
|
|
755
761
|
### eventDrop
|
|
756
762
|
- Type `function`
|
|
757
763
|
- Default `undefined`
|
|
764
|
+
- Requires `Interaction` plugin
|
|
758
765
|
|
|
759
766
|
Callback function that is triggered when dragging stops, and the event has moved to a different day/time.
|
|
760
767
|
|
|
@@ -847,12 +854,14 @@ The current [View](#view-object) object
|
|
|
847
854
|
### eventDurationEditable
|
|
848
855
|
- Type `boolean`
|
|
849
856
|
- Default `true`
|
|
857
|
+
- Requires `Interaction` plugin
|
|
850
858
|
|
|
851
859
|
Determines whether calendar events can be resized.
|
|
852
860
|
|
|
853
861
|
### eventLongPressDelay
|
|
854
862
|
- Type `integer`
|
|
855
863
|
- Default `undefined`
|
|
864
|
+
- Requires `Interaction` plugin
|
|
856
865
|
|
|
857
866
|
For touch devices, the amount of time (in milliseconds) the user must hold down a tap before the event becomes draggable/resizable.
|
|
858
867
|
|
|
@@ -955,6 +964,7 @@ The current [View](#view-object) object
|
|
|
955
964
|
### eventResize
|
|
956
965
|
- Type `function`
|
|
957
966
|
- Default `undefined`
|
|
967
|
+
- Requires `Interaction` plugin
|
|
958
968
|
|
|
959
969
|
Callback function that is triggered when resizing stops, and the duration of the event has changed.
|
|
960
970
|
|
|
@@ -1027,6 +1037,7 @@ The current [View](#view-object) object
|
|
|
1027
1037
|
### eventResizeStart
|
|
1028
1038
|
- Type `function`
|
|
1029
1039
|
- Default `undefined`
|
|
1040
|
+
- Requires `Interaction` plugin
|
|
1030
1041
|
|
|
1031
1042
|
Callback function that is triggered when the event resizing begins.
|
|
1032
1043
|
|
|
@@ -1067,6 +1078,7 @@ The current [View](#view-object) object
|
|
|
1067
1078
|
### eventResizeStop
|
|
1068
1079
|
- Type `function`
|
|
1069
1080
|
- Default `undefined`
|
|
1081
|
+
- Requires `Interaction` plugin
|
|
1070
1082
|
|
|
1071
1083
|
Callback function that is triggered when the event resizing stops.
|
|
1072
1084
|
|
|
@@ -1208,6 +1220,7 @@ Instead of calling `successCallback` and `failureCallback`, you may return the r
|
|
|
1208
1220
|
### eventStartEditable
|
|
1209
1221
|
- Type `boolean`
|
|
1210
1222
|
- Default `true`
|
|
1223
|
+
- Requires `Interaction` plugin
|
|
1211
1224
|
|
|
1212
1225
|
Determines whether the events on the calendar can be dragged.
|
|
1213
1226
|
|
|
@@ -1506,6 +1519,7 @@ Enables a marker indicating the current time in `timeGrid`/`resourceTimeGrid` vi
|
|
|
1506
1519
|
### pointer
|
|
1507
1520
|
- Type `boolean`
|
|
1508
1521
|
- Default `false`
|
|
1522
|
+
- Requires `Interaction` plugin
|
|
1509
1523
|
|
|
1510
1524
|
Enables mouse cursor pointer in `timeGrid`/`resourceTimeGrid` views.
|
|
1511
1525
|
|
|
@@ -1589,6 +1603,7 @@ The associated [Resource](#resource-object) object
|
|
|
1589
1603
|
### select
|
|
1590
1604
|
- Type `function`
|
|
1591
1605
|
- Default `undefined`
|
|
1606
|
+
- Requires `Interaction` plugin
|
|
1592
1607
|
|
|
1593
1608
|
Callback function that is triggered when a date/time selection is made.
|
|
1594
1609
|
|
|
@@ -1666,12 +1681,14 @@ If the current view is a resource view, the [Resource](#resource-object) object
|
|
|
1666
1681
|
### selectable
|
|
1667
1682
|
- Type `boolean`
|
|
1668
1683
|
- Default `false`
|
|
1684
|
+
- Requires `Interaction` plugin
|
|
1669
1685
|
|
|
1670
1686
|
Determines whether the user is allowed to highlight multiple days or time slots by clicking and moving the pointer.
|
|
1671
1687
|
|
|
1672
1688
|
### selectBackgroundColor
|
|
1673
1689
|
- Type `string`
|
|
1674
1690
|
- Default `undefined`
|
|
1691
|
+
- Requires `Interaction` plugin
|
|
1675
1692
|
|
|
1676
1693
|
Sets the background color for the event indicating the current selection. See [selectable](#selectable).
|
|
1677
1694
|
|
|
@@ -1680,6 +1697,7 @@ You can use any of the CSS color formats such `'#f00'`, `'#ff0000'`, `'rgb(255,0
|
|
|
1680
1697
|
### selectLongPressDelay
|
|
1681
1698
|
- Type `integer`
|
|
1682
1699
|
- Default `undefined`
|
|
1700
|
+
- Requires `Interaction` plugin
|
|
1683
1701
|
|
|
1684
1702
|
For touch devices, the amount of time (in milliseconds) the user must hold down a tap before the date becomes selectable.
|
|
1685
1703
|
|
|
@@ -1688,6 +1706,7 @@ If not specified, it falls back to [longPressDelay](#longpressdelay).
|
|
|
1688
1706
|
### selectMinDistance
|
|
1689
1707
|
- Type `integer`
|
|
1690
1708
|
- Default `5`
|
|
1709
|
+
- Requires `Interaction` plugin
|
|
1691
1710
|
|
|
1692
1711
|
Defines how many pixels the user’s mouse must move before the selection begins.
|
|
1693
1712
|
|
|
@@ -1810,6 +1829,7 @@ function (date) {
|
|
|
1810
1829
|
### unselect
|
|
1811
1830
|
- Type `function`
|
|
1812
1831
|
- Default `undefined`
|
|
1832
|
+
- Requires `Interaction` plugin
|
|
1813
1833
|
|
|
1814
1834
|
Callback function that is triggered when the current selection is cleared.
|
|
1815
1835
|
|
|
@@ -1851,12 +1871,14 @@ The current [View](#view-object) object
|
|
|
1851
1871
|
### unselectAuto
|
|
1852
1872
|
- Type `boolean`
|
|
1853
1873
|
- Default `true`
|
|
1874
|
+
- Requires `Interaction` plugin
|
|
1854
1875
|
|
|
1855
1876
|
Determines whether clicking elsewhere on the page will clear the current selection. See [selectable](#selectable).
|
|
1856
1877
|
|
|
1857
1878
|
### unselectCancel
|
|
1858
1879
|
- Type `string`
|
|
1859
1880
|
- Default `''`
|
|
1881
|
+
- Requires `Interaction` plugin
|
|
1860
1882
|
|
|
1861
1883
|
A CSS selector that specifies elements that will ignore the [unselectAuto](#unselectauto) option.
|
|
1862
1884
|
|
|
@@ -2001,6 +2023,11 @@ Using this method, you can, for example, find out on which day a click occurred
|
|
|
2001
2023
|
|
|
2002
2024
|
</details>
|
|
2003
2025
|
|
|
2026
|
+
### destroy()
|
|
2027
|
+
- Return value `undefined`
|
|
2028
|
+
|
|
2029
|
+
Destroys the calendar, removing all DOM elements, event handlers, and internal data.
|
|
2030
|
+
|
|
2004
2031
|
### getView()
|
|
2005
2032
|
- Return value `View`
|
|
2006
2033
|
|
package/event-calendar.min.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.ec-days,.ec-day,.ec-day-title,.ec-resource{flex:1 1 0;min-width:0;max-width:100%}.ec{display:flex;flex-direction:column;-webkit-tap-highlight-color:rgba(0,0,0,0)}.ec ::-webkit-scrollbar{background:#fff}.ec ::-webkit-scrollbar-thumb{border:4px solid #fff;box-shadow:none;background:#dadce0;border-radius:8px;min-height:40px}.ec :hover::-webkit-scrollbar-thumb{background:#bdc1c6}.ec-hidden-scroll{display:none;overflow-y:scroll;visibility:hidden;flex-shrink:0}.ec-with-scroll .ec-hidden-scroll{display:block}.ec-toolbar{flex:0 0 auto;display:flex;justify-content:space-between;align-items:center;margin-bottom:1em}.ec-toolbar>*{margin-bottom:-0.5em}.ec-toolbar>*>*{margin-bottom:.5em}.ec-toolbar>*>*:not(:last-child){margin-right:.75em}.ec-title{margin:0}.ec-button{background-color:#fff;border:1px solid #ced4da;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem}.ec-button:not(:disabled){color:#212529;cursor:pointer}.ec-button:not(:disabled):hover,.ec-button.ec-active{background-color:#ececec;border-color:#b1bbc4}.ec-button-group{display:inline-flex}.ec-button-group .ec-button:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0;margin-left:-1px}.ec-button-group .ec-button:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.ec-icon{display:inline-block;width:1em}.ec-icon.ec-prev:after,.ec-icon.ec-next:after{content:"";position:relative;width:.5em;height:.5em;border-top:2px solid #212529;border-right:2px solid #212529;display:inline-block}.ec-icon.ec-prev:after{transform:rotate(-135deg) translate(-2px, 2px)}.ec-icon.ec-next:after{transform:rotate(45deg) translate(-2px, 2px)}.ec-header,.ec-all-day,.ec-body,.ec-days,.ec-day{border:1px solid #dadce0}.ec-header{display:flex;flex-shrink:0}.ec-header .ec-resource{flex-direction:column}.ec-header .ec-resource .ec-days{border-top-style:solid}.ec-header .ec-days{border-bottom:none}.ec-header .ec-day{min-height:24px;line-height:24px;text-align:center;overflow:hidden;text-overflow:ellipsis}.ec-all-day{display:flex;flex-shrink:0;border-top:none}.ec-all-day .ec-days{border-bottom:none}.ec-all-day .ec-day{padding-bottom:4px}.ec-all-day .ec-event-time{display:none}.ec-body{position:relative;overflow-x:hidden;overflow-y:auto}.ec:not(.ec-list) .ec-body{border-top:none}.ec-month .ec-body{flex:1 1 auto}.ec-sidebar{flex:0 0 auto;width:auto;max-width:100%;padding:0 4px 0 8px;display:flex;flex-direction:column;justify-content:center}.ec-sidebar-title{visibility:hidden;overflow-y:hidden;height:0;text-align:right}.ec-all-day .ec-sidebar-title{visibility:visible;height:auto;padding:8px 0}.ec-content{display:flex}.ec-month .ec-content{flex-direction:column;height:100%}.ec-month .ec-uniform .ec-content{overflow:hidden}.ec-list .ec-content{flex-direction:column}.ec-resource{display:flex}.ec-days{display:flex;border-style:none none solid}.ec-days:last-child{border-bottom:none}.ec-month .ec-days,.ec-resource .ec-days{flex:1 0 auto}.ec-month .ec-uniform .ec-days{flex:1 1 0
|
|
1
|
+
.ec-days,.ec-day,.ec-day-title,.ec-resource{flex:1 1 0;min-width:0;max-width:100%}.ec{display:flex;flex-direction:column;-webkit-tap-highlight-color:rgba(0,0,0,0)}.ec ::-webkit-scrollbar{background:#fff}.ec ::-webkit-scrollbar-thumb{border:4px solid #fff;box-shadow:none;background:#dadce0;border-radius:8px;min-height:40px}.ec :hover::-webkit-scrollbar-thumb{background:#bdc1c6}.ec-hidden-scroll{display:none;overflow-y:scroll;visibility:hidden;flex-shrink:0}.ec-with-scroll .ec-hidden-scroll{display:block}.ec-toolbar{flex:0 0 auto;display:flex;justify-content:space-between;align-items:center;margin-bottom:1em}.ec-toolbar>*{margin-bottom:-0.5em}.ec-toolbar>*>*{margin-bottom:.5em}.ec-toolbar>*>*:not(:last-child){margin-right:.75em}.ec-title{margin:0}.ec-button{background-color:#fff;border:1px solid #ced4da;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem}.ec-button:not(:disabled){color:#212529;cursor:pointer}.ec-button:not(:disabled):hover,.ec-button.ec-active{background-color:#ececec;border-color:#b1bbc4}.ec-button-group{display:inline-flex}.ec-button-group .ec-button:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0;margin-left:-1px}.ec-button-group .ec-button:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.ec-icon{display:inline-block;width:1em}.ec-icon.ec-prev:after,.ec-icon.ec-next:after{content:"";position:relative;width:.5em;height:.5em;border-top:2px solid #212529;border-right:2px solid #212529;display:inline-block}.ec-icon.ec-prev:after{transform:rotate(-135deg) translate(-2px, 2px)}.ec-icon.ec-next:after{transform:rotate(45deg) translate(-2px, 2px)}.ec-header,.ec-all-day,.ec-body,.ec-days,.ec-day{border:1px solid #dadce0}.ec-header{display:flex;flex-shrink:0}.ec-header .ec-resource{flex-direction:column}.ec-header .ec-resource .ec-days{border-top-style:solid}.ec-header .ec-days{border-bottom:none}.ec-header .ec-day{min-height:24px;line-height:24px;text-align:center;overflow:hidden;text-overflow:ellipsis}.ec-all-day{display:flex;flex-shrink:0;border-top:none}.ec-all-day .ec-days{border-bottom:none}.ec-all-day .ec-day{padding-bottom:4px}.ec-all-day .ec-event-time{display:none}.ec-body{position:relative;overflow-x:hidden;overflow-y:auto}.ec:not(.ec-list) .ec-body{border-top:none}.ec-month .ec-body{flex:1 1 auto}.ec-sidebar{flex:0 0 auto;width:auto;max-width:100%;padding:0 4px 0 8px;display:flex;flex-direction:column;justify-content:center}.ec-sidebar-title{visibility:hidden;overflow-y:hidden;height:0;text-align:right}.ec-all-day .ec-sidebar-title{visibility:visible;height:auto;padding:8px 0}.ec-content{display:flex}.ec-month .ec-content{flex-direction:column;height:100%}.ec-month .ec-uniform .ec-content{overflow:hidden}.ec-list .ec-content{flex-direction:column}.ec-resource{display:flex}.ec-days{display:flex;border-style:none none solid}.ec-days:last-child{border-bottom:none}.ec-month .ec-days,.ec-resource .ec-days{flex:1 0 auto}.ec-month .ec-uniform .ec-days{flex:1 1 0%;min-height:0}.ec-day{border-style:none none none solid}.ec-day.ec-today{background-color:#fcf8e3}.ec-day.ec-highlight{background-color:#e5f7fe}.ec-month .ec-body .ec-day{min-height:5em;position:relative}.ec-month .ec-uniform .ec-day{min-height:0}.ec-month .ec-day:first-child{border-left:none}.ec-day.ec-other-month .ec-day-head{opacity:.3}.ec-list .ec-day{flex:1 0 auto;background-color:#fff;border-style:solid none;padding:8px 14px;font-weight:bold;position:sticky;top:0;z-index:2}.ec-list .ec-day:first-child{border-top:none}.ec-month .ec-day-head{text-align:right;padding:4px 4px 3px}.ec-month .ec-day-foot{position:absolute;bottom:0;padding:2px;font-size:.85em}.ec-month .ec-day-foot a{cursor:pointer}.ec-list .ec-day-side{float:right}.ec-list .ec-no-events{text-align:center;padding:5em 0}.ec-events{margin:0 6px 0 0}.ec-week .ec-events,.ec-events.ec-preview{position:relative}.ec-event{display:flex;padding:2px;color:#fff;box-sizing:border-box;box-shadow:0 0 1px 0 #dadce0;background-color:#039be5;border-radius:3px;font-size:.85em;line-height:1.5;z-index:1}.ec-month .ec-event,.ec-all-day .ec-event{position:relative}.ec-week .ec-body .ec-event{position:absolute}.ec-list .ec-event{flex-direction:row;padding:8px 14px;color:inherit;background-color:rgba(0,0,0,0);border-radius:0}.ec-event.ec-preview{position:absolute;z-index:1000;width:100%;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.8}.ec-event.ec-pointer{color:inherit;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;position:absolute;z-index:0;box-shadow:none;display:none}.ec-day:hover .ec-event.ec-pointer{display:flex}.ec-event-body{display:flex;flex-direction:column;width:100%}.ec-month .ec-event-body,.ec-all-day .ec-event-body{flex-direction:row}.ec-event-tag{width:4px;border-radius:2px;margin-right:8px}.ec-event-time{overflow:hidden;white-space:nowrap;margin:0 0 1px 0;flex-shrink:0}.ec-month .ec-event-time{margin:0 3px 0 0;max-width:100%;text-overflow:ellipsis}.ec-event-title{overflow:hidden}.ec-month .ec-event-title,.ec-all-day .ec-event-title{min-height:1.5em;white-space:nowrap;text-overflow:ellipsis}.ec-week .ec-body .ec-event-title{position:sticky;top:0}.ec-list .ec-event-title{font-size:1rem}.ec-draggable{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ec-ghost{opacity:.5;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ec-bg-events{position:relative}.ec-bg-event{position:absolute;background-color:#dadce0;opacity:.3;width:100%}.ec-hidden-times{visibility:hidden;overflow-y:hidden;height:0}.ec-time,.ec-line{height:24px}.ec-time{position:relative;line-height:24px;top:-12px;text-align:right;white-space:nowrap}.ec-lines{width:8px}.ec-line:not(:first-child):after{content:"";position:absolute;width:100%;border-bottom:1px solid #dadce0;pointer-events:none}.ec-body:not(.ec-compact) .ec-line:nth-child(even):after{border-bottom-style:dotted}.ec-popup{position:absolute;top:0;display:flex;flex-direction:column;width:110%;min-width:180px;z-index:1010;padding:8px 10px 14px;background-color:#fff;border-radius:6px;outline:1px solid rgba(0,0,0,0);box-shadow:0 1px 3px 0 rgba(60,64,67,.3),0 4px 8px 3px rgba(60,64,67,.15)}.ec-popup .ec-day-head{text-align:left;display:flex;justify-content:space-between}.ec-popup .ec-day-head a{cursor:pointer;font-size:1.5em;line-height:.8}.ec-popup .ec-events{margin:0;min-height:0;overflow:auto}.ec-extra{position:relative;height:100%;overflow:hidden;margin-left:-6.5px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ec-now-indicator{position:absolute;z-index:1005;width:100%;border-top:#ea4335 solid 2px;pointer-events:none}.ec-now-indicator:before{background:#ea4335;border-radius:50%;content:"";position:absolute;height:12px;margin-top:-7px;width:12px;pointer-events:none}.ec-resizer{position:absolute;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ec-month .ec-resizer,.ec-all-day .ec-resizer{top:0;right:0;bottom:0;width:50%;max-width:8px;cursor:ew-resize}.ec-week .ec-body .ec-resizer{left:0;right:0;bottom:0;height:50%;max-height:8px;cursor:ns-resize}.ec-dragging{cursor:pointer !important}.ec-resizing-y{cursor:ns-resize !important}.ec-resizing-x{cursor:ew-resize !important}
|