@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,182 +1,3 @@
1
- /* stylelint-disable */
2
- /* stylelint-disable property-no-vendor-prefix */
3
- .e-bigger .e-ddl.e-popup .e-input-group .e-clear-icon {
4
- height: 36px;
5
- }
6
-
7
- .e-popup.e-ddl .e-dropdownbase {
8
- min-height: 26px;
9
- }
10
-
11
- .e-ddl.e-popup {
12
- border: 0;
13
- box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
14
- margin-top: 1px;
15
- }
16
- .e-ddl.e-popup .e-content.e-nodata {
17
- background-color: #fff;
18
- }
19
- .e-ddl.e-popup .e-dropdownbase .e-list-item .e-highlight {
20
- color: #23726c;
21
- }
22
- .e-ddl.e-popup .e-input-group {
23
- display: -ms-flexbox;
24
- display: flex;
25
- width: auto;
26
- }
27
- .e-ddl.e-popup .e-input-group input {
28
- line-height: 15px;
29
- }
30
-
31
- .e-ddl.e-popup .e-input-group .e-clear-icon {
32
- border-radius: 20px;
33
- height: 20px;
34
- margin: 5px;
35
- min-width: 20px;
36
- }
37
- .e-ddl.e-popup .e-input-group .e-clear-icon::before {
38
- font-size: 10px;
39
- }
40
- .e-ddl.e-popup .e-filter-parent {
41
- border-left-width: 0;
42
- border-right-width: 0;
43
- }
44
- .e-ddl.e-popup .e-filter-parent .e-input-group.e-control-wrapper:hover:active {
45
- border-color: #000;
46
- }
47
- .e-bigger .e-ddl.e-popup.e-ddl-device.e-ddl-device-filter {
48
- margin-top: 0;
49
- }
50
- .e-bigger .e-ddl.e-popup .e-list-item, .e-bigger .e-ddl.e-popup .e-list-group-item, .e-bigger .e-ddl.e-popup .e-fixed-head {
51
- font-size: 15px;
52
- line-height: 45px;
53
- padding-left: 0;
54
- text-indent: 16px;
55
- }
56
- .e-bigger .e-ddl.e-popup .e-dd-group .e-list-item {
57
- padding-left: 4px;
58
- }
59
- .e-bigger .e-ddl.e-popup .e-input-group {
60
- padding: 4px 0;
61
- }
62
- .e-bigger .e-ddl.e-popup .e-input-group input {
63
- height: 30px;
64
- }
65
- .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 {
66
- font-size: 14px;
67
- line-height: 40px;
68
- padding-left: 0;
69
- text-indent: 16px;
70
- }
71
- .e-bigger.e-small .e-ddl.e-popup .e-dd-group .e-list-item {
72
- padding-left: 4px;
73
- }
74
- .e-bigger.e-small .e-ddl.e-popup .e-input-group {
75
- padding: 0;
76
- }
77
- .e-bigger.e-small .e-ddl.e-popup .e-input-group input {
78
- height: 34px;
79
- }
80
-
81
- .e-multi-select-wrapper .e-chips-close.e-close-hooker::before {
82
- color: #000;
83
- top: 12px;
84
- }
85
- .e-multiselect .e-multi-select-wrapper input {
86
- /* stylelint-disable property-no-vendor-prefix */
87
- }
88
- .e-multiselect .e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
89
- color: #4f4f4f;
90
- font-family: inherit;
91
- font-size: 14px;
92
- font-style: italic;
93
- }
94
- .e-multiselect .e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
95
- color: #4f4f4f;
96
- font-family: inherit;
97
- font-size: 14px;
98
- font-style: italic;
99
- }
100
- .e-multiselect .e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
101
- color: #4f4f4f;
102
- font-family: inherit;
103
- font-size: 14px;
104
- font-style: italic;
105
- }
106
- .e-multiselect .e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
107
- color: #4f4f4f;
108
- font-family: inherit;
109
- font-size: 14px;
110
- font-style: italic;
111
- }
112
- .e-multi-select-wrapper .e-chips-collection .e-chips:hover .e-chipcontent {
113
- color: #000;
114
- }
115
- .e-multi-select-wrapper .e-chips-collection .e-chips:hover .e-chips-close.e-icon::before {
116
- color: #000;
117
- }
118
- .e-multi-select-wrapper .e-chips-collection .e-chips .e-chips-close.e-icon::before {
119
- line-height: 26px;
120
- top: 0;
121
- }
122
- .e-multi-select-wrapper .e-delim-values.e-delim-view {
123
- color: #000;
124
- }
125
- .e-multi-select-wrapper.e-delimiter .e-delim-values {
126
- color: #000;
127
- }
128
- .e-multi-select-wrapper .e-searcher input[type=text] {
129
- color: #000;
130
- height: 100%;
131
- min-height: 28px;
132
- }
133
- .e-multi-select-wrapper .e-searcher input[type=text]::selection {
134
- background-color: #400074;
135
- }
136
-
137
- .e-popup.e-multi-select-list-wrapper.e-ddl.e-checkbox .e-filter-parent .e-clear-icon, .e-bigger .e-popup.e-multi-select-list-wrapper.e-ddl.e-checkbox .e-filter-parent .e-clear-icon {
138
- padding-left: 0;
139
- }
140
- .e-popup.e-multi-select-list-wrapper.e-checkbox .e-selectall-parent {
141
- border-bottom: 1px solid #000;
142
- }
143
- .e-popup.e-multi-select-list-wrapper.e-checkbox .e-list-parent .e-list-item.e-item-focus.e-active.e-hover {
144
- background-color: #400074;
145
- }
146
- .e-popup.e-multi-select-list-wrapper.e-checkbox .e-list-parent .e-list-item.e-item-focus.e-active {
147
- border: 2px solid #400074;
148
- }
149
- .e-popup.e-multi-select-list-wrapper.e-checkbox .e-list-parent .e-list-item.e-active.e-hover:not(.e-item-focus) {
150
- border-bottom: 2px solid #000;
151
- border-left: 2px solid #000;
152
- border-right: 2px solid #000;
153
- border-top: 2px solid #000;
154
- }
155
- .e-popup.e-multi-select-list-wrapper .e-list-parent .e-list-item.e-item-focus {
156
- border: 2px solid #ecf;
157
- }
158
- .e-popup.e-multi-select-list-wrapper .e-list-parent .e-list-item.e-active.e-hover {
159
- background-color: #000;
160
- border-bottom: 1px solid #000;
161
- border-left: 1px solid #000;
162
- border-right: 1px solid #000;
163
- border-top: 1px solid #000;
164
- }
165
- .e-popup.e-multi-select-list-wrapper .e-list-parent .e-list-item.e-hover:not(.e-active) {
166
- border: 2px solid #000;
167
- }
168
- .e-popup.e-multi-select-list-wrapper .e-list-parent .e-list-item:not(.e-hover):not(.e-item-focus) {
169
- border: 2px solid #fff;
170
- }
171
- .e-popup.e-multi-select-list-wrapper .e-list-parent .e-list-item.e-active {
172
- border: 2px solid #400074;
173
- }
174
-
175
- .e-multi-select-wrapper.e-down-icon .e-input-group-icon.e-ddl-icon {
176
- height: 30px;
177
- width: 30px;
178
- }
179
-
180
1
  /*! recurrence editor theme wise definitions*/ /*! Schedule component's highcontrast theme definitions and variables */
181
2
  .e-schedule .e-schedule-toolbar .e-icon-prev::before {
182
3
  content: "\e98f";
@@ -372,7 +193,7 @@
372
193
  }
373
194
  .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 {
374
195
  font-size: 12px;
375
- margin-top: 3px;
196
+ padding-top: 4px;
376
197
  }
377
198
  .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 {
378
199
  border-radius: 0%;
@@ -436,9 +257,6 @@
436
257
  .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos > div {
437
258
  height: inherit;
438
259
  }
439
- .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 {
440
- padding: 0;
441
- }
442
260
  .e-schedule.e-device .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
443
261
  font-size: 15px;
444
262
  }
@@ -517,7 +335,6 @@
517
335
  height: 100%;
518
336
  position: absolute;
519
337
  width: 250px;
520
- color: #000;
521
338
  }
522
339
  .e-schedule .e-resource-tree-popup .e-resource-tree {
523
340
  height: 100%;
@@ -620,6 +437,7 @@
620
437
  }
621
438
  .e-schedule .e-block-appointment {
622
439
  background: rgba(204, 204, 204, 0.6);
440
+ border-radius: 2px;
623
441
  color: #3d3d3d;
624
442
  cursor: default;
625
443
  overflow: hidden;
@@ -877,15 +695,11 @@
877
695
  .e-schedule .e-vertical-view .e-header-cells .e-header-day {
878
696
  display: table;
879
697
  font-size: 13px;
880
- line-height: unset;
881
- padding-bottom: 0;
882
698
  }
883
699
  .e-schedule .e-vertical-view .e-header-cells .e-header-date {
884
700
  cursor: pointer;
885
701
  display: table;
886
702
  font-size: 18px;
887
- line-height: unset;
888
- padding-top: 0;
889
703
  }
890
704
  .e-schedule .e-vertical-view .e-header-cells .e-header-date:hover {
891
705
  text-decoration: underline;
@@ -953,7 +767,6 @@
953
767
  .e-schedule .e-vertical-view .e-all-day-appointment-section:hover, .e-schedule .e-vertical-view .e-all-day-appointment-section:focus {
954
768
  background: #ecf;
955
769
  border-radius: 100%;
956
- color: #000;
957
770
  }
958
771
  .e-schedule .e-vertical-view .e-appointment-hide {
959
772
  opacity: 0;
@@ -1106,7 +919,6 @@
1106
919
  flex: auto;
1107
920
  padding: 0 4px;
1108
921
  text-align: left;
1109
- line-height: unset;
1110
922
  }
1111
923
  .e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
1112
924
  font-size: 13px;
@@ -1407,9 +1219,6 @@
1407
1219
  .e-schedule .e-month-view .e-more-indicator:focus {
1408
1220
  text-decoration: underline;
1409
1221
  }
1410
- .e-schedule.e-rtl .e-month-view .e-date-header {
1411
- margin: 3px 3px 2px;
1412
- }
1413
1222
  .e-schedule.e-rtl .e-month-view .e-left-indent {
1414
1223
  border-left: 1px solid #757575;
1415
1224
  border-right-width: 0;
@@ -1582,6 +1391,54 @@
1582
1391
  .e-schedule .e-timeline-year-view .e-resource-collapse {
1583
1392
  transform: rotate(90deg);
1584
1393
  }
1394
+ .e-schedule .e-timeline-year-view .e-work-cells {
1395
+ background-color: #e4e4e4;
1396
+ border-color: #757575;
1397
+ border-style: solid;
1398
+ border-width: 0 1px 1px 0;
1399
+ color: #000;
1400
+ padding: 0;
1401
+ }
1402
+ .e-schedule .e-timeline-year-view .e-work-cells:hover:not(.e-other-month) {
1403
+ background: #ecf;
1404
+ color: #000;
1405
+ }
1406
+ .e-schedule .e-timeline-year-view .e-work-cells.e-work-days {
1407
+ background-color: #fff;
1408
+ }
1409
+ .e-schedule .e-timeline-year-view .e-work-cells.e-other-month {
1410
+ color: #4f4f4f;
1411
+ }
1412
+ .e-schedule .e-timeline-year-view .e-work-cells.e-current-day .e-date-header {
1413
+ background-color: transparent;
1414
+ border-radius: 50%;
1415
+ color: #fff;
1416
+ margin: 2px;
1417
+ width: 20px;
1418
+ }
1419
+ .e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell {
1420
+ background-color: #400074;
1421
+ color: #fff;
1422
+ }
1423
+ .e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell .e-more-indicator {
1424
+ color: #fff;
1425
+ }
1426
+ .e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell:hover {
1427
+ background-color: #400074;
1428
+ }
1429
+ .e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates {
1430
+ background-color: rgba(0, 0, 0, 0.08);
1431
+ }
1432
+ .e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header {
1433
+ cursor: default;
1434
+ opacity: 0.35;
1435
+ }
1436
+ .e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header:hover {
1437
+ text-decoration: none;
1438
+ }
1439
+ .e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates:hover {
1440
+ background-color: rgba(0, 0, 0, 0.08);
1441
+ }
1585
1442
  .e-schedule .e-timeline-year-view .e-content-table {
1586
1443
  height: 100%;
1587
1444
  }
@@ -1608,7 +1465,6 @@
1608
1465
  border-bottom: 1px solid #757575;
1609
1466
  border-right: 1px solid #757575;
1610
1467
  text-align: center;
1611
- color: #000;
1612
1468
  }
1613
1469
  .e-schedule .e-timeline-year-view .e-month-header.e-current-day {
1614
1470
  color: #400074;
@@ -1644,6 +1500,13 @@
1644
1500
  .e-schedule .e-timeline-year-view .e-work-cells .e-date-header:hover {
1645
1501
  text-decoration: underline;
1646
1502
  }
1503
+ .e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
1504
+ background-color: rgba(0, 0, 0, 0.08);
1505
+ box-shadow: inset 0 0 0 8px #e4e4e4;
1506
+ }
1507
+ .e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
1508
+ background-color: rgba(0, 0, 0, 0.08);
1509
+ }
1647
1510
  .e-schedule .e-timeline-year-view .e-event-table {
1648
1511
  position: absolute;
1649
1512
  top: 0;
@@ -1740,7 +1603,7 @@
1740
1603
  .e-schedule .e-timeline-year-view .e-event-table .e-more-indicator:focus {
1741
1604
  text-decoration: underline;
1742
1605
  }
1743
- .e-schedule.e-device .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
1606
+ .e-schedule.e-device .e-year-view .e-month-calendar {
1744
1607
  max-width: 100%;
1745
1608
  min-width: 100%;
1746
1609
  }
@@ -1782,7 +1645,6 @@
1782
1645
  }
1783
1646
  .e-schedule .e-timeline-view .e-date-header-wrap table tbody td.e-time-slots,
1784
1647
  .e-schedule .e-timeline-month-view .e-date-header-wrap table tbody td.e-time-slots {
1785
- background-color: #fff;
1786
1648
  overflow: inherit;
1787
1649
  }
1788
1650
  .e-schedule .e-timeline-view .e-date-header-wrap table tbody td > span,
@@ -2108,7 +1970,6 @@
2108
1970
  .e-schedule .e-month-agenda-view .e-content-table {
2109
1971
  border-bottom: 1px solid #757575;
2110
1972
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
2111
- height: 100%;
2112
1973
  }
2113
1974
  .e-schedule .e-month-agenda-view .e-resource-column {
2114
1975
  border-bottom: 1px solid #757575;
@@ -2325,7 +2186,6 @@
2325
2186
  .e-schedule .e-agenda-view .e-subject-wrap {
2326
2187
  display: -ms-flexbox;
2327
2188
  display: flex;
2328
- margin-bottom: 0;
2329
2189
  }
2330
2190
  .e-schedule .e-agenda-view .e-active-appointment-agenda .e-subject {
2331
2191
  color: #fff;
@@ -2479,10 +2339,6 @@
2479
2339
  min-width: 32px;
2480
2340
  z-index: 0;
2481
2341
  }
2482
- .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-item .e-btn.e-tbar-btn .e-icons.e-btn-icon,
2483
- .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-item .e-btn.e-tbar-btn .e-icons.e-btn-icon {
2484
- font-size: 14px;
2485
- }
2486
2342
  .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-item .e-tbar-btn-text,
2487
2343
  .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-item .e-tbar-btn-text {
2488
2344
  line-height: inherit;
@@ -2524,19 +2380,13 @@
2524
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,
2525
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,
2526
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 {
2527
- padding: 0 12px 0 0;
2528
- font-size: 14px;
2383
+ padding: 3px 12px 0 0;
2529
2384
  }
2530
2385
  .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn .e-btn-icon,
2531
2386
  .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-btn-icon,
2532
2387
  .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn .e-btn-icon,
2533
2388
  .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-btn-icon {
2534
2389
  height: 25px;
2535
- padding-top: 0;
2536
- }
2537
- .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-tbar-btn-text,
2538
- .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-tbar-btn-text {
2539
- font-size: 16px;
2540
2390
  }
2541
2391
  .e-bigger .e-schedule .e-more-popup-wrapper .e-header-day,
2542
2392
  .e-bigger.e-schedule .e-more-popup-wrapper .e-header-day {
@@ -2642,19 +2492,10 @@
2642
2492
  .e-dialog.e-quick-dialog.e-following-events-dialog {
2643
2493
  width: 420px;
2644
2494
  }
2645
- .e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content {
2646
- padding: 2%;
2647
- }
2648
2495
  @media screen and (max-width: 767px) {
2649
2496
  .e-dialog.e-quick-dialog.e-following-events-dialog {
2650
2497
  width: 289px;
2651
2498
  }
2652
- .e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content {
2653
- padding: 5%;
2654
- }
2655
- .e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content button {
2656
- margin-bottom: 5%;
2657
- }
2658
2499
  }
2659
2500
 
2660
2501
  .e-dialog.e-quick-dialog {
@@ -3098,7 +2939,6 @@
3098
2939
  position: absolute;
3099
2940
  right: 6px;
3100
2941
  top: 4px;
3101
- padding: 0;
3102
2942
  }
3103
2943
  .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-edit,
3104
2944
  .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-delete,
@@ -3125,15 +2965,12 @@
3125
2965
  width: 100%;
3126
2966
  }
3127
2967
  .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-schedule-form > span {
3128
- margin: 0 0 4px;
2968
+ margin-bottom: 4px;
3129
2969
  }
3130
2970
  .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
3131
2971
  font-size: 22px;
3132
2972
  height: 40px;
3133
2973
  }
3134
- .e-quick-popup-wrapper .e-event-popup .e-popup-header {
3135
- background-color: #e4e4e4;
3136
- }
3137
2974
  .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper {
3138
2975
  padding: 5px 5px 2px;
3139
2976
  }
@@ -3177,15 +3014,13 @@
3177
3014
  padding: 0 18px 8px;
3178
3015
  }
3179
3016
  .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-subject-wrap .e-subject {
3180
- background-color: rgba(28, 128, 0, 0.3);
3181
- border-left: 6px solid #1c8000;
3182
- border-radius: 2px;
3183
- color: #fff;
3184
3017
  cursor: default;
3185
3018
  font-size: 20px;
3186
3019
  font-weight: 500;
3187
3020
  line-height: 1.5;
3188
3021
  max-height: 87px;
3022
+ background-color: rgba(28, 128, 0, 0.3);
3023
+ border-left: 6px solid #1c8000;
3189
3024
  padding: 8px 0 8px 10px;
3190
3025
  }
3191
3026
  .e-quick-popup-wrapper .e-event-popup .e-popup-content {
@@ -3234,7 +3069,7 @@
3234
3069
  .e-quick-popup-wrapper .e-event-popup .e-resource-icon {
3235
3070
  color: #000;
3236
3071
  font-size: 18px;
3237
- padding: 4px 13px 0 0;
3072
+ padding-right: 13px;
3238
3073
  }
3239
3074
  .e-quick-popup-wrapper .e-cell-popup .e-date-time-details,
3240
3075
  .e-quick-popup-wrapper .e-cell-popup .e-location-details,
@@ -3275,9 +3110,6 @@
3275
3110
  right: auto;
3276
3111
  text-transform: capitalize;
3277
3112
  }
3278
- .e-quick-popup-wrapper .e-event-popup .e-popup-footer {
3279
- display: block;
3280
- }
3281
3113
  .e-quick-popup-wrapper.e-rtl {
3282
3114
  text-align: right;
3283
3115
  }
@@ -3285,6 +3117,10 @@
3285
3117
  left: 6px;
3286
3118
  right: auto;
3287
3119
  }
3120
+ .e-quick-popup-wrapper.e-rtl .e-cell-popup .e-popup-footer {
3121
+ padding: 8px 18px 8px 8px;
3122
+ text-align: left;
3123
+ }
3288
3124
  .e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
3289
3125
  .e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
3290
3126
  .e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
@@ -3292,17 +3128,9 @@
3292
3128
  .e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
3293
3129
  margin-right: 10px;
3294
3130
  }
3295
- .e-quick-popup-wrapper.e-rtl .e-event-details,
3296
- .e-quick-popup-wrapper.e-rtl .e-event-edit {
3131
+ .e-quick-popup-wrapper.e-rtl .e-event-details {
3297
3132
  margin-left: 8px;
3298
3133
  }
3299
- .e-quick-popup-wrapper.e-rtl .e-popup-footer {
3300
- padding: 8px 8px 8px 18px;
3301
- text-align: left;
3302
- }
3303
- .e-quick-popup-wrapper.e-rtl .e-date-time-icon {
3304
- padding: 0 0 0 10px;
3305
- }
3306
3134
  .e-quick-popup-wrapper.e-device {
3307
3135
  bottom: 0;
3308
3136
  height: 100%;
@@ -3359,7 +3187,6 @@
3359
3187
  .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-delete {
3360
3188
  background-color: transparent;
3361
3189
  border: 0;
3362
- color: #000;
3363
3190
  height: 40px;
3364
3191
  width: 40px;
3365
3192
  }
@@ -3391,25 +3218,6 @@
3391
3218
  .e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
3392
3219
  font-size: 24px;
3393
3220
  }
3394
- .e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content {
3395
- padding: 38px 18px 12px;
3396
- }
3397
- .e-bigger .e-quick-popup-wrapper .e-popup-footer {
3398
- padding: 8px 18px 8px 22px;
3399
- }
3400
- .e-bigger .e-quick-popup-wrapper .e-cell-popup .e-date-time-icon,
3401
- .e-bigger .e-quick-popup-wrapper .e-event-popup .e-date-time-icon {
3402
- padding-right: 13px;
3403
- }
3404
- .e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close .e-close-icon {
3405
- font-size: 16px;
3406
- }
3407
- .e-bigger .e-quick-popup-wrapper.e-rtl .e-cell-popup .e-date-time-icon {
3408
- padding-right: 0;
3409
- }
3410
- .e-bigger .e-quick-popup-wrapper.e-rtl .e-event-popup .e-date-time-icon {
3411
- padding-right: 13px;
3412
- }
3413
3221
  .e-bigger .e-quick-popup-wrapper .e-edit.e-btn.e-small.e-round,
3414
3222
  .e-bigger .e-quick-popup-wrapper .e-delete.e-btn.e-small.e-round,
3415
3223
  .e-bigger .e-quick-popup-wrapper .e-close.e-btn.e-small.e-round {
@@ -3430,35 +3238,6 @@
3430
3238
  padding: 0 5px 0 8px;
3431
3239
  }
3432
3240
 
3433
- .e-bigger .e-agenda-view .e-appointment {
3434
- padding: 0 8px;
3435
- }
3436
- .e-bigger .e-agenda-view .e-subject {
3437
- font-size: 16px;
3438
- }
3439
- .e-bigger .e-agenda-view .e-date-time {
3440
- font-size: 14px;
3441
- }
3442
- .e-bigger .e-agenda-view .e-day-date-header .e-m-date {
3443
- font-size: 20px;
3444
- }
3445
- .e-bigger .e-agenda-view .e-day-date-header .e-m-day {
3446
- font-size: 14px;
3447
- }
3448
-
3449
- .e-bigger .e-timeline-view .e-resource-text {
3450
- font-size: 14px;
3451
- padding-left: 12px;
3452
- }
3453
- .e-bigger .e-timeline-view .e-navigate {
3454
- font-size: 18px;
3455
- padding: 8px 0 8px 8px;
3456
- }
3457
- .e-bigger .e-timeline-view .e-date-header-wrap table tbody td > span {
3458
- font-size: 18px;
3459
- padding: 8px 0 8px 8px;
3460
- }
3461
-
3462
3241
  .e-appointment.e-schedule-event-clone {
3463
3242
  background: #1c8000;
3464
3243
  border-radius: 2px;
@@ -3561,7 +3340,8 @@
3561
3340
  height: calc(100% - 35px);
3562
3341
  max-height: 150px;
3563
3342
  overflow-y: auto;
3564
- padding: 10px 10px 0;
3343
+ padding-left: 10px;
3344
+ padding-right: 10px;
3565
3345
  }
3566
3346
  .e-bigger .e-more-popup-wrapper .e-more-event-content .e-appointment-border,
3567
3347
  .e-more-popup-wrapper .e-more-event-content .e-appointment-border {
@@ -3608,7 +3388,6 @@
3608
3388
  color: #000;
3609
3389
  cursor: pointer;
3610
3390
  height: 25px;
3611
- padding: unset;
3612
3391
  position: absolute;
3613
3392
  right: 6px;
3614
3393
  width: 25px;
@@ -3683,14 +3462,6 @@
3683
3462
  .e-more-popup-wrapper.e-device .e-more-event-content {
3684
3463
  max-height: unset;
3685
3464
  }
3686
- .e-bigger .e-more-popup-wrapper.e-rtl .e-header-date,
3687
- .e-more-popup-wrapper.e-rtl .e-header-date {
3688
- padding-right: 10px;
3689
- }
3690
- .e-bigger .e-more-popup-wrapper.e-rtl .e-header-day,
3691
- .e-more-popup-wrapper.e-rtl .e-header-day {
3692
- padding-right: 10px;
3693
- }
3694
3465
  .e-bigger .e-more-popup-wrapper.e-rtl .e-more-event-close,
3695
3466
  .e-more-popup-wrapper.e-rtl .e-more-event-close {
3696
3467
  left: 6px;
@@ -3708,10 +3479,6 @@
3708
3479
  border-width: 0;
3709
3480
  position: relative;
3710
3481
  }
3711
- .e-schedule .e-header-calendar {
3712
- background-color: none;
3713
- box-shadow: none;
3714
- }
3715
3482
  .e-schedule .e-vertical-view .e-date-header-wrap table tbody td:first-child,
3716
3483
  .e-schedule .e-vertical-view .e-content-wrap table td:first-child {
3717
3484
  border-left-width: 0;
@@ -3771,7 +3538,6 @@
3771
3538
  }
3772
3539
  .e-schedule .e-vertical-view .e-header-cells.e-current-day {
3773
3540
  color: #400074;
3774
- font-weight: normal;
3775
3541
  }
3776
3542
  .e-schedule .e-vertical-view .e-work-cells {
3777
3543
  background-color: #e4e4e4;
@@ -3802,7 +3568,6 @@
3802
3568
  }
3803
3569
  .e-schedule .e-vertical-view .e-all-day-cells.e-selected-cell:hover {
3804
3570
  background-color: #400074;
3805
- color: #000;
3806
3571
  }
3807
3572
  .e-schedule .e-vertical-view .e-selected-cell {
3808
3573
  background-color: #400074;
@@ -3810,7 +3575,6 @@
3810
3575
  }
3811
3576
  .e-schedule .e-vertical-view .e-selected-cell:hover {
3812
3577
  background-color: #400074;
3813
- color: #000;
3814
3578
  }
3815
3579
  .e-schedule .e-vertical-view .e-clone-time-indicator,
3816
3580
  .e-schedule .e-vertical-view .e-current-time {
@@ -3836,14 +3600,11 @@
3836
3600
  border-style: solid;
3837
3601
  border-width: 0 0 1px;
3838
3602
  color: #000;
3839
- font-size: none;
3840
3603
  text-align: left;
3841
- text-transform: none;
3842
3604
  }
3843
3605
  .e-schedule .e-month-view .e-date-header-wrap table td.e-current-day,
3844
3606
  .e-schedule .e-month-agenda-view .e-date-header-wrap table td.e-current-day {
3845
3607
  color: #400074;
3846
- font-weight: normal;
3847
3608
  }
3848
3609
  .e-schedule .e-month-view .e-work-cells,
3849
3610
  .e-schedule .e-month-agenda-view .e-work-cells {
@@ -3879,10 +3640,6 @@
3879
3640
  background-color: #400074;
3880
3641
  color: #fff;
3881
3642
  }
3882
- .e-schedule .e-month-view .e-selected-cell .e-date-header,
3883
- .e-schedule .e-month-agenda-view .e-selected-cell .e-date-header {
3884
- color: none;
3885
- }
3886
3643
  .e-schedule .e-month-view .e-selected-cell .e-more-indicator,
3887
3644
  .e-schedule .e-month-agenda-view .e-selected-cell .e-more-indicator {
3888
3645
  color: #fff;
@@ -3891,9 +3648,6 @@
3891
3648
  .e-schedule .e-month-agenda-view .e-selected-cell:hover {
3892
3649
  background-color: #400074;
3893
3650
  }
3894
- .e-schedule .e-month-agenda-view .e-content-wrap .e-table-container {
3895
- overflow: auto;
3896
- }
3897
3651
  .e-schedule .e-month-agenda-view .e-date-header-wrap table td {
3898
3652
  border-width: 0 0 1px 0;
3899
3653
  text-align: center;
@@ -3925,7 +3679,6 @@
3925
3679
  .e-schedule .e-timeline-view .e-date-header-wrap table td.e-current-day,
3926
3680
  .e-schedule .e-timeline-month-view .e-date-header-wrap table td.e-current-day {
3927
3681
  color: #400074;
3928
- font-weight: normal;
3929
3682
  }
3930
3683
  .e-schedule .e-timeline-view .e-work-cells,
3931
3684
  .e-schedule .e-timeline-month-view .e-work-cells {
@@ -3989,64 +3742,6 @@
3989
3742
  .e-schedule .e-timeline-view .e-current-timeline {
3990
3743
  border-left: 1px solid #400074;
3991
3744
  }
3992
- .e-schedule .e-timeline-year-view .e-work-cells {
3993
- background-color: #e4e4e4;
3994
- border-color: #757575;
3995
- border-style: solid;
3996
- border-width: 0 1px 1px 0;
3997
- color: #000;
3998
- padding: 0;
3999
- }
4000
- .e-schedule .e-timeline-year-view .e-work-cells:hover:not(.e-other-month) {
4001
- background: #ecf;
4002
- color: #000;
4003
- }
4004
- .e-schedule .e-timeline-year-view .e-work-cells.e-work-days {
4005
- background-color: #fff;
4006
- }
4007
- .e-schedule .e-timeline-year-view .e-work-cells.e-other-month {
4008
- color: #4f4f4f;
4009
- }
4010
- .e-schedule .e-timeline-year-view .e-work-cells.e-current-day .e-date-header {
4011
- background-color: transparent;
4012
- border-radius: 50%;
4013
- color: #fff;
4014
- margin: 2px;
4015
- width: 20px;
4016
- }
4017
- .e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell {
4018
- background-color: #400074;
4019
- color: #fff;
4020
- }
4021
- .e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell .e-date-header {
4022
- color: #fff;
4023
- }
4024
- .e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell .e-more-indicator {
4025
- color: #fff;
4026
- }
4027
- .e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell:hover {
4028
- background-color: #400074;
4029
- }
4030
- .e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates {
4031
- background-color: rgba(0, 0, 0, 0.08);
4032
- }
4033
- .e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header {
4034
- cursor: default;
4035
- opacity: 0.35;
4036
- }
4037
- .e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header:hover {
4038
- text-decoration: none;
4039
- }
4040
- .e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates:hover {
4041
- background-color: rgba(0, 0, 0, 0.08);
4042
- }
4043
- .e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
4044
- background-color: rgba(0, 0, 0, 0.08);
4045
- box-shadow: inset 0 0 0 8px #e4e4e4;
4046
- }
4047
- .e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
4048
- background-color: rgba(0, 0, 0, 0.08);
4049
- }
4050
3745
  .e-schedule.e-rtl .e-vertical-view .e-date-header-wrap table tbody td:first-child,
4051
3746
  .e-schedule.e-rtl .e-vertical-view .e-content-wrap table td:first-child {
4052
3747
  border-right-width: 0;
@@ -4139,7 +3834,8 @@
4139
3834
  display: flex;
4140
3835
  -ms-flex-flow: row wrap;
4141
3836
  flex-flow: row wrap;
4142
- margin: 0 auto;
3837
+ margin-left: auto;
3838
+ margin-right: auto;
4143
3839
  max-width: 1240px;
4144
3840
  }
4145
3841
  .e-recurrenceeditor .e-recurrence-table {
@@ -4180,7 +3876,7 @@
4180
3876
  }
4181
3877
  .e-recurrenceeditor .e-form-right,
4182
3878
  .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
4183
- padding: 0 0 10px;
3879
+ padding: 0 0 10px 8px;
4184
3880
  }
4185
3881
  .e-recurrenceeditor .e-input-wrapper {
4186
3882
  float: left;
@@ -4221,11 +3917,13 @@
4221
3917
  margin-bottom: 5px;
4222
3918
  }
4223
3919
  .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
4224
- padding: 0 0 0 8px;
3920
+ padding-left: 8px;
3921
+ padding-right: 0;
4225
3922
  }
4226
3923
  .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
4227
3924
  .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
4228
- padding: 0 8px 0 0;
3925
+ padding-left: 0;
3926
+ padding-right: 8px;
4229
3927
  }
4230
3928
  .e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
4231
3929
  width: 30px;
@@ -4253,10 +3951,10 @@
4253
3951
  margin-bottom: 11px;
4254
3952
  }
4255
3953
  .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper {
4256
- padding-bottom: 11px;
3954
+ margin-bottom: 11px;
4257
3955
  }
4258
3956
  .e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper {
4259
- padding-top: 3px;
3957
+ margin-top: -3px;
4260
3958
  }
4261
3959
  .e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
4262
3960
  display: none;
@@ -4306,7 +4004,7 @@
4306
4004
  }
4307
4005
  .e-bigger .e-recurrenceeditor .e-form-right,
4308
4006
  .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
4309
- padding: 0 0 10px;
4007
+ padding: 0 0 10px 12px;
4310
4008
  }
4311
4009
  .e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
4312
4010
  padding-bottom: 6px;
@@ -4365,7 +4063,8 @@
4365
4063
  }
4366
4064
  .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element,
4367
4065
  .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
4368
- padding: 0 64px 0 0;
4066
+ padding-left: 0;
4067
+ padding-right: 64px;
4369
4068
  }
4370
4069
  .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
4371
4070
  .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
@@ -4375,11 +4074,13 @@
4375
4074
  margin-bottom: 5px;
4376
4075
  }
4377
4076
  .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
4378
- padding: 0 0 0 12px;
4077
+ padding-left: 12px;
4078
+ padding-right: 0;
4379
4079
  }
4380
4080
  .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
4381
4081
  .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
4382
- padding: 0 12px 0 0;
4082
+ padding-left: 0;
4083
+ padding-right: 12px;
4383
4084
  }
4384
4085
  .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
4385
4086
  left: 0;
@@ -4411,7 +4112,8 @@
4411
4112
  }
4412
4113
  .e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
4413
4114
  .e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
4414
- padding: 0 0 0 10px;
4115
+ padding-left: 10px;
4116
+ padding-right: 0;
4415
4117
  }
4416
4118
  .e-device .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
4417
4119
  padding-right: 10px;
@@ -4432,25 +4134,23 @@
4432
4134
  .e-device .e-recurrenceeditor .e-recurrence-table .e-day-position {
4433
4135
  padding-left: 20px;
4434
4136
  }
4435
- .e-device .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
4436
- margin-left: 20px;
4437
- }
4438
4137
  .e-device .e-recurrenceeditor .e-week-position {
4439
4138
  right: 0;
4440
- padding-right: 10px;
4441
4139
  }
4442
4140
  .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
4443
4141
  padding-right: 0;
4444
4142
  }
4445
4143
  .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
4446
4144
  .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
4447
- padding: 0 10px 0 0;
4145
+ padding-left: 0;
4146
+ padding-right: 10px;
4448
4147
  }
4449
4148
  .e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
4450
- padding: 0 20px 0 0;
4149
+ padding-left: 0;
4451
4150
  }
4452
4151
  .e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
4453
- padding: 0 50px 0 0;
4152
+ padding-right: 20px;
4153
+ padding-left: 0;
4454
4154
  }
4455
4155
  .e-device .e-recurrenceeditor.e-rtl .e-week-position {
4456
4156
  left: 0;
@@ -4467,14 +4167,6 @@
4467
4167
  padding: 16px 8px;
4468
4168
  }
4469
4169
 
4470
- @media (max-width: 1024px) {
4471
- .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on {
4472
- width: 100%;
4473
- }
4474
- .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
4475
- width: 65%;
4476
- }
4477
- }
4478
4170
  @media (max-width: 580px) {
4479
4171
  .e-recurrenceeditor {
4480
4172
  margin-left: auto;
@@ -4489,7 +4181,7 @@
4489
4181
  margin-top: 0;
4490
4182
  }
4491
4183
  .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
4492
- .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
4184
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
4493
4185
  margin-bottom: 7px;
4494
4186
  }
4495
4187
  .e-recurrenceeditor .e-editor > div {
@@ -4505,35 +4197,34 @@
4505
4197
  width: 50%;
4506
4198
  }
4507
4199
  .e-recurrenceeditor .e-editor .e-form-left,
4508
- .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
4200
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
4509
4201
  padding: 0 0 10px;
4510
4202
  }
4511
4203
  .e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
4512
- .e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
4513
- padding: 0 0 0 10px;
4204
+ .e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
4205
+ padding-left: 10px;
4206
+ padding-right: 0;
4514
4207
  }
4515
4208
  .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-left {
4516
4209
  padding-right: 10px;
4517
4210
  }
4518
4211
  .e-recurrenceeditor .e-editor .e-form-right,
4519
- .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
4212
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
4520
4213
  padding-left: 0;
4521
4214
  }
4522
4215
  .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-days {
4523
4216
  width: 100%;
4524
4217
  }
4525
4218
  .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
4526
- width: 65%;
4527
- }
4528
- .e-recurrenceeditor .e-editor .e-recurrence-table .e-day-position {
4529
- padding-left: 50px;
4219
+ width: 100%;
4530
4220
  }
4531
4221
  .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
4532
4222
  padding-right: 0;
4533
4223
  }
4534
4224
  .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
4535
- .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
4536
- padding: 0 10px 0 0;
4225
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
4226
+ padding-left: 0;
4227
+ padding-right: 10px;
4537
4228
  }
4538
4229
  }
4539
4230
  /*! Recurrence-Editor component theme */