@syncfusion/ej2-schedule 25.2.7 → 26.1.35

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.
Files changed (161) hide show
  1. package/.eslintrc.json +3 -2
  2. package/dist/ej2-schedule.min.js +2 -2
  3. package/dist/ej2-schedule.umd.min.js +2 -2
  4. package/dist/ej2-schedule.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-schedule.es2015.js +331 -332
  6. package/dist/es6/ej2-schedule.es2015.js.map +1 -1
  7. package/dist/es6/ej2-schedule.es5.js +392 -407
  8. package/dist/es6/ej2-schedule.es5.js.map +1 -1
  9. package/dist/global/ej2-schedule.min.js +2 -2
  10. package/dist/global/ej2-schedule.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +17 -16
  13. package/src/recurrence-editor/date-generator.js +1 -0
  14. package/src/recurrence-editor/recurrence-editor.d.ts +8 -8
  15. package/src/recurrence-editor/recurrence-editor.js +1 -2
  16. package/src/schedule/actions/drag.js +2 -1
  17. package/src/schedule/actions/keyboard.js +1 -1
  18. package/src/schedule/actions/virtual-scroll.js +2 -1
  19. package/src/schedule/base/interface.js +0 -1
  20. package/src/schedule/base/schedule-model.d.ts +11 -11
  21. package/src/schedule/base/schedule.d.ts +11 -11
  22. package/src/schedule/base/schedule.js +22 -9
  23. package/src/schedule/base/util.js +1 -1
  24. package/src/schedule/event-renderer/event-base.js +5 -3
  25. package/src/schedule/event-renderer/timeline-view.js +4 -2
  26. package/src/schedule/event-renderer/year.js +2 -1
  27. package/src/schedule/exports/calendar-import.js +1 -2
  28. package/src/schedule/models/toolbar-model.d.ts +2 -2
  29. package/src/schedule/popups/event-window.js +1 -1
  30. package/src/schedule/renderer/header-renderer.js +6 -4
  31. package/src/schedule/renderer/vertical-view.js +3 -0
  32. package/src/schedule/renderer/view-base.js +8 -4
  33. package/styles/bootstrap-dark.css +236 -147
  34. package/styles/bootstrap-dark.scss +19 -2
  35. package/styles/bootstrap.css +237 -148
  36. package/styles/bootstrap.scss +19 -2
  37. package/styles/bootstrap4.css +239 -153
  38. package/styles/bootstrap4.scss +19 -2
  39. package/styles/bootstrap5-dark.css +229 -144
  40. package/styles/bootstrap5-dark.scss +19 -2
  41. package/styles/bootstrap5.css +229 -144
  42. package/styles/bootstrap5.scss +19 -2
  43. package/styles/fabric-dark.css +234 -146
  44. package/styles/fabric-dark.scss +19 -2
  45. package/styles/fabric.css +234 -146
  46. package/styles/fabric.scss +19 -2
  47. package/styles/fluent-dark.css +229 -142
  48. package/styles/fluent-dark.scss +19 -2
  49. package/styles/fluent.css +229 -142
  50. package/styles/fluent.scss +19 -2
  51. package/styles/fluent2.css +5932 -0
  52. package/styles/fluent2.scss +19 -0
  53. package/styles/highcontrast-light.css +229 -138
  54. package/styles/highcontrast-light.scss +19 -2
  55. package/styles/highcontrast.css +229 -138
  56. package/styles/highcontrast.scss +19 -2
  57. package/styles/material-dark.css +273 -155
  58. package/styles/material-dark.scss +19 -2
  59. package/styles/material.css +285 -156
  60. package/styles/material.scss +19 -2
  61. package/styles/material3-dark.css +278 -154
  62. package/styles/material3-dark.scss +19 -2
  63. package/styles/material3.css +278 -154
  64. package/styles/material3.scss +19 -2
  65. package/styles/recurrence-editor/_bds-definition.scss +0 -1
  66. package/styles/recurrence-editor/_bootstrap-dark-definition.scss +0 -1
  67. package/styles/recurrence-editor/_bootstrap-definition.scss +0 -1
  68. package/styles/recurrence-editor/_bootstrap4-definition.scss +0 -1
  69. package/styles/recurrence-editor/_bootstrap5-definition.scss +0 -1
  70. package/styles/recurrence-editor/_bootstrap5.3-definition.scss +14 -0
  71. package/styles/recurrence-editor/_fabric-dark-definition.scss +0 -1
  72. package/styles/recurrence-editor/_fabric-definition.scss +0 -1
  73. package/styles/recurrence-editor/_fluent-definition.scss +0 -1
  74. package/styles/recurrence-editor/_fluent2-definition.scss +14 -0
  75. package/styles/recurrence-editor/_fusionnew-definition.scss +0 -1
  76. package/styles/recurrence-editor/_highcontrast-definition.scss +0 -1
  77. package/styles/recurrence-editor/_highcontrast-light-definition.scss +0 -1
  78. package/styles/recurrence-editor/_layout.scss +1 -17
  79. package/styles/recurrence-editor/_material-dark-definition.scss +0 -1
  80. package/styles/recurrence-editor/_material-definition.scss +0 -1
  81. package/styles/recurrence-editor/_material3-definition.scss +0 -1
  82. package/styles/recurrence-editor/_tailwind-definition.scss +0 -1
  83. package/styles/recurrence-editor/bootstrap-dark.css +21 -23
  84. package/styles/recurrence-editor/bootstrap.css +21 -23
  85. package/styles/recurrence-editor/bootstrap4.css +22 -23
  86. package/styles/recurrence-editor/bootstrap5-dark.css +22 -23
  87. package/styles/recurrence-editor/bootstrap5.css +22 -23
  88. package/styles/recurrence-editor/fabric-dark.css +19 -22
  89. package/styles/recurrence-editor/fabric.css +19 -22
  90. package/styles/recurrence-editor/fluent-dark.css +22 -23
  91. package/styles/recurrence-editor/fluent.css +22 -23
  92. package/styles/recurrence-editor/fluent2.css +1534 -0
  93. package/styles/recurrence-editor/fluent2.scss +8 -0
  94. package/styles/recurrence-editor/highcontrast-light.css +19 -22
  95. package/styles/recurrence-editor/highcontrast.css +19 -22
  96. package/styles/recurrence-editor/material-dark.css +32 -26
  97. package/styles/recurrence-editor/material.css +32 -26
  98. package/styles/recurrence-editor/material3-dark.css +33 -27
  99. package/styles/recurrence-editor/material3.css +33 -27
  100. package/styles/recurrence-editor/tailwind-dark.css +32 -26
  101. package/styles/recurrence-editor/tailwind.css +32 -26
  102. package/styles/schedule/_bds-definition.scss +0 -15
  103. package/styles/schedule/_bootstrap-dark-definition.scss +4 -19
  104. package/styles/schedule/_bootstrap-definition.scss +4 -19
  105. package/styles/schedule/_bootstrap4-definition.scss +3 -18
  106. package/styles/schedule/_bootstrap5-definition.scss +1 -22
  107. package/styles/schedule/_bootstrap5.3-definition.scss +273 -0
  108. package/styles/schedule/_fabric-dark-definition.scss +4 -17
  109. package/styles/schedule/_fabric-definition.scss +4 -19
  110. package/styles/schedule/_fluent-definition.scss +0 -14
  111. package/styles/schedule/_fluent2-definition.scss +273 -0
  112. package/styles/schedule/_fusionnew-definition.scss +0 -21
  113. package/styles/schedule/_highcontrast-definition.scss +1 -16
  114. package/styles/schedule/_highcontrast-light-definition.scss +1 -16
  115. package/styles/schedule/_layout.scss +83 -130
  116. package/styles/schedule/_material-dark-definition.scss +5 -20
  117. package/styles/schedule/_material-definition.scss +4 -19
  118. package/styles/schedule/_material3-definition.scss +1 -23
  119. package/styles/schedule/_tailwind-definition.scss +0 -16
  120. package/styles/schedule/_theme.scss +14 -2
  121. package/styles/schedule/bootstrap-dark.css +220 -126
  122. package/styles/schedule/bootstrap.css +221 -127
  123. package/styles/schedule/bootstrap4.css +223 -132
  124. package/styles/schedule/bootstrap5-dark.css +213 -123
  125. package/styles/schedule/bootstrap5.css +213 -123
  126. package/styles/schedule/fabric-dark.css +218 -125
  127. package/styles/schedule/fabric.css +218 -125
  128. package/styles/schedule/fluent-dark.css +213 -121
  129. package/styles/schedule/fluent.css +213 -121
  130. package/styles/schedule/fluent2.css +5536 -0
  131. package/styles/schedule/fluent2.scss +16 -0
  132. package/styles/schedule/highcontrast-light.css +213 -117
  133. package/styles/schedule/highcontrast.css +213 -117
  134. package/styles/schedule/icons/_bds.scss +6 -21
  135. package/styles/schedule/icons/_bootstrap-dark.scss +4 -16
  136. package/styles/schedule/icons/_bootstrap.scss +4 -16
  137. package/styles/schedule/icons/_bootstrap4.scss +8 -26
  138. package/styles/schedule/icons/_bootstrap5.3.scss +220 -0
  139. package/styles/schedule/icons/_bootstrap5.scss +7 -22
  140. package/styles/schedule/icons/_fabric-dark.scss +5 -17
  141. package/styles/schedule/icons/_fabric.scss +5 -17
  142. package/styles/schedule/icons/_fluent.scss +7 -22
  143. package/styles/schedule/icons/_fluent2.scss +220 -0
  144. package/styles/schedule/icons/_fusionnew.scss +7 -22
  145. package/styles/schedule/icons/_highcontrast-light.scss +5 -17
  146. package/styles/schedule/icons/_highcontrast.scss +5 -17
  147. package/styles/schedule/icons/_material-dark.scss +5 -17
  148. package/styles/schedule/icons/_material.scss +5 -17
  149. package/styles/schedule/icons/_material3.scss +7 -22
  150. package/styles/schedule/icons/_tailwind.scss +7 -22
  151. package/styles/schedule/material-dark.css +257 -134
  152. package/styles/schedule/material.css +269 -135
  153. package/styles/schedule/material3-dark.css +262 -133
  154. package/styles/schedule/material3.css +262 -133
  155. package/styles/schedule/tailwind-dark.css +223 -124
  156. package/styles/schedule/tailwind.css +223 -124
  157. package/styles/tailwind-dark.css +239 -145
  158. package/styles/tailwind-dark.scss +19 -2
  159. package/styles/tailwind.css +239 -145
  160. package/styles/tailwind.scss +19 -2
  161. package/CHANGELOG.md +0 -1932
@@ -4,7 +4,8 @@
4
4
  /*! calendar bootstrap5 theme variables */
5
5
  .e-popup.e-ddl {
6
6
  border-radius: 4px;
7
- box-shadow: none;
7
+ -webkit-box-shadow: none;
8
+ box-shadow: none;
8
9
  margin-top: 1px;
9
10
  }
10
11
  .e-popup.e-ddl .e-input-group {
@@ -19,6 +20,7 @@
19
20
  }
20
21
 
21
22
  .e-popup.e-ddl .e-filter-parent .e-input-group {
23
+ display: -webkit-box;
22
24
  display: -ms-flexbox;
23
25
  display: flex;
24
26
  width: auto;
@@ -90,11 +92,13 @@
90
92
  .e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-input-group-icon:active,
91
93
  .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
92
94
  .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active {
93
- box-shadow: none;
95
+ -webkit-box-shadow: none;
96
+ box-shadow: none;
94
97
  }
95
98
 
96
99
  .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon {
97
100
  background: none;
101
+ display: -webkit-box;
98
102
  display: -ms-flexbox;
99
103
  display: flex;
100
104
  position: relative;
@@ -169,7 +173,6 @@
169
173
  margin-top: -1.6em;
170
174
  }
171
175
 
172
- /*! recurrence editor theme wise definitions*/ /*! Schedule component's bootstrap5 theme definitions and variables */
173
176
  .e-schedule .e-schedule-toolbar .e-icon-prev::before {
174
177
  content: "\e765";
175
178
  }
@@ -188,13 +191,10 @@
188
191
  .e-schedule .e-schedule-toolbar .e-icon-day::before {
189
192
  content: "\e75e";
190
193
  }
191
- .e-schedule .e-schedule-toolbar .e-icon-week::before {
194
+ .e-schedule .e-schedule-toolbar .e-icon-week::before, .e-schedule .e-schedule-toolbar .e-icon-workweek::before {
192
195
  content: "\e817";
193
196
  }
194
- .e-schedule .e-schedule-toolbar .e-icon-workweek::before {
195
- content: "\e817";
196
- }
197
- .e-schedule .e-schedule-toolbar .e-icon-month::before {
197
+ .e-schedule .e-schedule-toolbar .e-icon-month::before, .e-schedule .e-schedule-toolbar .e-icon-year::before {
198
198
  content: "\e7c5";
199
199
  }
200
200
  .e-schedule .e-schedule-toolbar .e-icon-month-agenda::before {
@@ -203,13 +203,7 @@
203
203
  .e-schedule .e-schedule-toolbar .e-icon-agenda::before {
204
204
  content: "\e74c";
205
205
  }
206
- .e-schedule .e-schedule-toolbar .e-icon-year::before {
207
- content: "\e7c5";
208
- }
209
- .e-schedule .e-schedule-toolbar .e-icon-timeline-year-vertical::before {
210
- content: "\e876";
211
- }
212
- .e-schedule .e-schedule-toolbar .e-icon-timeline-year-horizontal::before {
206
+ .e-schedule .e-schedule-toolbar .e-icon-timeline-year-vertical::before, .e-schedule .e-schedule-toolbar .e-icon-timeline-year-horizontal::before, .e-schedule .e-schedule-toolbar .e-icon-timeline-month::before {
213
207
  content: "\e876";
214
208
  }
215
209
  .e-schedule .e-schedule-toolbar .e-icon-timeline-day::before {
@@ -221,12 +215,7 @@
221
215
  .e-schedule .e-schedule-toolbar .e-icon-timeline-workweek::before {
222
216
  content: "\e720";
223
217
  }
224
- .e-schedule .e-schedule-toolbar .e-icon-timeline-month::before {
225
- content: "\e876";
226
- }
227
- .e-schedule .e-schedule-toolbar.e-toolbar .e-popup-down-icon::before {
228
- content: "\e770";
229
- }
218
+ .e-schedule .e-schedule-toolbar.e-toolbar .e-popup-down-icon::before,
230
219
  .e-schedule .e-schedule-toolbar.e-toolbar .e-popup-up-icon::before {
231
220
  content: "\e770";
232
221
  }
@@ -328,20 +317,21 @@
328
317
  content: "\e7e7";
329
318
  }
330
319
 
331
- /*! schedule component layout */
332
320
  .e-schedule {
333
321
  display: block;
334
322
  outline: medium none;
335
323
  overflow: hidden;
336
324
  position: relative;
337
325
  -webkit-user-select: none;
326
+ -moz-user-select: none;
338
327
  -ms-user-select: none;
339
328
  user-select: none;
340
329
  }
341
330
  .e-schedule .e-schedule-toolbar {
342
331
  border: 0;
343
332
  border-bottom: 1px solid #edebe9;
344
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
333
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
334
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
345
335
  margin-bottom: 3px;
346
336
  min-height: 38px;
347
337
  }
@@ -438,6 +428,12 @@
438
428
  .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items {
439
429
  height: 54px;
440
430
  }
431
+ .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-today .e-icon-today + .e-tbar-btn-text {
432
+ display: none;
433
+ }
434
+ .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-today .e-icon-today {
435
+ display: block;
436
+ }
441
437
  .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
442
438
  height: 54px;
443
439
  min-height: 54px;
@@ -481,7 +477,9 @@
481
477
  .e-schedule .e-schedule-resource-toolbar {
482
478
  background: #fff;
483
479
  border-bottom: 1px solid #edebe9;
484
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
480
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
481
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
482
+ display: -webkit-box;
485
483
  display: -ms-flexbox;
486
484
  display: flex;
487
485
  margin-bottom: 3px;
@@ -498,6 +496,7 @@
498
496
  display: none;
499
497
  }
500
498
  .e-schedule .e-schedule-resource-toolbar .e-resource-level-title {
499
+ display: -webkit-box;
501
500
  display: -ms-flexbox;
502
501
  display: flex;
503
502
  }
@@ -530,17 +529,22 @@
530
529
  text-align: center;
531
530
  }
532
531
  .e-schedule .e-table-container {
532
+ display: -webkit-inline-box;
533
533
  display: -ms-inline-flexbox;
534
534
  display: inline-flex;
535
535
  position: relative;
536
536
  vertical-align: top;
537
537
  }
538
538
  .e-schedule .e-table-container.e-translate {
539
+ -webkit-transition: -webkit-transform 0.1s ease 0s;
540
+ transition: -webkit-transform 0.1s ease 0s;
539
541
  transition: transform 0.1s ease 0s;
542
+ transition: transform 0.1s ease 0s, -webkit-transform 0.1s ease 0s;
540
543
  }
541
544
  .e-schedule .e-resource-tree-popup {
542
545
  background: #faf9f8;
543
- box-shadow: 0 3px 4px 0.2px rgba(0, 0, 0, 0.15);
546
+ -webkit-box-shadow: 0 3px 4px 0.2px rgba(0, 0, 0, 0.15);
547
+ box-shadow: 0 3px 4px 0.2px rgba(0, 0, 0, 0.15);
544
548
  height: 100%;
545
549
  position: absolute;
546
550
  width: 250px;
@@ -594,7 +598,8 @@
594
598
  }
595
599
  .e-schedule .e-schedule-table > tbody > tr > th,
596
600
  .e-schedule .e-schedule-table > tbody > tr > td {
597
- box-sizing: border-box;
601
+ -webkit-box-sizing: border-box;
602
+ box-sizing: border-box;
598
603
  font-weight: normal;
599
604
  overflow: hidden;
600
605
  text-overflow: ellipsis;
@@ -675,6 +680,7 @@
675
680
  }
676
681
  .e-schedule .e-appointment {
677
682
  opacity: 1;
683
+ -webkit-transition: opacity 100ms linear;
678
684
  transition: opacity 100ms linear;
679
685
  }
680
686
  .e-schedule .e-appointment .e-subject.e-disable {
@@ -726,7 +732,8 @@
726
732
  height: 10px;
727
733
  left: 50%;
728
734
  position: absolute;
729
- transform: translateX(-50%);
735
+ -webkit-transform: translateX(-50%);
736
+ transform: translateX(-50%);
730
737
  width: 100%;
731
738
  }
732
739
  .e-schedule.e-device .e-appointment.e-appointment-border .e-left-right-resize {
@@ -734,7 +741,8 @@
734
741
  height: 100%;
735
742
  position: absolute;
736
743
  top: 50%;
737
- transform: translateY(-50%);
744
+ -webkit-transform: translateY(-50%);
745
+ transform: translateY(-50%);
738
746
  width: 10px;
739
747
  }
740
748
  .e-schedule.e-device .e-appointment.e-appointment-border .e-top-handler .e-top-bottom-resize {
@@ -803,24 +811,28 @@
803
811
  border: 1px solid #edebe9;
804
812
  border-radius: 2px;
805
813
  color: #fff;
814
+ display: -webkit-box;
806
815
  display: -ms-flexbox;
807
816
  display: flex;
808
- height: 54px;
809
- margin-bottom: 2px;
810
817
  overflow: hidden;
811
818
  position: absolute;
819
+ height: 54px;
820
+ margin-bottom: 2px;
812
821
  }
813
822
  .e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-appointment-details {
823
+ display: -webkit-box;
814
824
  display: -ms-flexbox;
815
825
  display: flex;
816
- -ms-flex: auto;
817
- flex: auto;
826
+ -webkit-box-flex: 1;
827
+ -ms-flex: auto;
828
+ flex: auto;
818
829
  padding: 2px 4px 0 2px;
819
830
  text-align: left;
820
831
  }
821
832
  .e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-inner-wrap {
822
- -ms-flex: auto;
823
- flex: auto;
833
+ -webkit-box-flex: 1;
834
+ -ms-flex: auto;
835
+ flex: auto;
824
836
  overflow: hidden;
825
837
  }
826
838
  .e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-subject {
@@ -857,7 +869,8 @@
857
869
  }
858
870
  .e-schedule .e-vertical-view.e-timescale-disable .e-appointment.e-appointment-border, .e-schedule .e-vertical-view.e-timescale-disable .e-appointment:focus {
859
871
  border: 0;
860
- box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
872
+ -webkit-box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
873
+ box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
861
874
  }
862
875
  .e-schedule .e-vertical-view.e-timescale-disable .e-appointment.e-allow-select {
863
876
  pointer-events: none;
@@ -968,18 +981,24 @@
968
981
  margin: 0 auto;
969
982
  position: absolute;
970
983
  right: 0;
971
- transform: rotate(0deg);
984
+ -webkit-transform: rotate(0deg);
985
+ transform: rotate(0deg);
986
+ -webkit-transition: -webkit-transform 300ms ease-in-out;
987
+ transition: -webkit-transform 300ms ease-in-out;
972
988
  transition: transform 300ms ease-in-out;
989
+ transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
973
990
  width: 25px;
974
991
  }
975
992
  .e-schedule .e-vertical-view .e-all-day-appointment-section.e-disable {
976
993
  display: none;
977
994
  }
978
995
  .e-schedule .e-vertical-view .e-all-day-appointment-section.e-appointment-expand {
979
- transform: rotate(0deg);
996
+ -webkit-transform: rotate(0deg);
997
+ transform: rotate(0deg);
980
998
  }
981
999
  .e-schedule .e-vertical-view .e-all-day-appointment-section.e-appointment-collapse {
982
- transform: rotate(180deg);
1000
+ -webkit-transform: rotate(180deg);
1001
+ transform: rotate(180deg);
983
1002
  }
984
1003
  .e-schedule .e-vertical-view .e-all-day-appointment-section:hover, .e-schedule .e-vertical-view .e-all-day-appointment-section:focus {
985
1004
  background: #edebe9;
@@ -996,6 +1015,7 @@
996
1015
  vertical-align: top;
997
1016
  }
998
1017
  .e-schedule .e-vertical-view .e-all-day-cells:first-child.e-animate {
1018
+ -webkit-transition: 250ms ease-out;
999
1019
  transition: 250ms ease-out;
1000
1020
  }
1001
1021
  .e-schedule .e-vertical-view .e-time-cells-wrap table td,
@@ -1015,7 +1035,8 @@
1015
1035
  }
1016
1036
  .e-schedule .e-vertical-view.e-virtual-mask .e-work-cells {
1017
1037
  background: #f3f2f1;
1018
- box-shadow: inset 0 0 0 8px #faf9f8;
1038
+ -webkit-box-shadow: inset 0 0 0 8px #faf9f8;
1039
+ box-shadow: inset 0 0 0 8px #faf9f8;
1019
1040
  }
1020
1041
  .e-schedule .e-vertical-view.e-virtual-mask .e-work-cells:hover {
1021
1042
  background: #f3f2f1;
@@ -1082,24 +1103,28 @@
1082
1103
  border: 1px solid #edebe9;
1083
1104
  border-radius: 2px;
1084
1105
  color: #fff;
1106
+ display: -webkit-box;
1085
1107
  display: -ms-flexbox;
1086
1108
  display: flex;
1087
- height: 26px;
1088
1109
  overflow: hidden;
1089
1110
  position: absolute;
1111
+ height: 26px;
1090
1112
  }
1091
1113
  .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment .e-appointment-details {
1114
+ display: -webkit-box;
1092
1115
  display: -ms-flexbox;
1093
1116
  display: flex;
1094
- -ms-flex: auto;
1095
- flex: auto;
1117
+ -webkit-box-flex: 1;
1118
+ -ms-flex: auto;
1119
+ flex: auto;
1096
1120
  line-height: 18px;
1097
1121
  overflow: hidden;
1098
1122
  padding: 1px 0 1px 4px;
1099
1123
  }
1100
1124
  .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment .e-appointment-details .e-subject {
1101
- -ms-flex: auto;
1102
- flex: auto;
1125
+ -webkit-box-flex: 1;
1126
+ -ms-flex: auto;
1127
+ flex: auto;
1103
1128
  font-size: 13px;
1104
1129
  font-weight: 500;
1105
1130
  overflow: hidden;
@@ -1122,7 +1147,8 @@
1122
1147
  }
1123
1148
  .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment.e-appointment-border, .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:focus {
1124
1149
  border: 0;
1125
- box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
1150
+ -webkit-box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
1151
+ box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
1126
1152
  }
1127
1153
  .e-schedule .e-vertical-view .e-day-wrapper .e-appointment:not(.e-schedule-event-clone) {
1128
1154
  cursor: default;
@@ -1136,8 +1162,9 @@
1136
1162
  position: absolute;
1137
1163
  }
1138
1164
  .e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-appointment-details {
1139
- -ms-flex: auto;
1140
- flex: auto;
1165
+ -webkit-box-flex: 1;
1166
+ -ms-flex: auto;
1167
+ flex: auto;
1141
1168
  padding: 0 4px;
1142
1169
  text-align: left;
1143
1170
  line-height: unset;
@@ -1196,7 +1223,8 @@
1196
1223
  }
1197
1224
  .e-schedule .e-vertical-view .e-day-wrapper .e-appointment.e-appointment-border, .e-schedule .e-vertical-view .e-day-wrapper .e-appointment:focus {
1198
1225
  border: 0;
1199
- box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
1226
+ -webkit-box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
1227
+ box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
1200
1228
  }
1201
1229
  .e-schedule .e-vertical-view.e-day-view .e-header-date {
1202
1230
  cursor: default;
@@ -1342,7 +1370,8 @@
1342
1370
  }
1343
1371
  .e-schedule .e-month-view.e-virtual-mask .e-work-cells {
1344
1372
  background: #f3f2f1;
1345
- box-shadow: inset 0 0 0 8px #faf9f8;
1373
+ -webkit-box-shadow: inset 0 0 0 8px #faf9f8;
1374
+ box-shadow: inset 0 0 0 8px #faf9f8;
1346
1375
  }
1347
1376
  .e-schedule .e-month-view.e-virtual-mask .e-work-cells:hover {
1348
1377
  background: #f3f2f1;
@@ -1375,27 +1404,31 @@
1375
1404
  border: 1px solid #edebe9;
1376
1405
  border-radius: 2px;
1377
1406
  color: #fff;
1378
- cursor: default;
1407
+ display: -webkit-box;
1379
1408
  display: -ms-flexbox;
1380
1409
  display: flex;
1381
- height: 26px;
1382
1410
  overflow: hidden;
1383
1411
  position: absolute;
1412
+ cursor: default;
1413
+ height: 26px;
1384
1414
  }
1385
1415
  .e-schedule .e-month-view .e-appointment .e-disable {
1386
1416
  display: none;
1387
1417
  }
1388
1418
  .e-schedule .e-month-view .e-appointment .e-appointment-details {
1419
+ display: -webkit-box;
1389
1420
  display: -ms-flexbox;
1390
1421
  display: flex;
1391
- -ms-flex: auto;
1392
- flex: auto;
1422
+ -webkit-box-flex: 1;
1423
+ -ms-flex: auto;
1424
+ flex: auto;
1393
1425
  line-height: 18px;
1394
1426
  overflow: hidden;
1395
1427
  }
1396
1428
  .e-schedule .e-month-view .e-appointment .e-appointment-details .e-subject {
1397
- -ms-flex: auto;
1398
- flex: auto;
1429
+ -webkit-box-flex: 1;
1430
+ -ms-flex: auto;
1431
+ flex: auto;
1399
1432
  font-size: 13px;
1400
1433
  font-weight: 500;
1401
1434
  overflow: hidden;
@@ -1419,7 +1452,8 @@
1419
1452
  }
1420
1453
  .e-schedule .e-month-view .e-appointment.e-appointment-border, .e-schedule .e-month-view .e-appointment:focus {
1421
1454
  border: 0;
1422
- box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
1455
+ -webkit-box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
1456
+ box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
1423
1457
  }
1424
1458
  .e-schedule .e-month-view .e-appointment.e-allow-select {
1425
1459
  pointer-events: none;
@@ -1444,26 +1478,26 @@
1444
1478
  .e-schedule.e-rtl .e-month-view .e-date-header {
1445
1479
  margin: 3px 3px 2px;
1446
1480
  }
1447
- .e-schedule.e-rtl .e-month-view .e-left-indent {
1448
- border-left: 1px solid #edebe9;
1449
- border-right-width: 0;
1450
- }
1481
+ .e-schedule.e-rtl .e-month-view .e-left-indent,
1451
1482
  .e-schedule.e-rtl .e-month-view .e-week-number {
1452
1483
  border-left: 1px solid #edebe9;
1453
1484
  border-right-width: 0;
1454
1485
  }
1455
1486
  .e-schedule .e-year-view .e-calendar-wrapper {
1487
+ display: -webkit-box;
1456
1488
  display: -ms-flexbox;
1457
1489
  display: flex;
1458
1490
  -ms-flex-wrap: wrap;
1459
1491
  flex-wrap: wrap;
1460
- -ms-flex-pack: center;
1461
- justify-content: center;
1492
+ -webkit-box-pack: center;
1493
+ -ms-flex-pack: center;
1494
+ justify-content: center;
1462
1495
  }
1463
1496
  .e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
1464
1497
  border: 0;
1465
- -ms-flex: 0 25%;
1466
- flex: 0 25%;
1498
+ -webkit-box-flex: 0;
1499
+ -ms-flex: 0 25%;
1500
+ flex: 0 25%;
1467
1501
  max-width: 100%;
1468
1502
  min-width: 260px;
1469
1503
  padding: 10px;
@@ -1614,7 +1648,8 @@
1614
1648
  padding: 4px 7px;
1615
1649
  }
1616
1650
  .e-schedule .e-timeline-year-view .e-resource-collapse {
1617
- transform: rotate(90deg);
1651
+ -webkit-transform: rotate(90deg);
1652
+ transform: rotate(90deg);
1618
1653
  }
1619
1654
  .e-schedule .e-timeline-year-view .e-content-table {
1620
1655
  height: 100%;
@@ -1697,27 +1732,31 @@
1697
1732
  border: 1px solid #edebe9;
1698
1733
  border-radius: 2px;
1699
1734
  color: #fff;
1700
- cursor: default;
1735
+ display: -webkit-box;
1701
1736
  display: -ms-flexbox;
1702
1737
  display: flex;
1703
- height: 26px;
1704
1738
  overflow: hidden;
1705
1739
  position: absolute;
1740
+ cursor: default;
1741
+ height: 26px;
1706
1742
  }
1707
1743
  .e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-hidden {
1708
1744
  display: none;
1709
1745
  }
1710
1746
  .e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-appointment-details {
1747
+ display: -webkit-box;
1711
1748
  display: -ms-flexbox;
1712
1749
  display: flex;
1713
- -ms-flex: auto;
1714
- flex: auto;
1750
+ -webkit-box-flex: 1;
1751
+ -ms-flex: auto;
1752
+ flex: auto;
1715
1753
  line-height: 20px;
1716
1754
  overflow: hidden;
1717
1755
  }
1718
1756
  .e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-subject {
1719
- -ms-flex: auto;
1720
- flex: auto;
1757
+ -webkit-box-flex: 1;
1758
+ -ms-flex: auto;
1759
+ flex: auto;
1721
1760
  font-size: 13px;
1722
1761
  font-weight: 500;
1723
1762
  overflow: hidden;
@@ -1746,7 +1785,8 @@
1746
1785
  }
1747
1786
  .e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-appointment-border, .e-schedule .e-timeline-year-view .e-event-table .e-appointment:focus {
1748
1787
  border: 0;
1749
- box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
1788
+ -webkit-box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
1789
+ box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
1750
1790
  }
1751
1791
  .e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-allow-select {
1752
1792
  pointer-events: none;
@@ -1893,7 +1933,8 @@
1893
1933
  .e-schedule .e-timeline-view.e-virtual-mask .e-work-cells,
1894
1934
  .e-schedule .e-timeline-month-view.e-virtual-mask .e-work-cells {
1895
1935
  background: #f3f2f1;
1896
- box-shadow: inset 0 0 0 8px #faf9f8;
1936
+ -webkit-box-shadow: inset 0 0 0 8px #faf9f8;
1937
+ box-shadow: inset 0 0 0 8px #faf9f8;
1897
1938
  }
1898
1939
  .e-schedule .e-timeline-view .e-resource-tree-icon,
1899
1940
  .e-schedule .e-timeline-month-view .e-resource-tree-icon {
@@ -1906,7 +1947,8 @@
1906
1947
  }
1907
1948
  .e-schedule .e-timeline-view .e-resource-collapse,
1908
1949
  .e-schedule .e-timeline-month-view .e-resource-collapse {
1909
- transform: rotate(90deg);
1950
+ -webkit-transform: rotate(90deg);
1951
+ transform: rotate(90deg);
1910
1952
  }
1911
1953
  .e-schedule .e-timeline-view .e-child-node,
1912
1954
  .e-schedule .e-timeline-month-view .e-child-node {
@@ -1926,26 +1968,30 @@
1926
1968
  border: 1px solid #edebe9;
1927
1969
  border-radius: 2px;
1928
1970
  color: #fff;
1929
- cursor: default;
1971
+ display: -webkit-box;
1930
1972
  display: -ms-flexbox;
1931
1973
  display: flex;
1932
- height: 38px;
1933
1974
  overflow: hidden;
1934
1975
  position: absolute;
1976
+ cursor: default;
1977
+ height: 38px;
1935
1978
  }
1936
1979
  .e-schedule .e-timeline-view .e-appointment .e-appointment-details,
1937
1980
  .e-schedule .e-timeline-month-view .e-appointment .e-appointment-details {
1981
+ display: -webkit-box;
1938
1982
  display: -ms-flexbox;
1939
1983
  display: flex;
1940
- -ms-flex: auto;
1941
- flex: auto;
1984
+ -webkit-box-flex: 1;
1985
+ -ms-flex: auto;
1986
+ flex: auto;
1942
1987
  overflow: hidden;
1943
1988
  padding: 0 4px;
1944
1989
  }
1945
1990
  .e-schedule .e-timeline-view .e-appointment .e-appointment-details .e-inner-wrap,
1946
1991
  .e-schedule .e-timeline-month-view .e-appointment .e-appointment-details .e-inner-wrap {
1947
- -ms-flex: auto;
1948
- flex: auto;
1992
+ -webkit-box-flex: 1;
1993
+ -ms-flex: auto;
1994
+ flex: auto;
1949
1995
  overflow: hidden;
1950
1996
  }
1951
1997
  .e-schedule .e-timeline-view .e-appointment .e-subject,
@@ -2004,7 +2050,8 @@
2004
2050
  .e-schedule .e-timeline-month-view .e-appointment.e-appointment-border,
2005
2051
  .e-schedule .e-timeline-month-view .e-appointment:focus {
2006
2052
  border: 0;
2007
- box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
2053
+ -webkit-box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
2054
+ box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
2008
2055
  }
2009
2056
  .e-schedule .e-timeline-view .e-appointment.e-allow-select,
2010
2057
  .e-schedule .e-timeline-month-view .e-appointment.e-allow-select {
@@ -2042,10 +2089,12 @@
2042
2089
  width: 70px;
2043
2090
  }
2044
2091
  .e-schedule .e-virtual-scroll.e-vertical-view .e-content-table, .e-schedule .e-virtual-scroll.e-month-view .e-content-table {
2045
- transform: translateX(0);
2092
+ -webkit-transform: translateX(0);
2093
+ transform: translateX(0);
2046
2094
  }
2047
2095
  .e-schedule .e-virtual-scroll.e-timeline-view .e-content-table, .e-schedule .e-virtual-scroll.e-timeline-month-view .e-content-table, .e-schedule .e-virtual-scroll.e-timeline-year-view.e-vertical .e-content-table {
2048
- transform: translateY(0);
2096
+ -webkit-transform: translateY(0);
2097
+ transform: translateY(0);
2049
2098
  }
2050
2099
  .e-schedule .e-virtual-scroll .e-content-table {
2051
2100
  position: absolute;
@@ -2055,6 +2104,7 @@
2055
2104
  }
2056
2105
  .e-schedule .e-virtual-scroll .e-content-wrap.e-transition,
2057
2106
  .e-schedule .e-virtual-scroll .e-resource-column-wrap.e-transition {
2107
+ -webkit-transition: all 1000ms linear;
2058
2108
  transition: all 1000ms linear;
2059
2109
  }
2060
2110
  .e-schedule.e-rtl .e-timeline-view .e-appointment .e-left-icon,
@@ -2135,14 +2185,15 @@
2135
2185
  .e-schedule .e-month-agenda-view .e-week-number-wrapper .e-schedule-table,
2136
2186
  .e-schedule .e-month-agenda-view .e-content-table {
2137
2187
  border-bottom: 2px solid #edebe9;
2138
- box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
2188
+ -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
2189
+ box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
2139
2190
  height: 100%;
2140
2191
  }
2141
2192
  .e-schedule .e-month-agenda-view .e-resource-column {
2142
2193
  border-bottom: 1px solid #edebe9;
2143
- border-right: 1px solid #edebe9;
2144
2194
  vertical-align: top;
2145
2195
  width: 75px;
2196
+ border-right: 1px solid #edebe9;
2146
2197
  }
2147
2198
  .e-schedule .e-month-agenda-view .e-resource-name {
2148
2199
  color: #201f1e;
@@ -2211,12 +2262,16 @@
2211
2262
  background: #edebe9;
2212
2263
  }
2213
2264
  .e-schedule .e-month-agenda-view .e-appointment.e-template {
2265
+ display: -webkit-inline-box;
2214
2266
  display: -ms-inline-flexbox;
2215
2267
  display: inline-flex;
2216
- -ms-flex-direction: row-reverse;
2217
- flex-direction: row-reverse;
2268
+ -webkit-box-orient: horizontal;
2269
+ -webkit-box-direction: reverse;
2270
+ -ms-flex-direction: row-reverse;
2271
+ flex-direction: row-reverse;
2218
2272
  }
2219
2273
  .e-schedule .e-month-agenda-view .e-subject-wrap {
2274
+ display: -webkit-box;
2220
2275
  display: -ms-flexbox;
2221
2276
  display: flex;
2222
2277
  }
@@ -2270,10 +2325,7 @@
2270
2325
  margin: 1px auto;
2271
2326
  width: 6px;
2272
2327
  }
2273
- .e-schedule.e-rtl .e-month-agenda-view .e-left-indent {
2274
- border-left: 1px solid #edebe9;
2275
- border-right-width: 0;
2276
- }
2328
+ .e-schedule.e-rtl .e-month-agenda-view .e-left-indent,
2277
2329
  .e-schedule.e-rtl .e-month-agenda-view .e-week-number {
2278
2330
  border-left: 1px solid #edebe9;
2279
2331
  border-right-width: 0;
@@ -2311,10 +2363,10 @@
2311
2363
  }
2312
2364
  .e-schedule .e-agenda-view .e-resource-column {
2313
2365
  border-bottom: 1px solid #edebe9;
2314
- border-right: 1px solid #edebe9;
2315
- color: #323130;
2316
2366
  vertical-align: top;
2317
2367
  width: 75px;
2368
+ color: #323130;
2369
+ border-right: 1px solid #edebe9;
2318
2370
  }
2319
2371
  .e-schedule .e-agenda-view .e-month-header {
2320
2372
  background: #0078d4;
@@ -2357,6 +2409,7 @@
2357
2409
  font-size: 12px;
2358
2410
  }
2359
2411
  .e-schedule .e-agenda-view .e-subject-wrap {
2412
+ display: -webkit-box;
2360
2413
  display: -ms-flexbox;
2361
2414
  display: flex;
2362
2415
  margin-bottom: 0;
@@ -2433,10 +2486,13 @@
2433
2486
  background: #edebe9;
2434
2487
  }
2435
2488
  .e-schedule .e-agenda-view .e-appointment.e-template {
2489
+ display: -webkit-inline-box;
2436
2490
  display: -ms-inline-flexbox;
2437
2491
  display: inline-flex;
2438
- -ms-flex-direction: row-reverse;
2439
- flex-direction: row-reverse;
2492
+ -webkit-box-orient: horizontal;
2493
+ -webkit-box-direction: reverse;
2494
+ -ms-flex-direction: row-reverse;
2495
+ flex-direction: row-reverse;
2440
2496
  }
2441
2497
  .e-schedule .e-agenda-view .e-no-event {
2442
2498
  color: #605e5c;
@@ -2468,9 +2524,9 @@
2468
2524
  border-right: 3px solid #0078d4;
2469
2525
  }
2470
2526
  .e-schedule.e-rtl .e-agenda-view .e-resource-column {
2471
- border-bottom: 1px solid #edebe9;
2472
2527
  border-left: 1px solid #edebe9;
2473
2528
  border-right: 0;
2529
+ border-bottom: 1px solid #edebe9;
2474
2530
  vertical-align: top;
2475
2531
  width: 75px;
2476
2532
  }
@@ -2695,6 +2751,7 @@
2695
2751
 
2696
2752
  .e-dialog.e-quick-dialog {
2697
2753
  -webkit-user-select: none;
2754
+ -moz-user-select: none;
2698
2755
  -ms-user-select: none;
2699
2756
  user-select: none;
2700
2757
  width: 320px;
@@ -2709,7 +2766,8 @@
2709
2766
  border-top: none;
2710
2767
  }
2711
2768
  .e-dialog.e-quick-dialog .e-quick-dialog-cancel {
2712
- box-shadow: none;
2769
+ -webkit-box-shadow: none;
2770
+ box-shadow: none;
2713
2771
  }
2714
2772
  .e-dialog.e-quick-dialog.e-rtl {
2715
2773
  text-align: right;
@@ -2757,19 +2815,22 @@
2757
2815
  padding-right: 16px;
2758
2816
  }
2759
2817
  .e-schedule-dialog .e-time-zone-row {
2818
+ display: -webkit-box;
2760
2819
  display: -ms-flexbox;
2761
2820
  display: flex;
2762
2821
  height: 0;
2763
2822
  margin-bottom: 0;
2764
2823
  overflow: hidden;
2765
2824
  padding-bottom: 0;
2825
+ -webkit-transition: 0.3s ease-in-out;
2766
2826
  transition: 0.3s ease-in-out;
2767
2827
  width: 100%;
2768
2828
  }
2769
2829
  .e-schedule-dialog .e-time-zone-row .e-start-time-zone-container,
2770
2830
  .e-schedule-dialog .e-time-zone-row .e-end-time-zone-container {
2771
2831
  display: none;
2772
- transform: translateY(-100%);
2832
+ -webkit-transform: translateY(-100%);
2833
+ transform: translateY(-100%);
2773
2834
  }
2774
2835
  .e-schedule-dialog .e-time-zone-row.e-enable {
2775
2836
  height: 56px;
@@ -2778,12 +2839,14 @@
2778
2839
  .e-schedule-dialog .e-time-zone-row.e-enable .e-start-time-zone-container,
2779
2840
  .e-schedule-dialog .e-time-zone-row.e-enable .e-end-time-zone-container {
2780
2841
  display: block;
2781
- transform: translateY(0);
2842
+ -webkit-transform: translateY(0);
2843
+ transform: translateY(0);
2782
2844
  }
2783
2845
  .e-schedule-dialog .e-title-location-row,
2784
2846
  .e-schedule-dialog .e-start-end-row,
2785
2847
  .e-schedule-dialog .e-start-input-container,
2786
2848
  .e-schedule-dialog .e-end-input-container {
2849
+ display: -webkit-box;
2787
2850
  display: -ms-flexbox;
2788
2851
  display: flex;
2789
2852
  padding-bottom: 12px;
@@ -2794,6 +2857,7 @@
2794
2857
  width: 100%;
2795
2858
  }
2796
2859
  .e-schedule-dialog .e-all-day-time-zone-row {
2860
+ display: -webkit-box;
2797
2861
  display: -ms-flexbox;
2798
2862
  display: flex;
2799
2863
  padding-bottom: 14px;
@@ -2864,6 +2928,7 @@
2864
2928
  }
2865
2929
  }
2866
2930
  .e-ddl.e-popup .e-resource-template {
2931
+ display: -webkit-box;
2867
2932
  display: -ms-flexbox;
2868
2933
  display: flex;
2869
2934
  padding: 0 10px;
@@ -2896,7 +2961,8 @@
2896
2961
  .e-bigger .e-schedule-dialog .e-event-cancel,
2897
2962
  .e-bigger .e-schedule-dialog .e-event-delete {
2898
2963
  border: none;
2899
- box-shadow: none;
2964
+ -webkit-box-shadow: none;
2965
+ box-shadow: none;
2900
2966
  }
2901
2967
  .e-bigger .e-schedule-dialog .e-footer-content .e-btn.e-event-delete {
2902
2968
  float: left;
@@ -2920,6 +2986,7 @@
2920
2986
  display: none;
2921
2987
  }
2922
2988
  .e-bigger .e-schedule-dialog .e-time-zone-row.e-enable {
2989
+ display: -webkit-box;
2923
2990
  display: -ms-flexbox;
2924
2991
  display: flex;
2925
2992
  height: 64px;
@@ -2929,6 +2996,7 @@
2929
2996
  .e-bigger .e-schedule-dialog .e-start-input-container,
2930
2997
  .e-bigger .e-schedule-dialog .e-end-input-container,
2931
2998
  .e-bigger .e-schedule-dialog .e-time-zone-row {
2999
+ display: -webkit-box;
2932
3000
  display: -ms-flexbox;
2933
3001
  display: flex;
2934
3002
  padding-bottom: 12px;
@@ -2939,6 +3007,7 @@
2939
3007
  width: 100%;
2940
3008
  }
2941
3009
  .e-bigger .e-schedule-dialog .e-all-day-time-zone-row {
3010
+ display: -webkit-box;
2942
3011
  display: -ms-flexbox;
2943
3012
  display: flex;
2944
3013
  padding-bottom: 20px;
@@ -3004,7 +3073,8 @@
3004
3073
  }
3005
3074
  .e-schedule-dialog.e-device .e-dlg-header-content {
3006
3075
  background: #fff;
3007
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
3076
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
3077
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
3008
3078
  margin-bottom: 3px;
3009
3079
  }
3010
3080
  .e-schedule-dialog.e-device .e-title-location-row,
@@ -3065,6 +3135,7 @@
3065
3135
  margin-right: 20px;
3066
3136
  }
3067
3137
  .e-schedule-dialog.e-device .e-title-header {
3138
+ display: -webkit-box;
3068
3139
  display: -ms-flexbox;
3069
3140
  display: flex;
3070
3141
  width: 100%;
@@ -3130,7 +3201,8 @@
3130
3201
  }
3131
3202
  .e-schedule-dialog.e-device .e-recurrence-container .e-recurrence-edit-button {
3132
3203
  border: 0;
3133
- box-shadow: none;
3204
+ -webkit-box-shadow: none;
3205
+ box-shadow: none;
3134
3206
  margin: -3px 5px;
3135
3207
  position: absolute;
3136
3208
  }
@@ -3144,12 +3216,14 @@
3144
3216
  .e-quick-popup-wrapper {
3145
3217
  background: #fff;
3146
3218
  border-radius: 2px;
3147
- box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0);
3219
+ -webkit-box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0);
3220
+ box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0);
3148
3221
  color: #201f1e;
3149
3222
  max-width: 365px;
3150
3223
  min-width: 320px;
3151
3224
  opacity: 1;
3152
3225
  -webkit-user-select: none;
3226
+ -moz-user-select: none;
3153
3227
  -ms-user-select: none;
3154
3228
  user-select: none;
3155
3229
  width: 100%;
@@ -3257,10 +3331,12 @@
3257
3331
  }
3258
3332
  .e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper,
3259
3333
  .e-quick-popup-wrapper .e-event-popup .e-header-icon-wrapper {
3334
+ display: -webkit-box;
3260
3335
  display: -ms-flexbox;
3261
3336
  display: flex;
3262
- -ms-flex-pack: end;
3263
- justify-content: flex-end;
3337
+ -webkit-box-pack: end;
3338
+ -ms-flex-pack: end;
3339
+ justify-content: flex-end;
3264
3340
  }
3265
3341
  .e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper .e-edit,
3266
3342
  .e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper .e-delete,
@@ -3282,6 +3358,7 @@
3282
3358
  .e-quick-popup-wrapper .e-event-popup .e-description,
3283
3359
  .e-quick-popup-wrapper .e-event-popup .e-resource {
3284
3360
  color: #201f1e;
3361
+ display: -webkit-box;
3285
3362
  display: -ms-flexbox;
3286
3363
  display: flex;
3287
3364
  padding-top: 12px;
@@ -3404,8 +3481,9 @@
3404
3481
  .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-close {
3405
3482
  margin-left: 0;
3406
3483
  margin-right: auto;
3407
- -ms-flex-order: -1;
3408
- order: -1;
3484
+ -webkit-box-ordinal-group: 0;
3485
+ -ms-flex-order: -1;
3486
+ order: -1;
3409
3487
  }
3410
3488
  .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-subject-wrap {
3411
3489
  padding: 12px 24px;
@@ -3414,6 +3492,7 @@
3414
3492
  padding: 12px 24px;
3415
3493
  }
3416
3494
  .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header {
3495
+ display: -webkit-box;
3417
3496
  display: -ms-flexbox;
3418
3497
  display: flex;
3419
3498
  padding: 15px;
@@ -3547,8 +3626,10 @@
3547
3626
  .e-appointment.e-schedule-event-clone {
3548
3627
  background: #0078d4;
3549
3628
  border-radius: 2px;
3550
- box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
3629
+ -webkit-box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
3630
+ box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
3551
3631
  color: #fff;
3632
+ display: -webkit-box;
3552
3633
  display: -ms-flexbox;
3553
3634
  display: flex;
3554
3635
  height: 38px;
@@ -3567,15 +3648,17 @@
3567
3648
  display: none;
3568
3649
  }
3569
3650
  .e-appointment.e-schedule-event-clone .e-appointment-details {
3570
- -ms-flex: auto;
3571
- flex: auto;
3651
+ -webkit-box-flex: 1;
3652
+ -ms-flex: auto;
3653
+ flex: auto;
3572
3654
  overflow: hidden;
3573
3655
  padding: 0 4px;
3574
3656
  text-align: left;
3575
3657
  }
3576
3658
  .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
3577
- -ms-flex: auto;
3578
- flex: auto;
3659
+ -webkit-box-flex: 1;
3660
+ -ms-flex: auto;
3661
+ flex: auto;
3579
3662
  overflow: hidden;
3580
3663
  }
3581
3664
  .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
@@ -3620,7 +3703,8 @@
3620
3703
  background: #fff;
3621
3704
  border: 1px solid #edebe9;
3622
3705
  border-radius: 2px;
3623
- box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.15);
3706
+ -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.15);
3707
+ box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.15);
3624
3708
  opacity: 1;
3625
3709
  padding: 8px 0;
3626
3710
  width: 225px;
@@ -3651,7 +3735,8 @@
3651
3735
  .e-bigger .e-more-popup-wrapper .e-more-event-content .e-appointment-border,
3652
3736
  .e-more-popup-wrapper .e-more-event-content .e-appointment-border {
3653
3737
  border: 0;
3654
- box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
3738
+ -webkit-box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
3739
+ box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
3655
3740
  }
3656
3741
  .e-bigger .e-more-popup-wrapper .e-more-event-date-header,
3657
3742
  .e-more-popup-wrapper .e-more-event-date-header {
@@ -3689,7 +3774,8 @@
3689
3774
  .e-more-popup-wrapper .e-more-event-close {
3690
3775
  background: transparent;
3691
3776
  border: 0;
3692
- box-shadow: none;
3777
+ -webkit-box-shadow: none;
3778
+ box-shadow: none;
3693
3779
  color: #605e5c;
3694
3780
  cursor: pointer;
3695
3781
  height: 25px;
@@ -3718,6 +3804,7 @@
3718
3804
  background: #0078d4;
3719
3805
  border-radius: 2px;
3720
3806
  color: #fff;
3807
+ display: -webkit-box;
3721
3808
  display: -ms-flexbox;
3722
3809
  display: flex;
3723
3810
  height: 26px;
@@ -3729,8 +3816,9 @@
3729
3816
  .e-bigger .e-more-popup-wrapper .e-appointment .e-subject,
3730
3817
  .e-more-popup-wrapper .e-appointment .e-subject {
3731
3818
  color: #fff;
3732
- -ms-flex: auto;
3733
- flex: auto;
3819
+ -webkit-box-flex: 1;
3820
+ -ms-flex: auto;
3821
+ flex: auto;
3734
3822
  font-size: 13px;
3735
3823
  font-weight: 500;
3736
3824
  overflow: hidden;
@@ -3764,7 +3852,8 @@
3764
3852
  .e-more-popup-wrapper .e-appointment.e-appointment-border,
3765
3853
  .e-more-popup-wrapper .e-appointment:focus {
3766
3854
  border: 0;
3767
- box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
3855
+ -webkit-box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
3856
+ box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108), 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
3768
3857
  }
3769
3858
  .e-bigger .e-more-popup-wrapper.e-device,
3770
3859
  .e-more-popup-wrapper.e-device {
@@ -3797,7 +3886,6 @@
3797
3886
  right: auto;
3798
3887
  }
3799
3888
 
3800
- /*! schedule component theme */
3801
3889
  .e-schedule {
3802
3890
  background: #fff;
3803
3891
  border: 1px solid #edebe9;
@@ -3810,7 +3898,8 @@
3810
3898
  }
3811
3899
  .e-schedule .e-header-calendar {
3812
3900
  background-color: #fff;
3813
- box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18);
3901
+ -webkit-box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18);
3902
+ box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18);
3814
3903
  }
3815
3904
  .e-schedule .e-vertical-view .e-date-header-wrap table tbody td:first-child,
3816
3905
  .e-schedule .e-vertical-view .e-content-wrap table td:first-child {
@@ -3974,6 +4063,8 @@
3974
4063
  color: #fff;
3975
4064
  min-width: 20px;
3976
4065
  padding: 0 4px;
4066
+ width: -webkit-fit-content;
4067
+ width: -moz-fit-content;
3977
4068
  width: fit-content;
3978
4069
  }
3979
4070
  .e-schedule .e-month-view .e-selected-cell,
@@ -4144,7 +4235,8 @@
4144
4235
  }
4145
4236
  .e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
4146
4237
  background: #f3f2f1;
4147
- box-shadow: inset 0 0 0 8px #faf9f8;
4238
+ -webkit-box-shadow: inset 0 0 0 8px #faf9f8;
4239
+ box-shadow: inset 0 0 0 8px #faf9f8;
4148
4240
  }
4149
4241
  .e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
4150
4242
  background: #f3f2f1;