@syncfusion/ej2-vue-schedule 19.2.55 → 19.3.43

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 (57) hide show
  1. package/CHANGELOG.md +38 -0
  2. package/dist/ej2-vue-schedule.umd.min.js +1 -1
  3. package/dist/es6/ej2-vue-schedule.es2015.js +58 -4
  4. package/dist/es6/ej2-vue-schedule.es2015.js.map +1 -1
  5. package/dist/es6/ej2-vue-schedule.es5.js +62 -4
  6. package/dist/es6/ej2-vue-schedule.es5.js.map +1 -1
  7. package/dist/global/ej2-vue-schedule.min.js +2 -2
  8. package/package.json +8 -8
  9. package/src/recurrence-editor/recurrenceeditor.component.d.ts +2 -0
  10. package/src/recurrence-editor/recurrenceeditor.component.js +27 -1
  11. package/src/schedule/schedule.component.d.ts +5 -1
  12. package/src/schedule/schedule.component.js +36 -4
  13. package/styles/bootstrap-dark.css +47 -65
  14. package/styles/bootstrap.css +27 -44
  15. package/styles/bootstrap4.css +27 -43
  16. package/styles/bootstrap5-dark.css +5172 -0
  17. package/styles/bootstrap5-dark.scss +2 -0
  18. package/styles/bootstrap5.css +5173 -0
  19. package/styles/bootstrap5.scss +2 -0
  20. package/styles/fabric-dark.css +28 -60
  21. package/styles/fabric.css +27 -44
  22. package/styles/highcontrast-light.css +27 -75
  23. package/styles/highcontrast.css +29 -48
  24. package/styles/material-dark.css +71 -78
  25. package/styles/material.css +31 -44
  26. package/styles/recurrence-editor/bootstrap-dark.css +0 -4
  27. package/styles/recurrence-editor/bootstrap.css +0 -4
  28. package/styles/recurrence-editor/bootstrap4.css +0 -4
  29. package/styles/recurrence-editor/bootstrap5-dark.css +479 -0
  30. package/styles/recurrence-editor/bootstrap5-dark.scss +1 -0
  31. package/styles/recurrence-editor/bootstrap5.css +479 -0
  32. package/styles/recurrence-editor/bootstrap5.scss +1 -0
  33. package/styles/recurrence-editor/fabric-dark.css +0 -4
  34. package/styles/recurrence-editor/fabric.css +0 -4
  35. package/styles/recurrence-editor/highcontrast-light.css +0 -4
  36. package/styles/recurrence-editor/highcontrast.css +0 -4
  37. package/styles/recurrence-editor/material-dark.css +0 -4
  38. package/styles/recurrence-editor/material.css +0 -4
  39. package/styles/recurrence-editor/tailwind-dark.css +0 -4
  40. package/styles/recurrence-editor/tailwind.css +0 -4
  41. package/styles/schedule/bootstrap-dark.css +47 -61
  42. package/styles/schedule/bootstrap.css +27 -40
  43. package/styles/schedule/bootstrap4.css +27 -39
  44. package/styles/schedule/bootstrap5-dark.css +4692 -0
  45. package/styles/schedule/bootstrap5-dark.scss +1 -0
  46. package/styles/schedule/bootstrap5.css +4693 -0
  47. package/styles/schedule/bootstrap5.scss +1 -0
  48. package/styles/schedule/fabric-dark.css +28 -56
  49. package/styles/schedule/fabric.css +27 -40
  50. package/styles/schedule/highcontrast-light.css +27 -71
  51. package/styles/schedule/highcontrast.css +29 -44
  52. package/styles/schedule/material-dark.css +71 -74
  53. package/styles/schedule/material.css +31 -40
  54. package/styles/schedule/tailwind-dark.css +52 -70
  55. package/styles/schedule/tailwind.css +52 -69
  56. package/styles/tailwind-dark.css +52 -74
  57. package/styles/tailwind.css +52 -73
@@ -227,28 +227,19 @@
227
227
  }
228
228
 
229
229
  .e-schedule .e-schedule-toolbar .e-toolbar-pop {
230
- background: #fafafa;
231
230
  overflow: auto;
232
231
  }
233
232
 
234
- .e-schedule .e-schedule-toolbar .e-tbar-btn {
235
- background: #fafafa;
236
- }
237
-
238
- .e-schedule .e-schedule-toolbar .e-tbar-btn:hover, .e-schedule .e-schedule-toolbar .e-tbar-btn:focus {
239
- background-color: #e0e0e0;
240
- }
241
-
242
- .e-schedule .e-schedule-toolbar .e-tbar-btn:active {
243
- background: #e0e0e0;
244
- }
245
-
246
233
  .e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
247
234
  cursor: pointer;
248
235
  font-size: 13px;
249
236
  text-transform: uppercase;
250
237
  }
251
238
 
239
+ .e-schedule .e-schedule-toolbar .e-tbar-btn:active {
240
+ background: #e0e0e0;
241
+ }
242
+
252
243
  .e-schedule .e-schedule-toolbar .e-toolbar-items {
253
244
  background: #fafafa;
254
245
  }
@@ -267,13 +258,7 @@
267
258
  padding-top: 0;
268
259
  }
269
260
 
270
- .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:hover {
271
- background: #e0e0e0;
272
- border-radius: 100%;
273
- }
274
-
275
- .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:focus {
276
- background: #e0e0e0;
261
+ .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 {
277
262
  border-radius: 100%;
278
263
  }
279
264
 
@@ -314,16 +299,6 @@
314
299
  text-transform: initial;
315
300
  }
316
301
 
317
- .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-tbar-btn-text {
318
- cursor: pointer;
319
- font-size: 13px;
320
- text-transform: uppercase;
321
- }
322
-
323
- .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
324
- padding-left: 0;
325
- }
326
-
327
302
  .e-schedule .e-schedule-toolbar.e-rtl .e-hor-nav {
328
303
  background: #fafafa;
329
304
  border-left: 0;
@@ -336,7 +311,6 @@
336
311
  }
337
312
 
338
313
  .e-schedule .e-schedule-toolbar .e-hor-nav {
339
- background: #fafafa;
340
314
  border-left: 1px solid #f5f5f5;
341
315
  }
342
316
 
@@ -547,6 +521,13 @@
547
521
  width: 100%;
548
522
  }
549
523
 
524
+ .e-schedule .e-content-placeholder {
525
+ height: 100%;
526
+ position: relative;
527
+ width: 100%;
528
+ z-index: 99999;
529
+ }
530
+
550
531
  .e-schedule .e-content-wrap,
551
532
  .e-schedule .e-scroll-container {
552
533
  -webkit-overflow-scrolling: touch;
@@ -1741,6 +1722,7 @@
1741
1722
  border-style: solid;
1742
1723
  border-width: 0 1px 1px 0;
1743
1724
  color: rgba(0, 0, 0, 0.87);
1725
+ padding: 0;
1744
1726
  }
1745
1727
 
1746
1728
  .e-schedule .e-timeline-year-view .e-work-cells:hover:not(.e-other-month) {
@@ -1844,7 +1826,7 @@
1844
1826
 
1845
1827
  .e-schedule .e-timeline-year-view .e-month-header,
1846
1828
  .e-schedule .e-timeline-year-view .e-work-cells {
1847
- height: 70px;
1829
+ height: 75px;
1848
1830
  }
1849
1831
 
1850
1832
  .e-schedule .e-timeline-year-view .e-header-cells,
@@ -2095,13 +2077,6 @@
2095
2077
  background-color: #f5f5f5;
2096
2078
  }
2097
2079
 
2098
- .e-schedule .e-timeline-view .e-resource-cells:focus .e-resource-tree-icon,
2099
- .e-schedule .e-timeline-month-view .e-resource-cells:focus .e-resource-tree-icon {
2100
- background-color: #e0e0e0;
2101
- border-radius: 50%;
2102
- color: #000;
2103
- }
2104
-
2105
2080
  .e-schedule .e-timeline-view .e-resource-column-wrap,
2106
2081
  .e-schedule .e-timeline-month-view .e-resource-column-wrap {
2107
2082
  overflow: hidden;
@@ -2125,6 +2100,12 @@
2125
2100
  height: 42px;
2126
2101
  }
2127
2102
 
2103
+ .e-schedule .e-timeline-view.e-virtual-mask .e-work-cells,
2104
+ .e-schedule .e-timeline-month-view.e-virtual-mask .e-work-cells {
2105
+ background-color: rgba(0, 0, 0, 0.08);
2106
+ box-shadow: inset 0 0 0 8px #fafafa;
2107
+ }
2108
+
2128
2109
  .e-schedule .e-timeline-view .e-resource-tree-icon,
2129
2110
  .e-schedule .e-timeline-month-view .e-resource-tree-icon {
2130
2111
  color: rgba(0, 0, 0, 0.54);
@@ -2211,6 +2192,7 @@
2211
2192
  .e-schedule .e-timeline-view .e-appointment .e-time,
2212
2193
  .e-schedule .e-timeline-month-view .e-appointment .e-time {
2213
2194
  display: block;
2195
+ line-height: 1.4;
2214
2196
  }
2215
2197
 
2216
2198
  .e-schedule .e-timeline-view .e-appointment .e-disable,
@@ -2387,6 +2369,7 @@
2387
2369
 
2388
2370
  .e-schedule .e-month-agenda-view .e-week-number-wrapper .e-week-number {
2389
2371
  border-right: 1px solid rgba(0, 0, 0, 0.12);
2372
+ height: 40px;
2390
2373
  padding-top: 8px;
2391
2374
  }
2392
2375
 
@@ -2542,7 +2525,7 @@
2542
2525
  padding: 0;
2543
2526
  }
2544
2527
 
2545
- .e-schedule .e-month-agenda-view .e-appointment-indicator {
2528
+ .e-schedule .e-month-agenda-view .e-work-cells .e-appointment-indicator {
2546
2529
  background: #3f51b5;
2547
2530
  border-radius: 50%;
2548
2531
  height: 6px;
@@ -4192,6 +4175,7 @@
4192
4175
  border-color: rgba(0, 0, 0, 0.12);
4193
4176
  border-style: solid;
4194
4177
  border-width: 0 0 1px 1px;
4178
+ padding: 0;
4195
4179
  }
4196
4180
 
4197
4181
  .e-schedule .e-vertical-view .e-work-cells:hover {
@@ -4277,6 +4261,7 @@
4277
4261
  border-style: solid;
4278
4262
  border-width: 0 0 1px 1px;
4279
4263
  color: rgba(0, 0, 0, 0.87);
4264
+ padding: 0;
4280
4265
  }
4281
4266
 
4282
4267
  .e-schedule .e-month-view .e-work-cells:hover,
@@ -4365,6 +4350,7 @@
4365
4350
  border-style: solid;
4366
4351
  border-width: 0 0 1px 1px;
4367
4352
  color: rgba(0, 0, 0, 0.87);
4353
+ padding: 0;
4368
4354
  }
4369
4355
 
4370
4356
  .e-schedule .e-timeline-view .e-work-cells:hover:not(.e-resource-group-cells),
@@ -4373,6 +4359,11 @@
4373
4359
  color: #000;
4374
4360
  }
4375
4361
 
4362
+ .e-schedule .e-timeline-view.e-virtual-mask .e-work-cells:hover,
4363
+ .e-schedule .e-timeline-month-view.e-virtual-mask .e-work-cells:hover {
4364
+ background-color: rgba(0, 0, 0, 0.08);
4365
+ }
4366
+
4376
4367
  .e-schedule .e-timeline-view .e-work-days,
4377
4368
  .e-schedule .e-timeline-month-view .e-work-days {
4378
4369
  background-color: #fff;
@@ -4572,10 +4563,6 @@
4572
4563
  padding-left: 10px;
4573
4564
  }
4574
4565
 
4575
- .e-recurrenceeditor .e-icons {
4576
- height: 0;
4577
- }
4578
-
4579
4566
  .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
4580
4567
  padding: 0 8px 10px 0;
4581
4568
  }
@@ -43,10 +43,6 @@
43
43
  padding-left: 10px;
44
44
  }
45
45
 
46
- .e-recurrenceeditor .e-icons {
47
- height: 0;
48
- }
49
-
50
46
  .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
51
47
  padding: 0 8px 10px 0;
52
48
  }
@@ -43,10 +43,6 @@
43
43
  padding-left: 10px;
44
44
  }
45
45
 
46
- .e-recurrenceeditor .e-icons {
47
- height: 0;
48
- }
49
-
50
46
  .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
51
47
  padding: 0 8px 10px 0;
52
48
  }
@@ -43,10 +43,6 @@
43
43
  padding-left: 10px;
44
44
  }
45
45
 
46
- .e-recurrenceeditor .e-icons {
47
- height: 0;
48
- }
49
-
50
46
  .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
51
47
  padding: 0 8px 16px 0;
52
48
  }
@@ -0,0 +1,479 @@
1
+ /*! recurrence editor theme wise definitions*/
2
+ /*! Recurrence-Editor component layout */
3
+ .e-recurrenceeditor .e-editor {
4
+ display: -ms-flexbox;
5
+ display: flex;
6
+ -ms-flex-flow: row wrap;
7
+ flex-flow: row wrap;
8
+ margin-left: auto;
9
+ margin-right: auto;
10
+ max-width: 1240px;
11
+ }
12
+
13
+ .e-recurrenceeditor .e-recurrence-table {
14
+ table-layout: fixed;
15
+ width: 100%;
16
+ }
17
+
18
+ .e-recurrenceeditor .e-recurrence-table.e-repeat-content-wrapper td:last-child {
19
+ width: 27%;
20
+ }
21
+
22
+ .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
23
+ width: 24%;
24
+ }
25
+
26
+ .e-recurrenceeditor .e-recurrence-table .e-repeat-content {
27
+ display: inline-block;
28
+ font-weight: normal;
29
+ padding: 18px 0 0 8px;
30
+ }
31
+
32
+ .e-recurrenceeditor .e-recurrence-table .e-input-wrapper {
33
+ float: none;
34
+ width: 100%;
35
+ }
36
+
37
+ .e-recurrenceeditor .e-recurrence-table .e-week-position {
38
+ position: relative;
39
+ right: 16px;
40
+ }
41
+
42
+ .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
43
+ padding-left: 10px;
44
+ }
45
+
46
+ .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
47
+ padding: 0 8px 16px 0;
48
+ }
49
+
50
+ .e-recurrenceeditor .e-form-left {
51
+ padding: 0 8px 16px 0;
52
+ }
53
+
54
+ .e-recurrenceeditor .e-form-right,
55
+ .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
56
+ padding: 0 0 10px 8px;
57
+ }
58
+
59
+ .e-recurrenceeditor .e-input-wrapper {
60
+ float: left;
61
+ width: 50%;
62
+ }
63
+
64
+ .e-recurrenceeditor .e-input-wrapper div {
65
+ margin-bottom: 2.5%;
66
+ }
67
+
68
+ .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
69
+ .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
70
+ padding-right: 0;
71
+ }
72
+
73
+ .e-recurrenceeditor.e-rtl .e-end-on > div,
74
+ .e-recurrenceeditor.e-rtl .e-month-expander > div > div {
75
+ float: right;
76
+ }
77
+
78
+ .e-recurrenceeditor.e-rtl .e-form-left,
79
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-left {
80
+ padding: 0 0 10px 8px;
81
+ }
82
+
83
+ .e-recurrenceeditor.e-rtl .e-form-right,
84
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-right {
85
+ padding: 0 8px 10px 0;
86
+ }
87
+
88
+ .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
89
+ padding-left: 0;
90
+ }
91
+
92
+ .e-recurrenceeditor.e-rtl .e-week-position {
93
+ padding-left: 16px;
94
+ right: 0;
95
+ }
96
+
97
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
98
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
99
+ padding-right: 0;
100
+ }
101
+
102
+ .e-recurrenceeditor.e-rtl .e-end-on-label {
103
+ margin-bottom: 5px;
104
+ }
105
+
106
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
107
+ padding-left: 8px;
108
+ padding-right: 0;
109
+ }
110
+
111
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
112
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
113
+ padding-left: 0;
114
+ padding-right: 8px;
115
+ }
116
+
117
+ .e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
118
+ width: 0;
119
+ }
120
+
121
+ .e-recurrenceeditor .e-days .e-week-expander-label {
122
+ font-size: 14px;
123
+ font-weight: 400;
124
+ margin-bottom: 8px;
125
+ }
126
+
127
+ .e-recurrenceeditor .e-days button {
128
+ border-radius: 50%;
129
+ -ms-flex-flow: row wrap;
130
+ flex-flow: row wrap;
131
+ height: 35px;
132
+ margin: 0 8px 10px;
133
+ width: 35px;
134
+ }
135
+
136
+ .e-recurrenceeditor .e-hide-recurrence-element {
137
+ display: none;
138
+ }
139
+
140
+ .e-recurrenceeditor .e-half-space {
141
+ width: 20%;
142
+ }
143
+
144
+ .e-recurrenceeditor .e-year-expander {
145
+ margin-bottom: 11px;
146
+ }
147
+
148
+ .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper {
149
+ margin-bottom: 11px;
150
+ }
151
+
152
+ .e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper {
153
+ margin-top: -3px;
154
+ }
155
+
156
+ .e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
157
+ display: none;
158
+ }
159
+
160
+ .e-recurrenceeditor .e-input-wrapper-side {
161
+ float: left;
162
+ padding: 16px 20px 0;
163
+ width: 50%;
164
+ }
165
+
166
+ .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
167
+ float: none;
168
+ font-size: 14px;
169
+ font-weight: 400;
170
+ margin-bottom: 7px;
171
+ padding-right: 16px;
172
+ }
173
+
174
+ .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
175
+ padding-right: 16px;
176
+ }
177
+
178
+ .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-input-wrapper {
179
+ margin: 0;
180
+ }
181
+
182
+ .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
183
+ font-size: 14px;
184
+ font-weight: 400;
185
+ margin-bottom: 7px;
186
+ padding-right: 16px;
187
+ }
188
+
189
+ .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
190
+ padding-bottom: 6px;
191
+ }
192
+
193
+ .e-recurrenceeditor .e-input-wrapper-side .e-non-week .e-form-left {
194
+ padding-bottom: 12px;
195
+ }
196
+
197
+ .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
198
+ margin-bottom: 11px;
199
+ }
200
+
201
+ .e-bigger .e-recurrenceeditor {
202
+ padding: 0;
203
+ }
204
+
205
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
206
+ padding: 0 12px 11px 0;
207
+ }
208
+
209
+ .e-bigger .e-recurrenceeditor .e-form-left {
210
+ padding: 0 12px 14px 0;
211
+ }
212
+
213
+ .e-bigger .e-recurrenceeditor .e-form-right,
214
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
215
+ padding: 0 0 10px 12px;
216
+ }
217
+
218
+ .e-bigger .e-recurrenceeditor .e-recurrence-table .e-week-position {
219
+ right: 24px;
220
+ }
221
+
222
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
223
+ padding-bottom: 6px;
224
+ }
225
+
226
+ .e-bigger .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
227
+ padding-left: 70px;
228
+ }
229
+
230
+ .e-bigger .e-recurrenceeditor .e-week-position {
231
+ padding-left: 55px;
232
+ padding-right: 0;
233
+ }
234
+
235
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
236
+ font-size: 16px;
237
+ margin-bottom: 0;
238
+ }
239
+
240
+ .e-bigger .e-recurrenceeditor .e-end-on-label {
241
+ margin-bottom: 0;
242
+ }
243
+
244
+ .e-bigger .e-recurrenceeditor .e-days .e-week-expander-label {
245
+ font-size: 16px;
246
+ margin-bottom: 8px;
247
+ }
248
+
249
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-non-week .e-form-left {
250
+ padding-bottom: 12px;
251
+ }
252
+
253
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
254
+ font-size: 16px;
255
+ margin-bottom: 1px;
256
+ }
257
+
258
+ .e-bigger .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper,
259
+ .e-bigger .e-recurrenceeditor .e-year-expander,
260
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
261
+ margin-bottom: 11px;
262
+ }
263
+
264
+ .e-bigger .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
265
+ width: 0;
266
+ }
267
+
268
+ .e-bigger .e-recurrenceeditor .e-days button {
269
+ height: 40px;
270
+ width: 40px;
271
+ }
272
+
273
+ .e-bigger .e-recurrenceeditor.e-rtl .e-form-left,
274
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-left {
275
+ padding: 0 0 10px 12px;
276
+ }
277
+
278
+ .e-bigger .e-recurrenceeditor.e-rtl .e-form-right,
279
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-right {
280
+ padding: 0 12px 10px 0;
281
+ }
282
+
283
+ .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
284
+ padding-left: 0;
285
+ padding-right: 64px;
286
+ }
287
+
288
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
289
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
290
+ padding-right: 0;
291
+ }
292
+
293
+ .e-bigger .e-recurrenceeditor.e-rtl .e-end-on-label {
294
+ margin-bottom: 5px;
295
+ }
296
+
297
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
298
+ padding-left: 12px;
299
+ padding-right: 0;
300
+ }
301
+
302
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
303
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
304
+ padding-left: 0;
305
+ padding-right: 12px;
306
+ }
307
+
308
+ .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
309
+ right: 33px;
310
+ }
311
+
312
+ .e-bigger .e-recurrenceeditor.e-rtl .e-week-position {
313
+ padding-left: 46px;
314
+ }
315
+
316
+ .e-device .e-recurrenceeditor .e-recurrence-table.e-repeat-content-wrapper td:last-child {
317
+ width: 25%;
318
+ }
319
+
320
+ .e-device .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
321
+ width: 20%;
322
+ }
323
+
324
+ .e-device .e-recurrenceeditor .e-week-expander-label {
325
+ margin-bottom: 6px;
326
+ }
327
+
328
+ .e-device .e-recurrenceeditor .e-month-expander-label {
329
+ font-size: 12px;
330
+ margin-bottom: 5px;
331
+ }
332
+
333
+ .e-device .e-recurrenceeditor .e-footer-content {
334
+ padding: 12px;
335
+ }
336
+
337
+ .e-device .e-recurrenceeditor .e-form-left,
338
+ .e-device .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
339
+ padding: 0 3px 10px 0;
340
+ }
341
+
342
+ .e-device .e-recurrenceeditor .e-form-right,
343
+ .e-device .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
344
+ padding: 0 0 10px 3px;
345
+ }
346
+
347
+ .e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
348
+ .e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
349
+ padding-left: 10px;
350
+ padding-right: 0;
351
+ }
352
+
353
+ .e-device .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
354
+ padding-right: 10px;
355
+ }
356
+
357
+ .e-device .e-recurrenceeditor.e-end-on {
358
+ padding-right: 0;
359
+ }
360
+
361
+ .e-device .e-recurrenceeditor.e-end-on .e-end-on-label {
362
+ float: none;
363
+ font-size: 12px;
364
+ font-weight: 400;
365
+ margin-bottom: 7px;
366
+ }
367
+
368
+ .e-device .e-recurrenceeditor.e-end-on .e-end-on-left {
369
+ padding-right: 0;
370
+ }
371
+
372
+ .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
373
+ padding-right: 0;
374
+ }
375
+
376
+ .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
377
+ .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
378
+ padding-left: 0;
379
+ padding-right: 10px;
380
+ }
381
+
382
+ .e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
383
+ padding-left: 0;
384
+ }
385
+
386
+ .e-device .e-recurrenceeditor.e-rtl .e-week-position {
387
+ padding-left: 16px;
388
+ padding-right: 0;
389
+ }
390
+
391
+ .e-device .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
392
+ padding-left: 20px;
393
+ }
394
+
395
+ .e-device .e-recurrenceeditor .e-week-position {
396
+ padding-left: 0;
397
+ padding-right: 0;
398
+ }
399
+
400
+ .e-device .e-recurrenceeditor .e-week-position {
401
+ padding-left: 0;
402
+ }
403
+
404
+ .e-device.e-recurrence-dialog .e-dlg-header-content {
405
+ background: none;
406
+ box-shadow: none;
407
+ padding-bottom: 10px;
408
+ }
409
+
410
+ .e-device.e-recurrence-dialog .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
411
+ margin-bottom: 7px;
412
+ }
413
+
414
+ .e-device.e-recurrence-dialog .e-footer-content {
415
+ padding: 16px 8px;
416
+ }
417
+
418
+ @media (max-width: 580px) {
419
+ .e-recurrenceeditor {
420
+ margin-left: auto;
421
+ margin-right: auto;
422
+ width: 100%;
423
+ }
424
+ .e-recurrenceeditor .e-editor {
425
+ -ms-flex-direction: column;
426
+ flex-direction: column;
427
+ }
428
+ .e-recurrenceeditor .e-editor > .e-input-wrapper.e-form-left {
429
+ margin-top: 0;
430
+ }
431
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
432
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
433
+ margin-bottom: 7px;
434
+ }
435
+ .e-recurrenceeditor .e-editor > div {
436
+ margin-top: 20px;
437
+ }
438
+ .e-recurrenceeditor .e-editor > .e-input-wrapper {
439
+ width: 100%;
440
+ }
441
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on {
442
+ width: 100%;
443
+ }
444
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-input-wrapper {
445
+ width: 50%;
446
+ }
447
+ .e-recurrenceeditor .e-editor .e-form-left,
448
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
449
+ padding: 0 0 10px;
450
+ }
451
+ .e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
452
+ .e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
453
+ padding-left: 10px;
454
+ padding-right: 0;
455
+ }
456
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-left {
457
+ padding-right: 10px;
458
+ }
459
+ .e-recurrenceeditor .e-editor .e-form-right,
460
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
461
+ padding-left: 0;
462
+ }
463
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-days {
464
+ width: 100%;
465
+ }
466
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
467
+ width: 100%;
468
+ }
469
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
470
+ padding-right: 0;
471
+ }
472
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
473
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
474
+ padding-left: 0;
475
+ padding-right: 10px;
476
+ }
477
+ }
478
+
479
+ /*! Recurrence-Editor component theme */
@@ -0,0 +1 @@
1
+ @import 'ej2-schedule/styles/recurrence-editor/bootstrap5-dark.scss';