@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
@@ -2,7 +2,8 @@
2
2
  /* stylelint-disable property-no-vendor-prefix */
3
3
  .e-ddl.e-popup {
4
4
  border: 0;
5
- box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.26);
5
+ -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.26);
6
+ box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.26);
6
7
  margin-top: 1px;
7
8
  }
8
9
  .e-ddl.e-popup .e-input-group input {
@@ -10,6 +11,7 @@
10
11
  }
11
12
 
12
13
  .e-ddl.e-popup .e-input-group {
14
+ display: -webkit-box;
13
15
  display: -ms-flexbox;
14
16
  display: flex;
15
17
  width: auto;
@@ -105,7 +107,6 @@
105
107
  color: #fff;
106
108
  }
107
109
 
108
- /*! recurrence editor theme wise definitions*/ /*! Schedule component's fabric theme definitions and variables */
109
110
  .e-schedule .e-schedule-toolbar .e-icon-prev::before {
110
111
  content: "\e98f";
111
112
  }
@@ -139,13 +140,7 @@
139
140
  .e-schedule .e-schedule-toolbar .e-icon-agenda::before {
140
141
  content: "\e316";
141
142
  }
142
- .e-schedule .e-schedule-toolbar .e-icon-year::before {
143
- content: "\ea90";
144
- }
145
- .e-schedule .e-schedule-toolbar .e-icon-timeline-year-vertical::before {
146
- content: "\ea90";
147
- }
148
- .e-schedule .e-schedule-toolbar .e-icon-timeline-year-horizontal::before {
143
+ .e-schedule .e-schedule-toolbar .e-icon-year::before, .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 {
149
144
  content: "\ea90";
150
145
  }
151
146
  .e-schedule .e-schedule-toolbar .e-icon-timeline-day::before {
@@ -157,12 +152,7 @@
157
152
  .e-schedule .e-schedule-toolbar .e-icon-timeline-workweek::before {
158
153
  content: "\ea8c";
159
154
  }
160
- .e-schedule .e-schedule-toolbar .e-icon-timeline-month::before {
161
- content: "\ea90";
162
- }
163
- .e-schedule .e-schedule-toolbar.e-toolbar .e-popup-down-icon::before {
164
- content: "\e976";
165
- }
155
+ .e-schedule .e-schedule-toolbar.e-toolbar .e-popup-down-icon::before,
166
156
  .e-schedule .e-schedule-toolbar.e-toolbar .e-popup-up-icon::before {
167
157
  content: "\e976";
168
158
  }
@@ -264,20 +254,21 @@
264
254
  content: "\e953";
265
255
  }
266
256
 
267
- /*! schedule component layout */
268
257
  .e-schedule {
269
258
  display: block;
270
259
  outline: medium none;
271
260
  overflow: hidden;
272
261
  position: relative;
273
262
  -webkit-user-select: none;
263
+ -moz-user-select: none;
274
264
  -ms-user-select: none;
275
265
  user-select: none;
276
266
  }
277
267
  .e-schedule .e-schedule-toolbar {
278
268
  border: 0;
279
269
  border-bottom: 1px solid #414040;
280
- box-shadow: none;
270
+ -webkit-box-shadow: none;
271
+ box-shadow: none;
281
272
  margin-bottom: 0;
282
273
  min-height: 43px;
283
274
  }
@@ -374,6 +365,12 @@
374
365
  .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items {
375
366
  height: 56px;
376
367
  }
368
+ .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-today .e-icon-today + .e-tbar-btn-text {
369
+ display: none;
370
+ }
371
+ .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-today .e-icon-today {
372
+ display: block;
373
+ }
377
374
  .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
378
375
  height: 56px;
379
376
  min-height: 56px;
@@ -417,7 +414,9 @@
417
414
  .e-schedule .e-schedule-resource-toolbar {
418
415
  background: #201f1f;
419
416
  border-bottom: 1px solid #414040;
420
- box-shadow: none;
417
+ -webkit-box-shadow: none;
418
+ box-shadow: none;
419
+ display: -webkit-box;
421
420
  display: -ms-flexbox;
422
421
  display: flex;
423
422
  margin-bottom: 0;
@@ -434,6 +433,7 @@
434
433
  display: none;
435
434
  }
436
435
  .e-schedule .e-schedule-resource-toolbar .e-resource-level-title {
436
+ display: -webkit-box;
437
437
  display: -ms-flexbox;
438
438
  display: flex;
439
439
  }
@@ -466,17 +466,22 @@
466
466
  text-align: center;
467
467
  }
468
468
  .e-schedule .e-table-container {
469
+ display: -webkit-inline-box;
469
470
  display: -ms-inline-flexbox;
470
471
  display: inline-flex;
471
472
  position: relative;
472
473
  vertical-align: top;
473
474
  }
474
475
  .e-schedule .e-table-container.e-translate {
476
+ -webkit-transition: -webkit-transform 0.1s ease 0s;
477
+ transition: -webkit-transform 0.1s ease 0s;
475
478
  transition: transform 0.1s ease 0s;
479
+ transition: transform 0.1s ease 0s, -webkit-transform 0.1s ease 0s;
476
480
  }
477
481
  .e-schedule .e-resource-tree-popup {
478
482
  background: #201f1f;
479
- box-shadow: 0 3px 4px 0.2px rgba(0, 0, 0, 0.4);
483
+ -webkit-box-shadow: 0 3px 4px 0.2px rgba(0, 0, 0, 0.4);
484
+ box-shadow: 0 3px 4px 0.2px rgba(0, 0, 0, 0.4);
480
485
  height: 100%;
481
486
  position: absolute;
482
487
  width: 250px;
@@ -490,7 +495,7 @@
490
495
  padding: 0 0 0 12px;
491
496
  }
492
497
  .e-schedule .e-resource-tree-popup-overlay.e-enable {
493
- background: #383838;
498
+ background: #333;
494
499
  height: 100%;
495
500
  left: 0;
496
501
  opacity: 0.5;
@@ -530,7 +535,8 @@
530
535
  }
531
536
  .e-schedule .e-schedule-table > tbody > tr > th,
532
537
  .e-schedule .e-schedule-table > tbody > tr > td {
533
- box-sizing: border-box;
538
+ -webkit-box-sizing: border-box;
539
+ box-sizing: border-box;
534
540
  font-weight: normal;
535
541
  overflow: hidden;
536
542
  text-overflow: ellipsis;
@@ -583,7 +589,7 @@
583
589
  }
584
590
  .e-schedule .e-block-appointment {
585
591
  background: rgba(255, 255, 255, 0.08);
586
- color: #969696;
592
+ color: #999;
587
593
  cursor: default;
588
594
  overflow: hidden;
589
595
  position: absolute;
@@ -596,7 +602,7 @@
596
602
  word-wrap: break-word;
597
603
  }
598
604
  .e-schedule .e-block-indicator {
599
- color: #969696;
605
+ color: #999;
600
606
  float: right;
601
607
  padding: 0 5px;
602
608
  z-index: 1;
@@ -611,6 +617,7 @@
611
617
  }
612
618
  .e-schedule .e-appointment {
613
619
  opacity: 1;
620
+ -webkit-transition: opacity 100ms linear;
614
621
  transition: opacity 100ms linear;
615
622
  }
616
623
  .e-schedule .e-appointment .e-subject.e-disable {
@@ -662,7 +669,8 @@
662
669
  height: 10px;
663
670
  left: 50%;
664
671
  position: absolute;
665
- transform: translateX(-50%);
672
+ -webkit-transform: translateX(-50%);
673
+ transform: translateX(-50%);
666
674
  width: 100%;
667
675
  }
668
676
  .e-schedule.e-device .e-appointment.e-appointment-border .e-left-right-resize {
@@ -670,7 +678,8 @@
670
678
  height: 100%;
671
679
  position: absolute;
672
680
  top: 50%;
673
- transform: translateY(-50%);
681
+ -webkit-transform: translateY(-50%);
682
+ transform: translateY(-50%);
674
683
  width: 10px;
675
684
  }
676
685
  .e-schedule.e-device .e-appointment.e-appointment-border .e-top-handler .e-top-bottom-resize {
@@ -739,24 +748,28 @@
739
748
  border: 1px solid #005799;
740
749
  border-radius: 2px;
741
750
  color: #fff;
751
+ display: -webkit-box;
742
752
  display: -ms-flexbox;
743
753
  display: flex;
744
- height: 54px;
745
- margin-bottom: 2px;
746
754
  overflow: hidden;
747
755
  position: absolute;
756
+ height: 54px;
757
+ margin-bottom: 2px;
748
758
  }
749
759
  .e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-appointment-details {
760
+ display: -webkit-box;
750
761
  display: -ms-flexbox;
751
762
  display: flex;
752
- -ms-flex: auto;
753
- flex: auto;
763
+ -webkit-box-flex: 1;
764
+ -ms-flex: auto;
765
+ flex: auto;
754
766
  padding: 2px 4px 0 2px;
755
767
  text-align: left;
756
768
  }
757
769
  .e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-inner-wrap {
758
- -ms-flex: auto;
759
- flex: auto;
770
+ -webkit-box-flex: 1;
771
+ -ms-flex: auto;
772
+ flex: auto;
760
773
  overflow: hidden;
761
774
  }
762
775
  .e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-subject {
@@ -793,7 +806,8 @@
793
806
  }
794
807
  .e-schedule .e-vertical-view.e-timescale-disable .e-appointment.e-appointment-border, .e-schedule .e-vertical-view.e-timescale-disable .e-appointment:focus {
795
808
  border: 0;
796
- box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
809
+ -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
810
+ box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
797
811
  }
798
812
  .e-schedule .e-vertical-view.e-timescale-disable .e-appointment.e-allow-select {
799
813
  pointer-events: none;
@@ -904,18 +918,24 @@
904
918
  margin: 0 auto;
905
919
  position: absolute;
906
920
  right: 0;
907
- transform: rotate(0deg);
921
+ -webkit-transform: rotate(0deg);
922
+ transform: rotate(0deg);
923
+ -webkit-transition: -webkit-transform 300ms ease-in-out;
924
+ transition: -webkit-transform 300ms ease-in-out;
908
925
  transition: transform 300ms ease-in-out;
926
+ transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
909
927
  width: 25px;
910
928
  }
911
929
  .e-schedule .e-vertical-view .e-all-day-appointment-section.e-disable {
912
930
  display: none;
913
931
  }
914
932
  .e-schedule .e-vertical-view .e-all-day-appointment-section.e-appointment-expand {
915
- transform: rotate(0deg);
933
+ -webkit-transform: rotate(0deg);
934
+ transform: rotate(0deg);
916
935
  }
917
936
  .e-schedule .e-vertical-view .e-all-day-appointment-section.e-appointment-collapse {
918
- transform: rotate(180deg);
937
+ -webkit-transform: rotate(180deg);
938
+ transform: rotate(180deg);
919
939
  }
920
940
  .e-schedule .e-vertical-view .e-all-day-appointment-section:hover, .e-schedule .e-vertical-view .e-all-day-appointment-section:focus {
921
941
  background: #414040;
@@ -932,6 +952,7 @@
932
952
  vertical-align: top;
933
953
  }
934
954
  .e-schedule .e-vertical-view .e-all-day-cells:first-child.e-animate {
955
+ -webkit-transition: 250ms ease-out;
935
956
  transition: 250ms ease-out;
936
957
  }
937
958
  .e-schedule .e-vertical-view .e-time-cells-wrap table td,
@@ -951,7 +972,8 @@
951
972
  }
952
973
  .e-schedule .e-vertical-view.e-virtual-mask .e-work-cells {
953
974
  background: rgba(0, 0, 0, 0.08);
954
- box-shadow: inset 0 0 0 8px #282727;
975
+ -webkit-box-shadow: inset 0 0 0 8px #282727;
976
+ box-shadow: inset 0 0 0 8px #282727;
955
977
  }
956
978
  .e-schedule .e-vertical-view.e-virtual-mask .e-work-cells:hover {
957
979
  background: rgba(0, 0, 0, 0.08);
@@ -1018,24 +1040,28 @@
1018
1040
  border: 1px solid #005799;
1019
1041
  border-radius: 2px;
1020
1042
  color: #fff;
1043
+ display: -webkit-box;
1021
1044
  display: -ms-flexbox;
1022
1045
  display: flex;
1023
- height: 22px;
1024
1046
  overflow: hidden;
1025
1047
  position: absolute;
1048
+ height: 22px;
1026
1049
  }
1027
1050
  .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment .e-appointment-details {
1051
+ display: -webkit-box;
1028
1052
  display: -ms-flexbox;
1029
1053
  display: flex;
1030
- -ms-flex: auto;
1031
- flex: auto;
1054
+ -webkit-box-flex: 1;
1055
+ -ms-flex: auto;
1056
+ flex: auto;
1032
1057
  line-height: 18px;
1033
1058
  overflow: hidden;
1034
1059
  padding: 1px 0 1px 4px;
1035
1060
  }
1036
1061
  .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment .e-appointment-details .e-subject {
1037
- -ms-flex: auto;
1038
- flex: auto;
1062
+ -webkit-box-flex: 1;
1063
+ -ms-flex: auto;
1064
+ flex: auto;
1039
1065
  font-size: 13px;
1040
1066
  font-weight: 500;
1041
1067
  overflow: hidden;
@@ -1058,7 +1084,8 @@
1058
1084
  }
1059
1085
  .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 {
1060
1086
  border: 0;
1061
- box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
1087
+ -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
1088
+ box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
1062
1089
  }
1063
1090
  .e-schedule .e-vertical-view .e-day-wrapper .e-appointment:not(.e-schedule-event-clone) {
1064
1091
  cursor: default;
@@ -1072,8 +1099,9 @@
1072
1099
  position: absolute;
1073
1100
  }
1074
1101
  .e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-appointment-details {
1075
- -ms-flex: auto;
1076
- flex: auto;
1102
+ -webkit-box-flex: 1;
1103
+ -ms-flex: auto;
1104
+ flex: auto;
1077
1105
  padding: 0 4px;
1078
1106
  text-align: left;
1079
1107
  line-height: unset;
@@ -1132,7 +1160,8 @@
1132
1160
  }
1133
1161
  .e-schedule .e-vertical-view .e-day-wrapper .e-appointment.e-appointment-border, .e-schedule .e-vertical-view .e-day-wrapper .e-appointment:focus {
1134
1162
  border: 0;
1135
- box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
1163
+ -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
1164
+ box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
1136
1165
  }
1137
1166
  .e-schedule .e-vertical-view.e-day-view .e-header-date {
1138
1167
  cursor: default;
@@ -1278,7 +1307,8 @@
1278
1307
  }
1279
1308
  .e-schedule .e-month-view.e-virtual-mask .e-work-cells {
1280
1309
  background: rgba(0, 0, 0, 0.08);
1281
- box-shadow: inset 0 0 0 8px #282727;
1310
+ -webkit-box-shadow: inset 0 0 0 8px #282727;
1311
+ box-shadow: inset 0 0 0 8px #282727;
1282
1312
  }
1283
1313
  .e-schedule .e-month-view.e-virtual-mask .e-work-cells:hover {
1284
1314
  background: rgba(0, 0, 0, 0.08);
@@ -1311,27 +1341,31 @@
1311
1341
  border: 1px solid #005799;
1312
1342
  border-radius: 2px;
1313
1343
  color: #fff;
1314
- cursor: default;
1344
+ display: -webkit-box;
1315
1345
  display: -ms-flexbox;
1316
1346
  display: flex;
1317
- height: 22px;
1318
1347
  overflow: hidden;
1319
1348
  position: absolute;
1349
+ cursor: default;
1350
+ height: 22px;
1320
1351
  }
1321
1352
  .e-schedule .e-month-view .e-appointment .e-disable {
1322
1353
  display: none;
1323
1354
  }
1324
1355
  .e-schedule .e-month-view .e-appointment .e-appointment-details {
1356
+ display: -webkit-box;
1325
1357
  display: -ms-flexbox;
1326
1358
  display: flex;
1327
- -ms-flex: auto;
1328
- flex: auto;
1359
+ -webkit-box-flex: 1;
1360
+ -ms-flex: auto;
1361
+ flex: auto;
1329
1362
  line-height: 18px;
1330
1363
  overflow: hidden;
1331
1364
  }
1332
1365
  .e-schedule .e-month-view .e-appointment .e-appointment-details .e-subject {
1333
- -ms-flex: auto;
1334
- flex: auto;
1366
+ -webkit-box-flex: 1;
1367
+ -ms-flex: auto;
1368
+ flex: auto;
1335
1369
  font-size: 13px;
1336
1370
  font-weight: 500;
1337
1371
  overflow: hidden;
@@ -1355,7 +1389,8 @@
1355
1389
  }
1356
1390
  .e-schedule .e-month-view .e-appointment.e-appointment-border, .e-schedule .e-month-view .e-appointment:focus {
1357
1391
  border: 0;
1358
- box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
1392
+ -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
1393
+ box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
1359
1394
  }
1360
1395
  .e-schedule .e-month-view .e-appointment.e-allow-select {
1361
1396
  pointer-events: none;
@@ -1380,26 +1415,26 @@
1380
1415
  .e-schedule.e-rtl .e-month-view .e-date-header {
1381
1416
  margin: 3px 3px 2px;
1382
1417
  }
1383
- .e-schedule.e-rtl .e-month-view .e-left-indent {
1384
- border-left: 1px solid #414040;
1385
- border-right-width: 0;
1386
- }
1418
+ .e-schedule.e-rtl .e-month-view .e-left-indent,
1387
1419
  .e-schedule.e-rtl .e-month-view .e-week-number {
1388
1420
  border-left: 1px solid #414040;
1389
1421
  border-right-width: 0;
1390
1422
  }
1391
1423
  .e-schedule .e-year-view .e-calendar-wrapper {
1424
+ display: -webkit-box;
1392
1425
  display: -ms-flexbox;
1393
1426
  display: flex;
1394
1427
  -ms-flex-wrap: wrap;
1395
1428
  flex-wrap: wrap;
1396
- -ms-flex-pack: center;
1397
- justify-content: center;
1429
+ -webkit-box-pack: center;
1430
+ -ms-flex-pack: center;
1431
+ justify-content: center;
1398
1432
  }
1399
1433
  .e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
1400
1434
  border: 0;
1401
- -ms-flex: 0 25%;
1402
- flex: 0 25%;
1435
+ -webkit-box-flex: 0;
1436
+ -ms-flex: 0 25%;
1437
+ flex: 0 25%;
1403
1438
  max-width: 100%;
1404
1439
  min-width: 260px;
1405
1440
  padding: 10px;
@@ -1550,7 +1585,8 @@
1550
1585
  padding: 4px 7px;
1551
1586
  }
1552
1587
  .e-schedule .e-timeline-year-view .e-resource-collapse {
1553
- transform: rotate(90deg);
1588
+ -webkit-transform: rotate(90deg);
1589
+ transform: rotate(90deg);
1554
1590
  }
1555
1591
  .e-schedule .e-timeline-year-view .e-content-table {
1556
1592
  height: 100%;
@@ -1633,27 +1669,31 @@
1633
1669
  border: 1px solid #005799;
1634
1670
  border-radius: 2px;
1635
1671
  color: #fff;
1636
- cursor: default;
1672
+ display: -webkit-box;
1637
1673
  display: -ms-flexbox;
1638
1674
  display: flex;
1639
- height: 22px;
1640
1675
  overflow: hidden;
1641
1676
  position: absolute;
1677
+ cursor: default;
1678
+ height: 22px;
1642
1679
  }
1643
1680
  .e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-hidden {
1644
1681
  display: none;
1645
1682
  }
1646
1683
  .e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-appointment-details {
1684
+ display: -webkit-box;
1647
1685
  display: -ms-flexbox;
1648
1686
  display: flex;
1649
- -ms-flex: auto;
1650
- flex: auto;
1687
+ -webkit-box-flex: 1;
1688
+ -ms-flex: auto;
1689
+ flex: auto;
1651
1690
  line-height: 20px;
1652
1691
  overflow: hidden;
1653
1692
  }
1654
1693
  .e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-subject {
1655
- -ms-flex: auto;
1656
- flex: auto;
1694
+ -webkit-box-flex: 1;
1695
+ -ms-flex: auto;
1696
+ flex: auto;
1657
1697
  font-size: 13px;
1658
1698
  font-weight: 500;
1659
1699
  overflow: hidden;
@@ -1682,7 +1722,8 @@
1682
1722
  }
1683
1723
  .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 {
1684
1724
  border: 0;
1685
- box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
1725
+ -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
1726
+ box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
1686
1727
  }
1687
1728
  .e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-allow-select {
1688
1729
  pointer-events: none;
@@ -1829,7 +1870,8 @@
1829
1870
  .e-schedule .e-timeline-view.e-virtual-mask .e-work-cells,
1830
1871
  .e-schedule .e-timeline-month-view.e-virtual-mask .e-work-cells {
1831
1872
  background: rgba(0, 0, 0, 0.08);
1832
- box-shadow: inset 0 0 0 8px #282727;
1873
+ -webkit-box-shadow: inset 0 0 0 8px #282727;
1874
+ box-shadow: inset 0 0 0 8px #282727;
1833
1875
  }
1834
1876
  .e-schedule .e-timeline-view .e-resource-tree-icon,
1835
1877
  .e-schedule .e-timeline-month-view .e-resource-tree-icon {
@@ -1842,7 +1884,8 @@
1842
1884
  }
1843
1885
  .e-schedule .e-timeline-view .e-resource-collapse,
1844
1886
  .e-schedule .e-timeline-month-view .e-resource-collapse {
1845
- transform: rotate(90deg);
1887
+ -webkit-transform: rotate(90deg);
1888
+ transform: rotate(90deg);
1846
1889
  }
1847
1890
  .e-schedule .e-timeline-view .e-child-node,
1848
1891
  .e-schedule .e-timeline-month-view .e-child-node {
@@ -1862,26 +1905,30 @@
1862
1905
  border: 1px solid #005799;
1863
1906
  border-radius: 2px;
1864
1907
  color: #fff;
1865
- cursor: default;
1908
+ display: -webkit-box;
1866
1909
  display: -ms-flexbox;
1867
1910
  display: flex;
1868
- height: 38px;
1869
1911
  overflow: hidden;
1870
1912
  position: absolute;
1913
+ cursor: default;
1914
+ height: 38px;
1871
1915
  }
1872
1916
  .e-schedule .e-timeline-view .e-appointment .e-appointment-details,
1873
1917
  .e-schedule .e-timeline-month-view .e-appointment .e-appointment-details {
1918
+ display: -webkit-box;
1874
1919
  display: -ms-flexbox;
1875
1920
  display: flex;
1876
- -ms-flex: auto;
1877
- flex: auto;
1921
+ -webkit-box-flex: 1;
1922
+ -ms-flex: auto;
1923
+ flex: auto;
1878
1924
  overflow: hidden;
1879
1925
  padding: 0 4px;
1880
1926
  }
1881
1927
  .e-schedule .e-timeline-view .e-appointment .e-appointment-details .e-inner-wrap,
1882
1928
  .e-schedule .e-timeline-month-view .e-appointment .e-appointment-details .e-inner-wrap {
1883
- -ms-flex: auto;
1884
- flex: auto;
1929
+ -webkit-box-flex: 1;
1930
+ -ms-flex: auto;
1931
+ flex: auto;
1885
1932
  overflow: hidden;
1886
1933
  }
1887
1934
  .e-schedule .e-timeline-view .e-appointment .e-subject,
@@ -1940,7 +1987,8 @@
1940
1987
  .e-schedule .e-timeline-month-view .e-appointment.e-appointment-border,
1941
1988
  .e-schedule .e-timeline-month-view .e-appointment:focus {
1942
1989
  border: 0;
1943
- box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
1990
+ -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
1991
+ box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
1944
1992
  }
1945
1993
  .e-schedule .e-timeline-view .e-appointment.e-allow-select,
1946
1994
  .e-schedule .e-timeline-month-view .e-appointment.e-allow-select {
@@ -1978,10 +2026,12 @@
1978
2026
  width: 70px;
1979
2027
  }
1980
2028
  .e-schedule .e-virtual-scroll.e-vertical-view .e-content-table, .e-schedule .e-virtual-scroll.e-month-view .e-content-table {
1981
- transform: translateX(0);
2029
+ -webkit-transform: translateX(0);
2030
+ transform: translateX(0);
1982
2031
  }
1983
2032
  .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 {
1984
- transform: translateY(0);
2033
+ -webkit-transform: translateY(0);
2034
+ transform: translateY(0);
1985
2035
  }
1986
2036
  .e-schedule .e-virtual-scroll .e-content-table {
1987
2037
  position: absolute;
@@ -1991,6 +2041,7 @@
1991
2041
  }
1992
2042
  .e-schedule .e-virtual-scroll .e-content-wrap.e-transition,
1993
2043
  .e-schedule .e-virtual-scroll .e-resource-column-wrap.e-transition {
2044
+ -webkit-transition: all 1000ms linear;
1994
2045
  transition: all 1000ms linear;
1995
2046
  }
1996
2047
  .e-schedule.e-rtl .e-timeline-view .e-appointment .e-left-icon,
@@ -2071,14 +2122,15 @@
2071
2122
  .e-schedule .e-month-agenda-view .e-week-number-wrapper .e-schedule-table,
2072
2123
  .e-schedule .e-month-agenda-view .e-content-table {
2073
2124
  border-bottom: 2px solid #414040;
2074
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
2125
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
2126
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
2075
2127
  height: 100%;
2076
2128
  }
2077
2129
  .e-schedule .e-month-agenda-view .e-resource-column {
2078
2130
  border-bottom: 1px solid #414040;
2079
- border-right: 1px solid #414040;
2080
2131
  vertical-align: top;
2081
2132
  width: 75px;
2133
+ border-right: 1px solid #414040;
2082
2134
  }
2083
2135
  .e-schedule .e-month-agenda-view .e-resource-name {
2084
2136
  color: #dadada;
@@ -2147,12 +2199,16 @@
2147
2199
  background: #514f4f;
2148
2200
  }
2149
2201
  .e-schedule .e-month-agenda-view .e-appointment.e-template {
2202
+ display: -webkit-inline-box;
2150
2203
  display: -ms-inline-flexbox;
2151
2204
  display: inline-flex;
2152
- -ms-flex-direction: row-reverse;
2153
- flex-direction: row-reverse;
2205
+ -webkit-box-orient: horizontal;
2206
+ -webkit-box-direction: reverse;
2207
+ -ms-flex-direction: row-reverse;
2208
+ flex-direction: row-reverse;
2154
2209
  }
2155
2210
  .e-schedule .e-month-agenda-view .e-subject-wrap {
2211
+ display: -webkit-box;
2156
2212
  display: -ms-flexbox;
2157
2213
  display: flex;
2158
2214
  }
@@ -2206,10 +2262,7 @@
2206
2262
  margin: 1px auto;
2207
2263
  width: 6px;
2208
2264
  }
2209
- .e-schedule.e-rtl .e-month-agenda-view .e-left-indent {
2210
- border-left: 1px solid #414040;
2211
- border-right-width: 0;
2212
- }
2265
+ .e-schedule.e-rtl .e-month-agenda-view .e-left-indent,
2213
2266
  .e-schedule.e-rtl .e-month-agenda-view .e-week-number {
2214
2267
  border-left: 1px solid #414040;
2215
2268
  border-right-width: 0;
@@ -2247,10 +2300,10 @@
2247
2300
  }
2248
2301
  .e-schedule .e-agenda-view .e-resource-column {
2249
2302
  border-bottom: 1px solid #414040;
2250
- border-right: 1px solid #414040;
2251
- color: #c8c8c8;
2252
2303
  vertical-align: top;
2253
2304
  width: 75px;
2305
+ color: #c8c8c8;
2306
+ border-right: 1px solid #414040;
2254
2307
  }
2255
2308
  .e-schedule .e-agenda-view .e-month-header {
2256
2309
  background: #0074cc;
@@ -2293,6 +2346,7 @@
2293
2346
  font-size: 12px;
2294
2347
  }
2295
2348
  .e-schedule .e-agenda-view .e-subject-wrap {
2349
+ display: -webkit-box;
2296
2350
  display: -ms-flexbox;
2297
2351
  display: flex;
2298
2352
  margin-bottom: 0;
@@ -2369,10 +2423,13 @@
2369
2423
  background: #514f4f;
2370
2424
  }
2371
2425
  .e-schedule .e-agenda-view .e-appointment.e-template {
2426
+ display: -webkit-inline-box;
2372
2427
  display: -ms-inline-flexbox;
2373
2428
  display: inline-flex;
2374
- -ms-flex-direction: row-reverse;
2375
- flex-direction: row-reverse;
2429
+ -webkit-box-orient: horizontal;
2430
+ -webkit-box-direction: reverse;
2431
+ -ms-flex-direction: row-reverse;
2432
+ flex-direction: row-reverse;
2376
2433
  }
2377
2434
  .e-schedule .e-agenda-view .e-no-event {
2378
2435
  color: #dadada;
@@ -2404,9 +2461,9 @@
2404
2461
  border-right: 3px solid #0074cc;
2405
2462
  }
2406
2463
  .e-schedule.e-rtl .e-agenda-view .e-resource-column {
2407
- border-bottom: 1px solid #414040;
2408
2464
  border-left: 1px solid #414040;
2409
2465
  border-right: 0;
2466
+ border-bottom: 1px solid #414040;
2410
2467
  vertical-align: top;
2411
2468
  width: 75px;
2412
2469
  }
@@ -2631,6 +2688,7 @@
2631
2688
 
2632
2689
  .e-dialog.e-quick-dialog {
2633
2690
  -webkit-user-select: none;
2691
+ -moz-user-select: none;
2634
2692
  -ms-user-select: none;
2635
2693
  user-select: none;
2636
2694
  width: 320px;
@@ -2645,7 +2703,8 @@
2645
2703
  border-top: none;
2646
2704
  }
2647
2705
  .e-dialog.e-quick-dialog .e-quick-dialog-cancel {
2648
- box-shadow: none;
2706
+ -webkit-box-shadow: none;
2707
+ box-shadow: none;
2649
2708
  }
2650
2709
  .e-dialog.e-quick-dialog.e-rtl {
2651
2710
  text-align: right;
@@ -2693,19 +2752,22 @@
2693
2752
  padding-right: 16px;
2694
2753
  }
2695
2754
  .e-schedule-dialog .e-time-zone-row {
2755
+ display: -webkit-box;
2696
2756
  display: -ms-flexbox;
2697
2757
  display: flex;
2698
2758
  height: 0;
2699
2759
  margin-bottom: 0;
2700
2760
  overflow: hidden;
2701
2761
  padding-bottom: 0;
2762
+ -webkit-transition: 0.3s ease-in-out;
2702
2763
  transition: 0.3s ease-in-out;
2703
2764
  width: 100%;
2704
2765
  }
2705
2766
  .e-schedule-dialog .e-time-zone-row .e-start-time-zone-container,
2706
2767
  .e-schedule-dialog .e-time-zone-row .e-end-time-zone-container {
2707
2768
  display: none;
2708
- transform: translateY(-100%);
2769
+ -webkit-transform: translateY(-100%);
2770
+ transform: translateY(-100%);
2709
2771
  }
2710
2772
  .e-schedule-dialog .e-time-zone-row.e-enable {
2711
2773
  height: 60px;
@@ -2714,12 +2776,14 @@
2714
2776
  .e-schedule-dialog .e-time-zone-row.e-enable .e-start-time-zone-container,
2715
2777
  .e-schedule-dialog .e-time-zone-row.e-enable .e-end-time-zone-container {
2716
2778
  display: block;
2717
- transform: translateY(0);
2779
+ -webkit-transform: translateY(0);
2780
+ transform: translateY(0);
2718
2781
  }
2719
2782
  .e-schedule-dialog .e-title-location-row,
2720
2783
  .e-schedule-dialog .e-start-end-row,
2721
2784
  .e-schedule-dialog .e-start-input-container,
2722
2785
  .e-schedule-dialog .e-end-input-container {
2786
+ display: -webkit-box;
2723
2787
  display: -ms-flexbox;
2724
2788
  display: flex;
2725
2789
  padding-bottom: 12px;
@@ -2730,6 +2794,7 @@
2730
2794
  width: 100%;
2731
2795
  }
2732
2796
  .e-schedule-dialog .e-all-day-time-zone-row {
2797
+ display: -webkit-box;
2733
2798
  display: -ms-flexbox;
2734
2799
  display: flex;
2735
2800
  padding-bottom: 14px;
@@ -2800,6 +2865,7 @@
2800
2865
  }
2801
2866
  }
2802
2867
  .e-ddl.e-popup .e-resource-template {
2868
+ display: -webkit-box;
2803
2869
  display: -ms-flexbox;
2804
2870
  display: flex;
2805
2871
  padding: 0 10px;
@@ -2832,7 +2898,8 @@
2832
2898
  .e-bigger .e-schedule-dialog .e-event-cancel,
2833
2899
  .e-bigger .e-schedule-dialog .e-event-delete {
2834
2900
  border: none;
2835
- box-shadow: none;
2901
+ -webkit-box-shadow: none;
2902
+ box-shadow: none;
2836
2903
  }
2837
2904
  .e-bigger .e-schedule-dialog .e-footer-content .e-btn.e-event-delete {
2838
2905
  float: left;
@@ -2856,6 +2923,7 @@
2856
2923
  display: none;
2857
2924
  }
2858
2925
  .e-bigger .e-schedule-dialog .e-time-zone-row.e-enable {
2926
+ display: -webkit-box;
2859
2927
  display: -ms-flexbox;
2860
2928
  display: flex;
2861
2929
  height: 70px;
@@ -2865,6 +2933,7 @@
2865
2933
  .e-bigger .e-schedule-dialog .e-start-input-container,
2866
2934
  .e-bigger .e-schedule-dialog .e-end-input-container,
2867
2935
  .e-bigger .e-schedule-dialog .e-time-zone-row {
2936
+ display: -webkit-box;
2868
2937
  display: -ms-flexbox;
2869
2938
  display: flex;
2870
2939
  padding-bottom: 12px;
@@ -2875,6 +2944,7 @@
2875
2944
  width: 100%;
2876
2945
  }
2877
2946
  .e-bigger .e-schedule-dialog .e-all-day-time-zone-row {
2947
+ display: -webkit-box;
2878
2948
  display: -ms-flexbox;
2879
2949
  display: flex;
2880
2950
  padding-bottom: 20px;
@@ -2940,7 +3010,8 @@
2940
3010
  }
2941
3011
  .e-schedule-dialog.e-device .e-dlg-header-content {
2942
3012
  background: #201f1f;
2943
- box-shadow: none;
3013
+ -webkit-box-shadow: none;
3014
+ box-shadow: none;
2944
3015
  margin-bottom: 0;
2945
3016
  }
2946
3017
  .e-schedule-dialog.e-device .e-title-location-row,
@@ -3001,6 +3072,7 @@
3001
3072
  margin-right: 20px;
3002
3073
  }
3003
3074
  .e-schedule-dialog.e-device .e-title-header {
3075
+ display: -webkit-box;
3004
3076
  display: -ms-flexbox;
3005
3077
  display: flex;
3006
3078
  width: 100%;
@@ -3066,7 +3138,8 @@
3066
3138
  }
3067
3139
  .e-schedule-dialog.e-device .e-recurrence-container .e-recurrence-edit-button {
3068
3140
  border: 0;
3069
- box-shadow: none;
3141
+ -webkit-box-shadow: none;
3142
+ box-shadow: none;
3070
3143
  margin: -3px 5px;
3071
3144
  position: absolute;
3072
3145
  }
@@ -3080,12 +3153,14 @@
3080
3153
  .e-quick-popup-wrapper {
3081
3154
  background: #201f1f;
3082
3155
  border-radius: 2px;
3083
- box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
3156
+ -webkit-box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
3157
+ box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
3084
3158
  color: #dadada;
3085
3159
  max-width: 365px;
3086
3160
  min-width: 320px;
3087
3161
  opacity: 1;
3088
3162
  -webkit-user-select: none;
3163
+ -moz-user-select: none;
3089
3164
  -ms-user-select: none;
3090
3165
  user-select: none;
3091
3166
  width: 100%;
@@ -3193,10 +3268,12 @@
3193
3268
  }
3194
3269
  .e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper,
3195
3270
  .e-quick-popup-wrapper .e-event-popup .e-header-icon-wrapper {
3271
+ display: -webkit-box;
3196
3272
  display: -ms-flexbox;
3197
3273
  display: flex;
3198
- -ms-flex-pack: end;
3199
- justify-content: flex-end;
3274
+ -webkit-box-pack: end;
3275
+ -ms-flex-pack: end;
3276
+ justify-content: flex-end;
3200
3277
  }
3201
3278
  .e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper .e-edit,
3202
3279
  .e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper .e-delete,
@@ -3218,6 +3295,7 @@
3218
3295
  .e-quick-popup-wrapper .e-event-popup .e-description,
3219
3296
  .e-quick-popup-wrapper .e-event-popup .e-resource {
3220
3297
  color: #dadada;
3298
+ display: -webkit-box;
3221
3299
  display: -ms-flexbox;
3222
3300
  display: flex;
3223
3301
  padding-top: 12px;
@@ -3340,8 +3418,9 @@
3340
3418
  .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-close {
3341
3419
  margin-left: 0;
3342
3420
  margin-right: auto;
3343
- -ms-flex-order: -1;
3344
- order: -1;
3421
+ -webkit-box-ordinal-group: 0;
3422
+ -ms-flex-order: -1;
3423
+ order: -1;
3345
3424
  }
3346
3425
  .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-subject-wrap {
3347
3426
  padding: 12px 24px;
@@ -3350,6 +3429,7 @@
3350
3429
  padding: 12px 24px;
3351
3430
  }
3352
3431
  .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header {
3432
+ display: -webkit-box;
3353
3433
  display: -ms-flexbox;
3354
3434
  display: flex;
3355
3435
  padding: 15px;
@@ -3483,8 +3563,10 @@
3483
3563
  .e-appointment.e-schedule-event-clone {
3484
3564
  background: #0074cc;
3485
3565
  border-radius: 2px;
3486
- box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
3566
+ -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
3567
+ box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
3487
3568
  color: #fff;
3569
+ display: -webkit-box;
3488
3570
  display: -ms-flexbox;
3489
3571
  display: flex;
3490
3572
  height: 38px;
@@ -3503,15 +3585,17 @@
3503
3585
  display: none;
3504
3586
  }
3505
3587
  .e-appointment.e-schedule-event-clone .e-appointment-details {
3506
- -ms-flex: auto;
3507
- flex: auto;
3588
+ -webkit-box-flex: 1;
3589
+ -ms-flex: auto;
3590
+ flex: auto;
3508
3591
  overflow: hidden;
3509
3592
  padding: 0 4px;
3510
3593
  text-align: left;
3511
3594
  }
3512
3595
  .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
3513
- -ms-flex: auto;
3514
- flex: auto;
3596
+ -webkit-box-flex: 1;
3597
+ -ms-flex: auto;
3598
+ flex: auto;
3515
3599
  overflow: hidden;
3516
3600
  }
3517
3601
  .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
@@ -3556,7 +3640,8 @@
3556
3640
  background: #201f1f;
3557
3641
  border: 1px solid #414040;
3558
3642
  border-radius: 2px;
3559
- box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.4);
3643
+ -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.4);
3644
+ box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.4);
3560
3645
  opacity: 1;
3561
3646
  padding: 8px 0;
3562
3647
  width: 225px;
@@ -3587,7 +3672,8 @@
3587
3672
  .e-bigger .e-more-popup-wrapper .e-more-event-content .e-appointment-border,
3588
3673
  .e-more-popup-wrapper .e-more-event-content .e-appointment-border {
3589
3674
  border: 0;
3590
- box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
3675
+ -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
3676
+ box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
3591
3677
  }
3592
3678
  .e-bigger .e-more-popup-wrapper .e-more-event-date-header,
3593
3679
  .e-more-popup-wrapper .e-more-event-date-header {
@@ -3625,7 +3711,8 @@
3625
3711
  .e-more-popup-wrapper .e-more-event-close {
3626
3712
  background: transparent;
3627
3713
  border: 0;
3628
- box-shadow: none;
3714
+ -webkit-box-shadow: none;
3715
+ box-shadow: none;
3629
3716
  color: #dadada;
3630
3717
  cursor: pointer;
3631
3718
  height: 25px;
@@ -3654,6 +3741,7 @@
3654
3741
  background: #0074cc;
3655
3742
  border-radius: 2px;
3656
3743
  color: #fff;
3744
+ display: -webkit-box;
3657
3745
  display: -ms-flexbox;
3658
3746
  display: flex;
3659
3747
  height: 22px;
@@ -3665,8 +3753,9 @@
3665
3753
  .e-bigger .e-more-popup-wrapper .e-appointment .e-subject,
3666
3754
  .e-more-popup-wrapper .e-appointment .e-subject {
3667
3755
  color: #fff;
3668
- -ms-flex: auto;
3669
- flex: auto;
3756
+ -webkit-box-flex: 1;
3757
+ -ms-flex: auto;
3758
+ flex: auto;
3670
3759
  font-size: 13px;
3671
3760
  font-weight: 500;
3672
3761
  overflow: hidden;
@@ -3700,7 +3789,8 @@
3700
3789
  .e-more-popup-wrapper .e-appointment.e-appointment-border,
3701
3790
  .e-more-popup-wrapper .e-appointment:focus {
3702
3791
  border: 0;
3703
- box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
3792
+ -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
3793
+ box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
3704
3794
  }
3705
3795
  .e-bigger .e-more-popup-wrapper.e-device,
3706
3796
  .e-more-popup-wrapper.e-device {
@@ -3733,7 +3823,6 @@
3733
3823
  right: auto;
3734
3824
  }
3735
3825
 
3736
- /*! schedule component theme */
3737
3826
  .e-schedule {
3738
3827
  background: #201f1f;
3739
3828
  border: 1px solid #414040;
@@ -3746,7 +3835,8 @@
3746
3835
  }
3747
3836
  .e-schedule .e-header-calendar {
3748
3837
  background-color: none;
3749
- box-shadow: none;
3838
+ -webkit-box-shadow: none;
3839
+ box-shadow: none;
3750
3840
  }
3751
3841
  .e-schedule .e-vertical-view .e-date-header-wrap table tbody td:first-child,
3752
3842
  .e-schedule .e-vertical-view .e-content-wrap table td:first-child {
@@ -3910,6 +4000,8 @@
3910
4000
  color: #fff;
3911
4001
  min-width: 20px;
3912
4002
  padding: 0 4px;
4003
+ width: -webkit-fit-content;
4004
+ width: -moz-fit-content;
3913
4005
  width: fit-content;
3914
4006
  }
3915
4007
  .e-schedule .e-month-view .e-selected-cell,
@@ -4080,7 +4172,8 @@
4080
4172
  }
4081
4173
  .e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
4082
4174
  background: rgba(0, 0, 0, 0.08);
4083
- box-shadow: inset 0 0 0 8px #282727;
4175
+ -webkit-box-shadow: inset 0 0 0 8px #282727;
4176
+ box-shadow: inset 0 0 0 8px #282727;
4084
4177
  }
4085
4178
  .e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
4086
4179
  background: rgba(0, 0, 0, 0.08);
@@ -4145,8 +4238,8 @@
4145
4238
  }
4146
4239
 
4147
4240
  .e-tooltip-wrap.e-schedule-error {
4148
- background: #fcdbe4;
4149
- border-color: #fcdbe4;
4241
+ background: #fde;
4242
+ border-color: #fde;
4150
4243
  z-index: 1000;
4151
4244
  }
4152
4245
  .e-tooltip-wrap.e-schedule-error .e-arrow-tip.e-tip-top {
@@ -4154,29 +4247,30 @@
4154
4247
  }
4155
4248
  .e-tooltip-wrap.e-schedule-error .e-arrow-tip-inner.e-tip-top,
4156
4249
  .e-tooltip-wrap.e-schedule-error .e-arrow-tip-outer.e-tip-top {
4157
- border-bottom: 8px solid #fcdbe4;
4158
- color: #fcdbe4;
4250
+ border-bottom: 8px solid #fde;
4251
+ color: #fde;
4159
4252
  }
4160
4253
  .e-tooltip-wrap.e-schedule-error .e-arrow-tip-outer.e-tip-bottom,
4161
4254
  .e-tooltip-wrap.e-schedule-error .e-arrow-tip-inner.e-tip-bottom {
4162
- border-top: 8px solid #fcdbe4;
4163
- color: #fcdbe4;
4255
+ border-top: 8px solid #fde;
4256
+ color: #fde;
4164
4257
  }
4165
4258
  .e-tooltip-wrap.e-schedule-error .e-tip-content {
4166
4259
  padding: 3px 6px;
4167
4260
  }
4168
4261
  .e-tooltip-wrap.e-schedule-error .e-tip-content,
4169
4262
  .e-tooltip-wrap.e-schedule-error .e-tip-content label {
4170
- color: #f44336;
4263
+ color: #f43;
4171
4264
  }
4172
4265
 
4173
- /*! recurrence editor theme wise definitions*/
4174
- /*! Recurrence-Editor component layout */
4175
4266
  .e-recurrenceeditor .e-editor {
4267
+ display: -webkit-box;
4176
4268
  display: -ms-flexbox;
4177
4269
  display: flex;
4178
- -ms-flex-flow: row wrap;
4179
- flex-flow: row wrap;
4270
+ -webkit-box-orient: horizontal;
4271
+ -webkit-box-direction: normal;
4272
+ -ms-flex-flow: row wrap;
4273
+ flex-flow: row wrap;
4180
4274
  margin: 0 auto;
4181
4275
  max-width: 1240px;
4182
4276
  }
@@ -4276,8 +4370,10 @@
4276
4370
  }
4277
4371
  .e-recurrenceeditor .e-days button {
4278
4372
  border-radius: 50%;
4279
- -ms-flex-flow: row wrap;
4280
- flex-flow: row wrap;
4373
+ -webkit-box-orient: horizontal;
4374
+ -webkit-box-direction: normal;
4375
+ -ms-flex-flow: row wrap;
4376
+ flex-flow: row wrap;
4281
4377
  height: 35px;
4282
4378
  margin: 0 8px 10px;
4283
4379
  width: 35px;
@@ -4336,13 +4432,6 @@
4336
4432
  .e-bigger .e-recurrenceeditor .e-form-left {
4337
4433
  padding: 0 12px 14px 0;
4338
4434
  }
4339
- .e-bigger .e-recurrenceeditor .e-form-right,
4340
- .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
4341
- padding: 0 0 10px;
4342
- }
4343
- .e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
4344
- padding-bottom: 6px;
4345
- }
4346
4435
  .e-bigger .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
4347
4436
  padding-left: 70px;
4348
4437
  }
@@ -4369,16 +4458,12 @@
4369
4458
  font-size: 13px;
4370
4459
  margin-bottom: 8px;
4371
4460
  }
4372
- .e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-non-week .e-form-left {
4373
- padding-bottom: 12px;
4374
- }
4375
4461
  .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
4376
4462
  font-size: 13px;
4377
4463
  margin-bottom: 1px;
4378
4464
  }
4379
4465
  .e-bigger .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper,
4380
- .e-bigger .e-recurrenceeditor .e-year-expander,
4381
- .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
4466
+ .e-bigger .e-recurrenceeditor .e-year-expander {
4382
4467
  margin-bottom: 11px;
4383
4468
  }
4384
4469
  .e-bigger .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
@@ -4490,7 +4575,8 @@
4490
4575
  }
4491
4576
  .e-device.e-recurrence-dialog .e-dlg-header-content {
4492
4577
  background: none;
4493
- box-shadow: none;
4578
+ -webkit-box-shadow: none;
4579
+ box-shadow: none;
4494
4580
  padding-bottom: 10px;
4495
4581
  }
4496
4582
  .e-device.e-recurrence-dialog .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
@@ -4515,8 +4601,10 @@
4515
4601
  width: 100%;
4516
4602
  }
4517
4603
  .e-recurrenceeditor .e-editor {
4518
- -ms-flex-direction: column;
4519
- flex-direction: column;
4604
+ -webkit-box-orient: vertical;
4605
+ -webkit-box-direction: normal;
4606
+ -ms-flex-direction: column;
4607
+ flex-direction: column;
4520
4608
  }
4521
4609
  .e-recurrenceeditor .e-editor > .e-input-wrapper.e-form-left {
4522
4610
  margin-top: 0;