@syncfusion/ej2-angular-schedule 20.4.38-ngcc → 20.4.38

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 (173) hide show
  1. package/README.md +47 -121
  2. package/esm2020/public_api.mjs +3 -0
  3. package/esm2020/src/index.mjs +11 -0
  4. package/esm2020/src/recurrence-editor/recurrenceeditor-all.module.mjs +23 -0
  5. package/esm2020/src/recurrence-editor/recurrenceeditor.component.mjs +59 -0
  6. package/esm2020/src/recurrence-editor/recurrenceeditor.module.mjs +25 -0
  7. package/esm2020/src/schedule/headerrows.directive.mjs +66 -0
  8. package/esm2020/src/schedule/resources.directive.mjs +58 -0
  9. package/esm2020/src/schedule/schedule-all.module.mjs +74 -0
  10. package/esm2020/src/schedule/schedule.component.mjs +283 -0
  11. package/esm2020/src/schedule/schedule.module.mjs +52 -0
  12. package/esm2020/src/schedule/views.directive.mjs +126 -0
  13. package/esm2020/syncfusion-ej2-angular-schedule.mjs +5 -0
  14. package/fesm2015/syncfusion-ej2-angular-schedule.mjs +733 -0
  15. package/fesm2015/syncfusion-ej2-angular-schedule.mjs.map +1 -0
  16. package/fesm2020/syncfusion-ej2-angular-schedule.mjs +733 -0
  17. package/fesm2020/syncfusion-ej2-angular-schedule.mjs.map +1 -0
  18. package/package.json +45 -22
  19. package/schematics/utils/lib-details.d.ts +2 -2
  20. package/src/recurrence-editor/recurrenceeditor-all.module.d.ts +6 -0
  21. package/src/recurrence-editor/recurrenceeditor.component.d.ts +3 -0
  22. package/src/recurrence-editor/recurrenceeditor.module.d.ts +6 -0
  23. package/src/schedule/headerrows.directive.d.ts +5 -0
  24. package/src/schedule/resources.directive.d.ts +5 -0
  25. package/src/schedule/schedule-all.module.d.ts +6 -0
  26. package/src/schedule/schedule.component.d.ts +3 -0
  27. package/src/schedule/schedule.module.d.ts +9 -0
  28. package/src/schedule/views.directive.d.ts +6 -6
  29. package/styles/bootstrap-dark.css +106 -369
  30. package/styles/bootstrap.css +104 -368
  31. package/styles/bootstrap4.css +146 -380
  32. package/styles/bootstrap5-dark.css +142 -344
  33. package/styles/bootstrap5.css +142 -344
  34. package/styles/fabric-dark.css +106 -335
  35. package/styles/fabric.css +111 -321
  36. package/styles/fluent-dark.css +107 -400
  37. package/styles/fluent.css +107 -400
  38. package/styles/highcontrast-light.css +103 -412
  39. package/styles/highcontrast.css +118 -404
  40. package/styles/material-dark.css +115 -367
  41. package/styles/material.css +115 -409
  42. package/styles/recurrence-editor/_all.scss +2 -0
  43. package/styles/recurrence-editor/_bootstrap-dark-definition.scss +13 -0
  44. package/styles/recurrence-editor/_bootstrap-definition.scss +13 -0
  45. package/styles/recurrence-editor/_bootstrap4-definition.scss +13 -0
  46. package/styles/recurrence-editor/_bootstrap5-dark-definition.scss +1 -0
  47. package/styles/recurrence-editor/_bootstrap5-definition.scss +13 -0
  48. package/styles/recurrence-editor/_fabric-dark-definition.scss +13 -0
  49. package/styles/recurrence-editor/_fabric-definition.scss +13 -0
  50. package/styles/recurrence-editor/_fluent-dark-definition.scss +1 -0
  51. package/styles/recurrence-editor/_fluent-definition.scss +13 -0
  52. package/styles/recurrence-editor/_fusionnew-definition.scss +13 -0
  53. package/styles/recurrence-editor/_highcontrast-definition.scss +13 -0
  54. package/styles/recurrence-editor/_highcontrast-light-definition.scss +13 -0
  55. package/styles/recurrence-editor/_layout.scss +534 -0
  56. package/styles/recurrence-editor/_material-dark-definition.scss +13 -0
  57. package/styles/recurrence-editor/_material-definition.scss +13 -0
  58. package/styles/recurrence-editor/_material3-definition.scss +13 -0
  59. package/styles/recurrence-editor/_tailwind-dark-definition.scss +1 -0
  60. package/styles/recurrence-editor/_tailwind-definition.scss +13 -0
  61. package/styles/recurrence-editor/_theme.scss +1 -0
  62. package/styles/recurrence-editor/bootstrap-dark.css +33 -142
  63. package/styles/recurrence-editor/bootstrap-dark.scss +3 -1
  64. package/styles/recurrence-editor/bootstrap.css +33 -142
  65. package/styles/recurrence-editor/bootstrap.scss +3 -1
  66. package/styles/recurrence-editor/bootstrap4.css +33 -176
  67. package/styles/recurrence-editor/bootstrap4.scss +3 -1
  68. package/styles/recurrence-editor/bootstrap5-dark.css +33 -183
  69. package/styles/recurrence-editor/bootstrap5-dark.scss +3 -1
  70. package/styles/recurrence-editor/bootstrap5.css +33 -183
  71. package/styles/recurrence-editor/bootstrap5.scss +3 -1
  72. package/styles/recurrence-editor/fabric-dark.css +33 -118
  73. package/styles/recurrence-editor/fabric-dark.scss +3 -1
  74. package/styles/recurrence-editor/fabric.css +33 -111
  75. package/styles/recurrence-editor/fabric.scss +3 -1
  76. package/styles/recurrence-editor/fluent-dark.css +33 -163
  77. package/styles/recurrence-editor/fluent-dark.scss +3 -1
  78. package/styles/recurrence-editor/fluent.css +33 -163
  79. package/styles/recurrence-editor/fluent.scss +3 -1
  80. package/styles/recurrence-editor/highcontrast-light.css +33 -115
  81. package/styles/recurrence-editor/highcontrast-light.scss +3 -1
  82. package/styles/recurrence-editor/highcontrast.css +33 -115
  83. package/styles/recurrence-editor/highcontrast.scss +3 -1
  84. package/styles/recurrence-editor/material-dark.css +33 -143
  85. package/styles/recurrence-editor/material-dark.scss +3 -1
  86. package/styles/recurrence-editor/material.css +33 -168
  87. package/styles/recurrence-editor/material.scss +3 -1
  88. package/styles/recurrence-editor/tailwind-dark.css +33 -131
  89. package/styles/recurrence-editor/tailwind-dark.scss +3 -1
  90. package/styles/recurrence-editor/tailwind.css +33 -131
  91. package/styles/recurrence-editor/tailwind.scss +3 -1
  92. package/styles/schedule/_all.scss +2 -0
  93. package/styles/schedule/_bootstrap-dark-definition.scss +213 -0
  94. package/styles/schedule/_bootstrap-definition.scss +213 -0
  95. package/styles/schedule/_bootstrap4-definition.scss +215 -0
  96. package/styles/schedule/_bootstrap5-dark-definition.scss +1 -0
  97. package/styles/schedule/_bootstrap5-definition.scss +224 -0
  98. package/styles/schedule/_fabric-dark-definition.scss +213 -0
  99. package/styles/schedule/_fabric-definition.scss +213 -0
  100. package/styles/schedule/_fluent-dark-definition.scss +1 -0
  101. package/styles/schedule/_fluent-definition.scss +220 -0
  102. package/styles/schedule/_fusionnew-definition.scss +224 -0
  103. package/styles/schedule/_highcontrast-definition.scss +214 -0
  104. package/styles/schedule/_highcontrast-light-definition.scss +214 -0
  105. package/styles/schedule/_layout.scss +4489 -0
  106. package/styles/schedule/_material-dark-definition.scss +213 -0
  107. package/styles/schedule/_material-definition.scss +213 -0
  108. package/styles/schedule/_material3-definition.scss +224 -0
  109. package/styles/schedule/_tailwind-dark-definition.scss +1 -0
  110. package/styles/schedule/_tailwind-definition.scss +217 -0
  111. package/styles/schedule/_theme.scss +510 -0
  112. package/styles/schedule/bootstrap-dark.css +73 -332
  113. package/styles/schedule/bootstrap-dark.scss +5 -1
  114. package/styles/schedule/bootstrap.css +71 -331
  115. package/styles/schedule/bootstrap.scss +5 -1
  116. package/styles/schedule/bootstrap4.css +113 -343
  117. package/styles/schedule/bootstrap4.scss +5 -1
  118. package/styles/schedule/bootstrap5-dark.css +109 -307
  119. package/styles/schedule/bootstrap5-dark.scss +4 -1
  120. package/styles/schedule/bootstrap5.css +109 -307
  121. package/styles/schedule/bootstrap5.scss +5 -1
  122. package/styles/schedule/fabric-dark.css +73 -298
  123. package/styles/schedule/fabric-dark.scss +5 -1
  124. package/styles/schedule/fabric.css +78 -284
  125. package/styles/schedule/fabric.scss +5 -1
  126. package/styles/schedule/fluent-dark.css +74 -363
  127. package/styles/schedule/fluent-dark.scss +4 -1
  128. package/styles/schedule/fluent.css +74 -363
  129. package/styles/schedule/fluent.scss +5 -1
  130. package/styles/schedule/highcontrast-light.css +70 -375
  131. package/styles/schedule/highcontrast-light.scss +5 -1
  132. package/styles/schedule/highcontrast.css +85 -367
  133. package/styles/schedule/highcontrast.scss +5 -1
  134. package/styles/schedule/icons/_bootstrap-dark.scss +231 -0
  135. package/styles/schedule/icons/_bootstrap.scss +231 -0
  136. package/styles/schedule/icons/_bootstrap4.scss +231 -0
  137. package/styles/schedule/icons/_bootstrap5-dark.scss +1 -0
  138. package/styles/schedule/icons/_bootstrap5.scss +231 -0
  139. package/styles/schedule/icons/_fabric-dark.scss +231 -0
  140. package/styles/schedule/icons/_fabric.scss +231 -0
  141. package/styles/schedule/icons/_fluent-dark.scss +1 -0
  142. package/styles/schedule/icons/_fluent.scss +231 -0
  143. package/styles/schedule/icons/_fusionnew.scss +231 -0
  144. package/styles/schedule/icons/_highcontrast-light.scss +231 -0
  145. package/styles/schedule/icons/_highcontrast.scss +231 -0
  146. package/styles/schedule/icons/_material-dark.scss +231 -0
  147. package/styles/schedule/icons/_material.scss +231 -0
  148. package/styles/schedule/icons/_material3.scss +231 -0
  149. package/styles/schedule/icons/_tailwind-dark.scss +1 -0
  150. package/styles/schedule/icons/_tailwind.scss +231 -0
  151. package/styles/schedule/material-dark.css +82 -330
  152. package/styles/schedule/material-dark.scss +5 -1
  153. package/styles/schedule/material.css +82 -372
  154. package/styles/schedule/material.scss +5 -1
  155. package/styles/schedule/tailwind-dark.css +111 -246
  156. package/styles/schedule/tailwind-dark.scss +4 -1
  157. package/styles/schedule/tailwind.css +111 -246
  158. package/styles/schedule/tailwind.scss +5 -1
  159. package/styles/tailwind-dark.css +145 -284
  160. package/styles/tailwind.css +145 -284
  161. package/syncfusion-ej2-angular-schedule.d.ts +5 -0
  162. package/@syncfusion/ej2-angular-schedule.es5.js +0 -840
  163. package/@syncfusion/ej2-angular-schedule.es5.js.map +0 -1
  164. package/@syncfusion/ej2-angular-schedule.js +0 -788
  165. package/@syncfusion/ej2-angular-schedule.js.map +0 -1
  166. package/CHANGELOG.md +0 -1589
  167. package/dist/ej2-angular-schedule.umd.js +0 -980
  168. package/dist/ej2-angular-schedule.umd.js.map +0 -1
  169. package/dist/ej2-angular-schedule.umd.min.js +0 -11
  170. package/dist/ej2-angular-schedule.umd.min.js.map +0 -1
  171. package/ej2-angular-schedule.d.ts +0 -6
  172. package/ej2-angular-schedule.metadata.json +0 -1
  173. package/postinstall/tagchange.js +0 -18
@@ -1,138 +1,3 @@
1
- /*! component's theme wise override definitions and variables */ /*! TreeView's bootstrap theme wise override definitions and variables */
2
- /* stylelint-disable */
3
- /* stylelint-disable property-no-vendor-prefix */
4
- /*! calendar bootstrap theme variables */
5
- .e-popup.e-ddl {
6
- border-radius: 4px;
7
- box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
8
- margin-top: 3px;
9
- }
10
- .e-popup.e-ddl .e-input-group {
11
- width: auto;
12
- }
13
- .e-popup.e-ddl .e-input-group input {
14
- line-height: 15px;
15
- }
16
-
17
- .e-popup.e-ddl .e-dropdownbase {
18
- min-height: 26px;
19
- }
20
-
21
- .e-popup.e-ddl .e-filter-parent .e-input-group {
22
- display: -ms-flexbox;
23
- display: flex;
24
- width: auto;
25
- }
26
- .e-popup.e-ddl .e-filter-parent .e-input-group .e-back-icon {
27
- border: 0;
28
- }
29
-
30
- .e-bigger .e-popup.e-ddl-device-filter {
31
- margin-top: 0;
32
- }
33
-
34
- .e-bigger .e-popup.e-ddl .e-list-item, .e-bigger .e-popup.e-ddl .e-list-group-item, .e-bigger .e-popup.e-ddl .e-fixed-head {
35
- font-size: 15px;
36
- line-height: 40px;
37
- padding-left: 0;
38
- text-indent: 24px;
39
- }
40
-
41
- .e-bigger .e-popup.e-ddl .e-dd-group .e-list-item {
42
- padding-left: 4px;
43
- }
44
-
45
- .e-bigger .e-popup.e-ddl .e-input-group {
46
- padding: 4px 0;
47
- }
48
-
49
- .e-bigger .e-popup.e-ddl .e-input-group input, .e-bigger .e-popup.e-ddl .e-input-group input.e-input {
50
- height: 38px;
51
- }
52
-
53
- .e-bigger .e-popup.e-ddl .e-dropdownbase {
54
- min-height: 40px;
55
- }
56
-
57
- .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
58
- .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
59
- .e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
60
- .e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:hover,
61
- .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active,
62
- .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:hover,
63
- .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
64
- .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:hover {
65
- background: transparent;
66
- color: #333;
67
- }
68
-
69
- .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon,
70
- .e-input-group.e-disabled.e-ddl .e-control.e-dropdownlist ~ .e-input-group-icon,
71
- .e-control.e-dropdownlist .e-input-group.e-disabled.e-ddl .e-input-group-icon,
72
- .e-control.e-dropdownlist .e-input-group.e-ddl .e-input-group-icon {
73
- border: 0;
74
- }
75
-
76
- .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-input-group-icon:active,
77
- .e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-input-group-icon:active,
78
- .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
79
- .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active {
80
- box-shadow: none;
81
- }
82
-
83
- .e-ddl.e-popup .e-filter-parent {
84
- border-bottom: 1px solid #ccc;
85
- }
86
-
87
- .e-bigger.e-small .e-ddl.e-popup .e-list-item, .e-bigger.e-small .e-ddl.e-popup .e-list-group-item, .e-bigger.e-small .e-ddl.e-popup .e-fixed-head {
88
- font-size: 14px;
89
- line-height: 34px;
90
- padding-left: 0;
91
- text-indent: 16px;
92
- }
93
-
94
- .e-bigger.e-small .e-ddl.e-popup .e-dd-group .e-list-item {
95
- padding-left: 4px;
96
- }
97
-
98
- .e-bigger.e-small .e-ddl.e-popup .e-input-group {
99
- padding: 4px 0;
100
- }
101
-
102
- .e-bigger.e-small .e-ddl.e-popup .e-input-group input, .e-bigger.e-small .e-ddl.e-popup .e-input-group input.e-input {
103
- height: 30px;
104
- }
105
-
106
- .e-bigger.e-small .e-popup.e-ddl .e-dropdownbase {
107
- min-height: 34px;
108
- }
109
-
110
- .e-multi-select-wrapper .e-chips-collection .e-chips .e-chips-close.e-icon::before {
111
- line-height: 30px;
112
- top: 0;
113
- }
114
-
115
- .e-multiselect .e-input-group-icon.e-ddl-icon {
116
- border-radius: 0 4px 4px 0;
117
- border-right-width: 0;
118
- }
119
-
120
- .e-multiselect.e-rtl .e-input-group-icon.e-ddl-icon {
121
- border-left-width: 0;
122
- border-radius: 4px 0 0 4px;
123
- border-right-width: 1px;
124
- }
125
-
126
- .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
127
- height: 32px;
128
- width: 32px;
129
- }
130
-
131
- .e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
132
- height: 40px;
133
- width: 40px;
134
- }
135
-
136
1
  /*! recurrence editor theme wise definitions*/ /*! Schedule component's bootstrap theme definitions and variables */
137
2
  .e-schedule .e-schedule-toolbar .e-icon-prev::before {
138
3
  content: "\e990";
@@ -306,6 +171,7 @@
306
171
  box-shadow: none;
307
172
  margin-bottom: 0;
308
173
  min-height: 43px;
174
+ border-radius: 0;
309
175
  }
310
176
  .e-schedule .e-schedule-toolbar .e-active-view .e-tbar-btn-text,
311
177
  .e-schedule .e-schedule-toolbar .e-active-view .e-icons {
@@ -328,7 +194,7 @@
328
194
  }
329
195
  .e-schedule .e-schedule-toolbar .e-toolbar-items .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-icon-right.e-btn-icon.e-icon-down-arrow {
330
196
  font-size: 12px;
331
- margin-top: 0;
197
+ padding-top: 0;
332
198
  }
333
199
  .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:focus, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:hover {
334
200
  border-radius: 0%;
@@ -392,9 +258,6 @@
392
258
  .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos > div {
393
259
  height: inherit;
394
260
  }
395
- .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
396
- padding: 0;
397
- }
398
261
  .e-schedule.e-device .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
399
262
  font-size: 15px;
400
263
  }
@@ -473,7 +336,6 @@
473
336
  height: 100%;
474
337
  position: absolute;
475
338
  width: 250px;
476
- color: #333;
477
339
  }
478
340
  .e-schedule .e-resource-tree-popup .e-resource-tree {
479
341
  height: 100%;
@@ -576,6 +438,7 @@
576
438
  }
577
439
  .e-schedule .e-block-appointment {
578
440
  background: rgba(0, 0, 0, 0.08);
441
+ border-radius: 2px;
579
442
  color: rgba(0, 0, 0, 0.6);
580
443
  cursor: default;
581
444
  overflow: hidden;
@@ -833,15 +696,11 @@
833
696
  .e-schedule .e-vertical-view .e-header-cells .e-header-day {
834
697
  display: table;
835
698
  font-size: 13px;
836
- line-height: unset;
837
- padding-bottom: 0;
838
699
  }
839
700
  .e-schedule .e-vertical-view .e-header-cells .e-header-date {
840
701
  cursor: pointer;
841
702
  display: table;
842
703
  font-size: 18px;
843
- line-height: unset;
844
- padding-top: 0;
845
704
  }
846
705
  .e-schedule .e-vertical-view .e-header-cells .e-header-date:hover {
847
706
  text-decoration: underline;
@@ -909,7 +768,6 @@
909
768
  .e-schedule .e-vertical-view .e-all-day-appointment-section:hover, .e-schedule .e-vertical-view .e-all-day-appointment-section:focus {
910
769
  background: #e6e6e6;
911
770
  border-radius: 100%;
912
- color: #333;
913
771
  }
914
772
  .e-schedule .e-vertical-view .e-appointment-hide {
915
773
  opacity: 0;
@@ -1062,7 +920,6 @@
1062
920
  flex: auto;
1063
921
  padding: 0 4px;
1064
922
  text-align: left;
1065
- line-height: unset;
1066
923
  }
1067
924
  .e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
1068
925
  font-size: 13px;
@@ -1363,9 +1220,6 @@
1363
1220
  .e-schedule .e-month-view .e-more-indicator:focus {
1364
1221
  text-decoration: underline;
1365
1222
  }
1366
- .e-schedule.e-rtl .e-month-view .e-date-header {
1367
- margin: 3px 3px 2px;
1368
- }
1369
1223
  .e-schedule.e-rtl .e-month-view .e-left-indent {
1370
1224
  border-left: 1px solid #ddd;
1371
1225
  border-right-width: 0;
@@ -1538,6 +1392,54 @@
1538
1392
  .e-schedule .e-timeline-year-view .e-resource-collapse {
1539
1393
  transform: rotate(90deg);
1540
1394
  }
1395
+ .e-schedule .e-timeline-year-view .e-work-cells {
1396
+ background-color: #f8f8f8;
1397
+ border-color: #ddd;
1398
+ border-style: solid;
1399
+ border-width: 0 1px 1px 0;
1400
+ color: #333;
1401
+ padding: 0;
1402
+ }
1403
+ .e-schedule .e-timeline-year-view .e-work-cells:hover:not(.e-other-month) {
1404
+ background: #f5f5f5;
1405
+ color: #333;
1406
+ }
1407
+ .e-schedule .e-timeline-year-view .e-work-cells.e-work-days {
1408
+ background-color: #fff;
1409
+ }
1410
+ .e-schedule .e-timeline-year-view .e-work-cells.e-other-month {
1411
+ color: #888;
1412
+ }
1413
+ .e-schedule .e-timeline-year-view .e-work-cells.e-current-day .e-date-header {
1414
+ background-color: #317ab9;
1415
+ border-radius: 50%;
1416
+ color: #fff;
1417
+ margin: 2px;
1418
+ width: 20px;
1419
+ }
1420
+ .e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell {
1421
+ background-color: #e6e6e6;
1422
+ color: #333;
1423
+ }
1424
+ .e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell .e-more-indicator {
1425
+ color: #333;
1426
+ }
1427
+ .e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell:hover {
1428
+ background-color: #e6e6e6;
1429
+ }
1430
+ .e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates {
1431
+ background-color: rgba(0, 0, 0, 0.08);
1432
+ }
1433
+ .e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header {
1434
+ cursor: default;
1435
+ opacity: 0.35;
1436
+ }
1437
+ .e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header:hover {
1438
+ text-decoration: none;
1439
+ }
1440
+ .e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates:hover {
1441
+ background-color: rgba(0, 0, 0, 0.08);
1442
+ }
1541
1443
  .e-schedule .e-timeline-year-view .e-content-table {
1542
1444
  height: 100%;
1543
1445
  }
@@ -1564,7 +1466,6 @@
1564
1466
  border-bottom: 1px solid #ddd;
1565
1467
  border-right: 1px solid #ddd;
1566
1468
  text-align: center;
1567
- color: #333;
1568
1469
  }
1569
1470
  .e-schedule .e-timeline-year-view .e-month-header.e-current-day {
1570
1471
  color: #317ab9;
@@ -1600,6 +1501,13 @@
1600
1501
  .e-schedule .e-timeline-year-view .e-work-cells .e-date-header:hover {
1601
1502
  text-decoration: underline;
1602
1503
  }
1504
+ .e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
1505
+ background-color: rgba(0, 0, 0, 0.08);
1506
+ box-shadow: inset 0 0 0 8px #f8f8f8;
1507
+ }
1508
+ .e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
1509
+ background-color: rgba(0, 0, 0, 0.08);
1510
+ }
1603
1511
  .e-schedule .e-timeline-year-view .e-event-table {
1604
1512
  position: absolute;
1605
1513
  top: 0;
@@ -1696,7 +1604,7 @@
1696
1604
  .e-schedule .e-timeline-year-view .e-event-table .e-more-indicator:focus {
1697
1605
  text-decoration: underline;
1698
1606
  }
1699
- .e-schedule.e-device .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
1607
+ .e-schedule.e-device .e-year-view .e-month-calendar {
1700
1608
  max-width: 100%;
1701
1609
  min-width: 100%;
1702
1610
  }
@@ -1738,7 +1646,6 @@
1738
1646
  }
1739
1647
  .e-schedule .e-timeline-view .e-date-header-wrap table tbody td.e-time-slots,
1740
1648
  .e-schedule .e-timeline-month-view .e-date-header-wrap table tbody td.e-time-slots {
1741
- background-color: #fff;
1742
1649
  overflow: inherit;
1743
1650
  }
1744
1651
  .e-schedule .e-timeline-view .e-date-header-wrap table tbody td > span,
@@ -2064,7 +1971,6 @@
2064
1971
  .e-schedule .e-month-agenda-view .e-content-table {
2065
1972
  border-bottom: 1px solid #ddd;
2066
1973
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
2067
- height: 100%;
2068
1974
  }
2069
1975
  .e-schedule .e-month-agenda-view .e-resource-column {
2070
1976
  border-bottom: 1px solid #ddd;
@@ -2281,7 +2187,6 @@
2281
2187
  .e-schedule .e-agenda-view .e-subject-wrap {
2282
2188
  display: -ms-flexbox;
2283
2189
  display: flex;
2284
- margin-bottom: 0;
2285
2190
  }
2286
2191
  .e-schedule .e-agenda-view .e-active-appointment-agenda .e-subject {
2287
2192
  color: #333;
@@ -2435,10 +2340,6 @@
2435
2340
  min-width: 32px;
2436
2341
  z-index: 0;
2437
2342
  }
2438
- .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-item .e-btn.e-tbar-btn .e-icons.e-btn-icon,
2439
- .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-item .e-btn.e-tbar-btn .e-icons.e-btn-icon {
2440
- font-size: 14px;
2441
- }
2442
2343
  .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-item .e-tbar-btn-text,
2443
2344
  .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-item .e-tbar-btn-text {
2444
2345
  line-height: inherit;
@@ -2474,25 +2375,18 @@
2474
2375
  margin: 4px 0;
2475
2376
  min-height: 34px;
2476
2377
  min-width: 34px;
2477
- padding: 1px 7px;
2478
2378
  }
2479
2379
  .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-icon-right,
2480
2380
  .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-tbtn-txt .e-icons.e-icon-right,
2481
2381
  .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-icon-right,
2482
2382
  .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-tbtn-txt .e-icons.e-icon-right {
2483
2383
  padding: 0;
2484
- font-size: 14px;
2485
2384
  }
2486
2385
  .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn .e-btn-icon,
2487
2386
  .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-btn-icon,
2488
2387
  .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn .e-btn-icon,
2489
2388
  .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-btn-icon {
2490
2389
  height: 25px;
2491
- padding-top: 0;
2492
- }
2493
- .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-tbar-btn-text,
2494
- .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-tbar-btn-text {
2495
- font-size: 16px;
2496
2390
  }
2497
2391
  .e-bigger .e-schedule .e-more-popup-wrapper .e-header-day,
2498
2392
  .e-bigger.e-schedule .e-more-popup-wrapper .e-header-day {
@@ -2598,19 +2492,10 @@
2598
2492
  .e-dialog.e-quick-dialog.e-following-events-dialog {
2599
2493
  width: 420px;
2600
2494
  }
2601
- .e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content {
2602
- padding: 15px;
2603
- }
2604
2495
  @media screen and (max-width: 767px) {
2605
2496
  .e-dialog.e-quick-dialog.e-following-events-dialog {
2606
2497
  width: 289px;
2607
2498
  }
2608
- .e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content {
2609
- padding: 5%;
2610
- }
2611
- .e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content button {
2612
- margin-bottom: 5%;
2613
- }
2614
2499
  }
2615
2500
 
2616
2501
  .e-dialog.e-quick-dialog {
@@ -3054,7 +2939,6 @@
3054
2939
  position: absolute;
3055
2940
  right: 6px;
3056
2941
  top: 4px;
3057
- padding: 0;
3058
2942
  }
3059
2943
  .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-edit,
3060
2944
  .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-delete,
@@ -3081,15 +2965,12 @@
3081
2965
  width: 100%;
3082
2966
  }
3083
2967
  .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-schedule-form > span {
3084
- margin: 0 0 4px;
2968
+ margin-bottom: 4px;
3085
2969
  }
3086
2970
  .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
3087
2971
  font-size: 22px;
3088
2972
  height: 40px;
3089
2973
  }
3090
- .e-quick-popup-wrapper .e-event-popup .e-popup-header {
3091
- background-color: #fff;
3092
- }
3093
2974
  .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper {
3094
2975
  padding: 5px 5px 2px;
3095
2976
  }
@@ -3133,15 +3014,13 @@
3133
3014
  padding: 0 18px 8px;
3134
3015
  }
3135
3016
  .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-subject-wrap .e-subject {
3136
- background-color: rgba(49, 122, 185, 0.3);
3137
- border-left: 6px solid #317ab9;
3138
- border-radius: 2px;
3139
- color: #333;
3140
3017
  cursor: default;
3141
3018
  font-size: 20px;
3142
3019
  font-weight: 500;
3143
3020
  line-height: 1.5;
3144
3021
  max-height: 87px;
3022
+ background-color: rgba(49, 122, 185, 0.3);
3023
+ border-left: 6px solid #317ab9;
3145
3024
  padding: 8px 0 8px 10px;
3146
3025
  }
3147
3026
  .e-quick-popup-wrapper .e-event-popup .e-popup-content {
@@ -3190,7 +3069,7 @@
3190
3069
  .e-quick-popup-wrapper .e-event-popup .e-resource-icon {
3191
3070
  color: #888;
3192
3071
  font-size: 18px;
3193
- padding: 0 13px 0 0;
3072
+ padding-right: 13px;
3194
3073
  }
3195
3074
  .e-quick-popup-wrapper .e-cell-popup .e-date-time-details,
3196
3075
  .e-quick-popup-wrapper .e-cell-popup .e-location-details,
@@ -3220,6 +3099,7 @@
3220
3099
  .e-quick-popup-wrapper .e-popup-footer .e-event-edit,
3221
3100
  .e-quick-popup-wrapper .e-popup-footer .e-event-delete {
3222
3101
  right: auto;
3102
+ margin-right: 8px;
3223
3103
  }
3224
3104
  .e-quick-popup-wrapper .e-popup-footer .e-event-edit:disabled,
3225
3105
  .e-quick-popup-wrapper .e-popup-footer .e-event-delete:disabled {
@@ -3231,9 +3111,6 @@
3231
3111
  right: auto;
3232
3112
  text-transform: capitalize;
3233
3113
  }
3234
- .e-quick-popup-wrapper .e-event-popup .e-popup-footer {
3235
- display: block;
3236
- }
3237
3114
  .e-quick-popup-wrapper.e-rtl {
3238
3115
  text-align: right;
3239
3116
  }
@@ -3241,6 +3118,10 @@
3241
3118
  left: 6px;
3242
3119
  right: auto;
3243
3120
  }
3121
+ .e-quick-popup-wrapper.e-rtl .e-cell-popup .e-popup-footer {
3122
+ padding: 8px 18px 8px 8px;
3123
+ text-align: left;
3124
+ }
3244
3125
  .e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
3245
3126
  .e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
3246
3127
  .e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
@@ -3248,17 +3129,9 @@
3248
3129
  .e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
3249
3130
  margin-right: 10px;
3250
3131
  }
3251
- .e-quick-popup-wrapper.e-rtl .e-event-details,
3252
- .e-quick-popup-wrapper.e-rtl .e-event-edit {
3132
+ .e-quick-popup-wrapper.e-rtl .e-event-details {
3253
3133
  margin-left: 8px;
3254
3134
  }
3255
- .e-quick-popup-wrapper.e-rtl .e-popup-footer {
3256
- padding: 8px 8px 8px 18px;
3257
- text-align: left;
3258
- }
3259
- .e-quick-popup-wrapper.e-rtl .e-date-time-icon {
3260
- padding: 0 0 0 10px;
3261
- }
3262
3135
  .e-quick-popup-wrapper.e-device {
3263
3136
  bottom: 0;
3264
3137
  height: 100%;
@@ -3315,7 +3188,6 @@
3315
3188
  .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-delete {
3316
3189
  background-color: transparent;
3317
3190
  border: 0;
3318
- color: #333;
3319
3191
  height: 40px;
3320
3192
  width: 40px;
3321
3193
  }
@@ -3347,25 +3219,6 @@
3347
3219
  .e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
3348
3220
  font-size: 24px;
3349
3221
  }
3350
- .e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content {
3351
- padding: 38px 18px 12px;
3352
- }
3353
- .e-bigger .e-quick-popup-wrapper .e-popup-footer {
3354
- padding: 8px 18px 8px 22px;
3355
- }
3356
- .e-bigger .e-quick-popup-wrapper .e-cell-popup .e-date-time-icon,
3357
- .e-bigger .e-quick-popup-wrapper .e-event-popup .e-date-time-icon {
3358
- padding-right: 13px;
3359
- }
3360
- .e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close .e-close-icon {
3361
- font-size: 16px;
3362
- }
3363
- .e-bigger .e-quick-popup-wrapper.e-rtl .e-cell-popup .e-date-time-icon {
3364
- padding-right: 0;
3365
- }
3366
- .e-bigger .e-quick-popup-wrapper.e-rtl .e-event-popup .e-date-time-icon {
3367
- padding-right: 13px;
3368
- }
3369
3222
  .e-bigger .e-quick-popup-wrapper .e-edit.e-btn.e-small.e-round,
3370
3223
  .e-bigger .e-quick-popup-wrapper .e-delete.e-btn.e-small.e-round,
3371
3224
  .e-bigger .e-quick-popup-wrapper .e-close.e-btn.e-small.e-round {
@@ -3386,35 +3239,6 @@
3386
3239
  padding: 0 5px 0 8px;
3387
3240
  }
3388
3241
 
3389
- .e-bigger .e-agenda-view .e-appointment {
3390
- padding: 0 8px;
3391
- }
3392
- .e-bigger .e-agenda-view .e-subject {
3393
- font-size: 16px;
3394
- }
3395
- .e-bigger .e-agenda-view .e-date-time {
3396
- font-size: 14px;
3397
- }
3398
- .e-bigger .e-agenda-view .e-day-date-header .e-m-date {
3399
- font-size: 20px;
3400
- }
3401
- .e-bigger .e-agenda-view .e-day-date-header .e-m-day {
3402
- font-size: 14px;
3403
- }
3404
-
3405
- .e-bigger .e-timeline-view .e-resource-text {
3406
- font-size: 14px;
3407
- padding-left: 12px;
3408
- }
3409
- .e-bigger .e-timeline-view .e-navigate {
3410
- font-size: 14px;
3411
- padding: 8px 0 8px 8px;
3412
- }
3413
- .e-bigger .e-timeline-view .e-date-header-wrap table tbody td > span {
3414
- font-size: 14px;
3415
- padding: 8px 0 8px 8px;
3416
- }
3417
-
3418
3242
  .e-appointment.e-schedule-event-clone {
3419
3243
  background: #317ab9;
3420
3244
  border-radius: 2px;
@@ -3517,7 +3341,8 @@
3517
3341
  height: calc(100% - 35px);
3518
3342
  max-height: 150px;
3519
3343
  overflow-y: auto;
3520
- padding: 10px 10px 0;
3344
+ padding-left: 10px;
3345
+ padding-right: 10px;
3521
3346
  }
3522
3347
  .e-bigger .e-more-popup-wrapper .e-more-event-content .e-appointment-border,
3523
3348
  .e-more-popup-wrapper .e-more-event-content .e-appointment-border {
@@ -3564,7 +3389,6 @@
3564
3389
  color: #000;
3565
3390
  cursor: pointer;
3566
3391
  height: 25px;
3567
- padding: unset;
3568
3392
  position: absolute;
3569
3393
  right: 6px;
3570
3394
  width: 25px;
@@ -3639,14 +3463,6 @@
3639
3463
  .e-more-popup-wrapper.e-device .e-more-event-content {
3640
3464
  max-height: unset;
3641
3465
  }
3642
- .e-bigger .e-more-popup-wrapper.e-rtl .e-header-date,
3643
- .e-more-popup-wrapper.e-rtl .e-header-date {
3644
- padding-right: 10px;
3645
- }
3646
- .e-bigger .e-more-popup-wrapper.e-rtl .e-header-day,
3647
- .e-more-popup-wrapper.e-rtl .e-header-day {
3648
- padding-right: 10px;
3649
- }
3650
3466
  .e-bigger .e-more-popup-wrapper.e-rtl .e-more-event-close,
3651
3467
  .e-more-popup-wrapper.e-rtl .e-more-event-close {
3652
3468
  left: 6px;
@@ -3664,10 +3480,6 @@
3664
3480
  border-width: 0;
3665
3481
  position: relative;
3666
3482
  }
3667
- .e-schedule .e-header-calendar {
3668
- background-color: none;
3669
- box-shadow: none;
3670
- }
3671
3483
  .e-schedule .e-vertical-view .e-date-header-wrap table tbody td:first-child,
3672
3484
  .e-schedule .e-vertical-view .e-content-wrap table td:first-child {
3673
3485
  border-left-width: 0;
@@ -3727,7 +3539,6 @@
3727
3539
  }
3728
3540
  .e-schedule .e-vertical-view .e-header-cells.e-current-day {
3729
3541
  color: #317ab9;
3730
- font-weight: normal;
3731
3542
  }
3732
3543
  .e-schedule .e-vertical-view .e-work-cells {
3733
3544
  background-color: #f8f8f8;
@@ -3758,7 +3569,6 @@
3758
3569
  }
3759
3570
  .e-schedule .e-vertical-view .e-all-day-cells.e-selected-cell:hover {
3760
3571
  background-color: #e6e6e6;
3761
- color: #333;
3762
3572
  }
3763
3573
  .e-schedule .e-vertical-view .e-selected-cell {
3764
3574
  background-color: #e6e6e6;
@@ -3766,7 +3576,6 @@
3766
3576
  }
3767
3577
  .e-schedule .e-vertical-view .e-selected-cell:hover {
3768
3578
  background-color: #e6e6e6;
3769
- color: #333;
3770
3579
  }
3771
3580
  .e-schedule .e-vertical-view .e-clone-time-indicator,
3772
3581
  .e-schedule .e-vertical-view .e-current-time {
@@ -3792,14 +3601,11 @@
3792
3601
  border-style: solid;
3793
3602
  border-width: 0 0 1px 1px;
3794
3603
  color: #333;
3795
- font-size: none;
3796
3604
  text-align: left;
3797
- text-transform: none;
3798
3605
  }
3799
3606
  .e-schedule .e-month-view .e-date-header-wrap table td.e-current-day,
3800
3607
  .e-schedule .e-month-agenda-view .e-date-header-wrap table td.e-current-day {
3801
3608
  color: #317ab9;
3802
- font-weight: normal;
3803
3609
  }
3804
3610
  .e-schedule .e-month-view .e-work-cells,
3805
3611
  .e-schedule .e-month-agenda-view .e-work-cells {
@@ -3835,10 +3641,6 @@
3835
3641
  background-color: #e6e6e6;
3836
3642
  color: #333;
3837
3643
  }
3838
- .e-schedule .e-month-view .e-selected-cell .e-date-header,
3839
- .e-schedule .e-month-agenda-view .e-selected-cell .e-date-header {
3840
- color: none;
3841
- }
3842
3644
  .e-schedule .e-month-view .e-selected-cell .e-more-indicator,
3843
3645
  .e-schedule .e-month-agenda-view .e-selected-cell .e-more-indicator {
3844
3646
  color: #333;
@@ -3847,9 +3649,6 @@
3847
3649
  .e-schedule .e-month-agenda-view .e-selected-cell:hover {
3848
3650
  background-color: #e6e6e6;
3849
3651
  }
3850
- .e-schedule .e-month-agenda-view .e-content-wrap .e-table-container {
3851
- overflow: auto;
3852
- }
3853
3652
  .e-schedule .e-month-agenda-view .e-date-header-wrap table td {
3854
3653
  border-width: 0 0 1px 0;
3855
3654
  text-align: center;
@@ -3881,7 +3680,6 @@
3881
3680
  .e-schedule .e-timeline-view .e-date-header-wrap table td.e-current-day,
3882
3681
  .e-schedule .e-timeline-month-view .e-date-header-wrap table td.e-current-day {
3883
3682
  color: #317ab9;
3884
- font-weight: normal;
3885
3683
  }
3886
3684
  .e-schedule .e-timeline-view .e-work-cells,
3887
3685
  .e-schedule .e-timeline-month-view .e-work-cells {
@@ -3945,64 +3743,6 @@
3945
3743
  .e-schedule .e-timeline-view .e-current-timeline {
3946
3744
  border-left: 1px solid #317ab9;
3947
3745
  }
3948
- .e-schedule .e-timeline-year-view .e-work-cells {
3949
- background-color: #f8f8f8;
3950
- border-color: #ddd;
3951
- border-style: solid;
3952
- border-width: 0 1px 1px 0;
3953
- color: #333;
3954
- padding: 0;
3955
- }
3956
- .e-schedule .e-timeline-year-view .e-work-cells:hover:not(.e-other-month) {
3957
- background: #f5f5f5;
3958
- color: #333;
3959
- }
3960
- .e-schedule .e-timeline-year-view .e-work-cells.e-work-days {
3961
- background-color: #fff;
3962
- }
3963
- .e-schedule .e-timeline-year-view .e-work-cells.e-other-month {
3964
- color: #888;
3965
- }
3966
- .e-schedule .e-timeline-year-view .e-work-cells.e-current-day .e-date-header {
3967
- background-color: #317ab9;
3968
- border-radius: 50%;
3969
- color: #fff;
3970
- margin: 2px;
3971
- width: 20px;
3972
- }
3973
- .e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell {
3974
- background-color: #e6e6e6;
3975
- color: #333;
3976
- }
3977
- .e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell .e-date-header {
3978
- color: #333;
3979
- }
3980
- .e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell .e-more-indicator {
3981
- color: #333;
3982
- }
3983
- .e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell:hover {
3984
- background-color: #e6e6e6;
3985
- }
3986
- .e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates {
3987
- background-color: rgba(0, 0, 0, 0.08);
3988
- }
3989
- .e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header {
3990
- cursor: default;
3991
- opacity: 0.35;
3992
- }
3993
- .e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header:hover {
3994
- text-decoration: none;
3995
- }
3996
- .e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates:hover {
3997
- background-color: rgba(0, 0, 0, 0.08);
3998
- }
3999
- .e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
4000
- background-color: rgba(0, 0, 0, 0.08);
4001
- box-shadow: inset 0 0 0 8px #f8f8f8;
4002
- }
4003
- .e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
4004
- background-color: rgba(0, 0, 0, 0.08);
4005
- }
4006
3746
  .e-schedule.e-rtl .e-vertical-view .e-date-header-wrap table tbody td:first-child,
4007
3747
  .e-schedule.e-rtl .e-vertical-view .e-content-wrap table td:first-child {
4008
3748
  border-right-width: 0;
@@ -4095,7 +3835,8 @@
4095
3835
  display: flex;
4096
3836
  -ms-flex-flow: row wrap;
4097
3837
  flex-flow: row wrap;
4098
- margin: 0 auto;
3838
+ margin-left: auto;
3839
+ margin-right: auto;
4099
3840
  max-width: 1240px;
4100
3841
  }
4101
3842
  .e-recurrenceeditor .e-recurrence-table {
@@ -4136,7 +3877,7 @@
4136
3877
  }
4137
3878
  .e-recurrenceeditor .e-form-right,
4138
3879
  .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
4139
- padding: 0 0 10px;
3880
+ padding: 0 0 10px 8px;
4140
3881
  }
4141
3882
  .e-recurrenceeditor .e-input-wrapper {
4142
3883
  float: left;
@@ -4177,11 +3918,13 @@
4177
3918
  margin-bottom: 5px;
4178
3919
  }
4179
3920
  .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
4180
- padding: 0 0 0 8px;
3921
+ padding-left: 8px;
3922
+ padding-right: 0;
4181
3923
  }
4182
3924
  .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
4183
3925
  .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
4184
- padding: 0 8px 0 0;
3926
+ padding-left: 0;
3927
+ padding-right: 8px;
4185
3928
  }
4186
3929
  .e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
4187
3930
  width: 30px;
@@ -4209,10 +3952,10 @@
4209
3952
  margin-bottom: 11px;
4210
3953
  }
4211
3954
  .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper {
4212
- padding-bottom: 11px;
3955
+ margin-bottom: 11px;
4213
3956
  }
4214
3957
  .e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper {
4215
- padding-top: 3px;
3958
+ margin-top: -3px;
4216
3959
  }
4217
3960
  .e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
4218
3961
  display: none;
@@ -4262,7 +4005,7 @@
4262
4005
  }
4263
4006
  .e-bigger .e-recurrenceeditor .e-form-right,
4264
4007
  .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
4265
- padding: 0 0 10px;
4008
+ padding: 0 0 10px 12px;
4266
4009
  }
4267
4010
  .e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
4268
4011
  padding-bottom: 6px;
@@ -4321,7 +4064,8 @@
4321
4064
  }
4322
4065
  .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element,
4323
4066
  .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
4324
- padding: 0 64px 0 0;
4067
+ padding-left: 0;
4068
+ padding-right: 64px;
4325
4069
  }
4326
4070
  .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
4327
4071
  .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
@@ -4331,11 +4075,13 @@
4331
4075
  margin-bottom: 5px;
4332
4076
  }
4333
4077
  .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
4334
- padding: 0 0 0 12px;
4078
+ padding-left: 12px;
4079
+ padding-right: 0;
4335
4080
  }
4336
4081
  .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
4337
4082
  .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
4338
- padding: 0 12px 0 0;
4083
+ padding-left: 0;
4084
+ padding-right: 12px;
4339
4085
  }
4340
4086
  .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
4341
4087
  left: 0;
@@ -4367,7 +4113,8 @@
4367
4113
  }
4368
4114
  .e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
4369
4115
  .e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
4370
- padding: 0 0 0 10px;
4116
+ padding-left: 10px;
4117
+ padding-right: 0;
4371
4118
  }
4372
4119
  .e-device .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
4373
4120
  padding-right: 10px;
@@ -4388,25 +4135,23 @@
4388
4135
  .e-device .e-recurrenceeditor .e-recurrence-table .e-day-position {
4389
4136
  padding-left: 20px;
4390
4137
  }
4391
- .e-device .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
4392
- margin-left: 20px;
4393
- }
4394
4138
  .e-device .e-recurrenceeditor .e-week-position {
4395
4139
  right: 0;
4396
- padding-right: 10px;
4397
4140
  }
4398
4141
  .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
4399
4142
  padding-right: 0;
4400
4143
  }
4401
4144
  .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
4402
4145
  .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
4403
- padding: 0 10px 0 0;
4146
+ padding-left: 0;
4147
+ padding-right: 10px;
4404
4148
  }
4405
4149
  .e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
4406
- padding: 0 20px 0 0;
4150
+ padding-left: 0;
4407
4151
  }
4408
4152
  .e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
4409
- padding: 0 50px 0 0;
4153
+ padding-right: 20px;
4154
+ padding-left: 0;
4410
4155
  }
4411
4156
  .e-device .e-recurrenceeditor.e-rtl .e-week-position {
4412
4157
  left: 0;
@@ -4423,14 +4168,6 @@
4423
4168
  padding: 16px 8px;
4424
4169
  }
4425
4170
 
4426
- @media (max-width: 1024px) {
4427
- .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on {
4428
- width: 100%;
4429
- }
4430
- .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
4431
- width: 65%;
4432
- }
4433
- }
4434
4171
  @media (max-width: 580px) {
4435
4172
  .e-recurrenceeditor {
4436
4173
  margin-left: auto;
@@ -4445,7 +4182,7 @@
4445
4182
  margin-top: 0;
4446
4183
  }
4447
4184
  .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
4448
- .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
4185
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
4449
4186
  margin-bottom: 7px;
4450
4187
  }
4451
4188
  .e-recurrenceeditor .e-editor > div {
@@ -4461,35 +4198,34 @@
4461
4198
  width: 50%;
4462
4199
  }
4463
4200
  .e-recurrenceeditor .e-editor .e-form-left,
4464
- .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
4201
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
4465
4202
  padding: 0 0 10px;
4466
4203
  }
4467
4204
  .e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
4468
- .e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
4469
- padding: 0 0 0 10px;
4205
+ .e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
4206
+ padding-left: 10px;
4207
+ padding-right: 0;
4470
4208
  }
4471
4209
  .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-left {
4472
4210
  padding-right: 10px;
4473
4211
  }
4474
4212
  .e-recurrenceeditor .e-editor .e-form-right,
4475
- .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
4213
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
4476
4214
  padding-left: 0;
4477
4215
  }
4478
4216
  .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-days {
4479
4217
  width: 100%;
4480
4218
  }
4481
4219
  .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
4482
- width: 65%;
4483
- }
4484
- .e-recurrenceeditor .e-editor .e-recurrence-table .e-day-position {
4485
- padding-left: 50px;
4220
+ width: 100%;
4486
4221
  }
4487
4222
  .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
4488
4223
  padding-right: 0;
4489
4224
  }
4490
4225
  .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
4491
- .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
4492
- padding: 0 10px 0 0;
4226
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
4227
+ padding-left: 0;
4228
+ padding-right: 10px;
4493
4229
  }
4494
4230
  }
4495
4231
  /*! Recurrence-Editor component theme */