@syncfusion/ej2-react-schedule 25.2.6 → 26.1.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/dist/ej2-react-schedule.min.js +2 -2
  2. package/dist/ej2-react-schedule.umd.min.js +2 -2
  3. package/dist/ej2-react-schedule.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-react-schedule.es2015.js +6 -6
  5. package/dist/es6/ej2-react-schedule.es2015.js.map +1 -1
  6. package/package.json +9 -9
  7. package/styles/bootstrap-dark.css +4698 -1
  8. package/styles/bootstrap.css +4693 -1
  9. package/styles/bootstrap4.css +4795 -1
  10. package/styles/bootstrap5-dark.css +4739 -1
  11. package/styles/bootstrap5.css +4739 -1
  12. package/styles/fabric-dark.css +4660 -1
  13. package/styles/fabric.css +4650 -1
  14. package/styles/fluent-dark.css +4723 -1
  15. package/styles/fluent.css +4723 -1
  16. package/styles/fluent2.css +6966 -0
  17. package/styles/fluent2.scss +2 -0
  18. package/styles/highcontrast-light.css +4735 -1
  19. package/styles/highcontrast.css +4744 -1
  20. package/styles/material-dark.css +4715 -1
  21. package/styles/material.css +4762 -1
  22. package/styles/material3-dark.css +4980 -1
  23. package/styles/material3.css +5204 -1
  24. package/styles/recurrence-editor/bootstrap-dark.css +503 -1
  25. package/styles/recurrence-editor/bootstrap.css +503 -1
  26. package/styles/recurrence-editor/bootstrap4.css +549 -1
  27. package/styles/recurrence-editor/bootstrap5-dark.css +545 -1
  28. package/styles/recurrence-editor/bootstrap5.css +545 -1
  29. package/styles/recurrence-editor/fabric-dark.css +478 -1
  30. package/styles/recurrence-editor/fabric.css +471 -1
  31. package/styles/recurrence-editor/fluent-dark.css +525 -1
  32. package/styles/recurrence-editor/fluent.css +525 -1
  33. package/styles/recurrence-editor/fluent2.css +1534 -0
  34. package/styles/recurrence-editor/fluent2.scss +1 -0
  35. package/styles/recurrence-editor/highcontrast-light.css +475 -1
  36. package/styles/recurrence-editor/highcontrast.css +475 -1
  37. package/styles/recurrence-editor/material-dark.css +512 -1
  38. package/styles/recurrence-editor/material.css +537 -1
  39. package/styles/recurrence-editor/material3-dark.css +657 -1
  40. package/styles/recurrence-editor/material3.css +769 -1
  41. package/styles/recurrence-editor/tailwind-dark.css +500 -1
  42. package/styles/recurrence-editor/tailwind.css +500 -1
  43. package/styles/schedule/bootstrap-dark.css +4302 -1
  44. package/styles/schedule/bootstrap.css +4297 -1
  45. package/styles/schedule/bootstrap4.css +4399 -1
  46. package/styles/schedule/bootstrap5-dark.css +4343 -1
  47. package/styles/schedule/bootstrap5.css +4343 -1
  48. package/styles/schedule/fabric-dark.css +4264 -1
  49. package/styles/schedule/fabric.css +4254 -1
  50. package/styles/schedule/fluent-dark.css +4327 -1
  51. package/styles/schedule/fluent.css +4327 -1
  52. package/styles/schedule/fluent2.css +5536 -0
  53. package/styles/schedule/fluent2.scss +1 -0
  54. package/styles/schedule/highcontrast-light.css +4339 -1
  55. package/styles/schedule/highcontrast.css +4348 -1
  56. package/styles/schedule/material-dark.css +4319 -1
  57. package/styles/schedule/material.css +4366 -1
  58. package/styles/schedule/material3-dark.css +4474 -1
  59. package/styles/schedule/material3.css +4586 -1
  60. package/styles/schedule/tailwind-dark.css +4293 -1
  61. package/styles/schedule/tailwind.css +4293 -1
  62. package/styles/tailwind-dark.css +4689 -1
  63. package/styles/tailwind.css +4689 -1
  64. package/CHANGELOG.md +0 -2010
@@ -1 +1,512 @@
1
- @import '@syncfusion/ej2-schedule/styles/recurrence-editor/material-dark.css';
1
+ .e-ddl.e-control-wrapper .e-ddl-icon::before {
2
+ -webkit-transform: rotate(0deg);
3
+ transform: rotate(0deg);
4
+ -webkit-transition: -webkit-transform 300ms ease;
5
+ transition: -webkit-transform 300ms ease;
6
+ transition: transform 300ms ease;
7
+ transition: transform 300ms ease, -webkit-transform 300ms ease;
8
+ }
9
+
10
+ .e-popup.e-ddl .e-dropdownbase {
11
+ min-height: 26px;
12
+ }
13
+
14
+ .e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before {
15
+ -webkit-transform: rotate(180deg);
16
+ transform: rotate(180deg);
17
+ -webkit-transition: -webkit-transform 300ms ease;
18
+ transition: -webkit-transform 300ms ease;
19
+ transition: transform 300ms ease;
20
+ transition: transform 300ms ease, -webkit-transform 300ms ease;
21
+ }
22
+
23
+ .e-dropdownbase .e-list-item.e-active.e-hover {
24
+ color: #00b0ff;
25
+ }
26
+
27
+ .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
28
+ .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
29
+ .e-input-group:not(.e-disabled) .e-back-icon:active,
30
+ .e-input-group:not(.e-disabled) .e-back-icon:hover,
31
+ .e-popup.e-ddl .e-input-group:not(.e-disabled) .e-clear-icon:active,
32
+ .e-popup.e-ddl .e-input-group:not(.e-disabled) .e-clear-icon:hover {
33
+ background: transparent;
34
+ }
35
+
36
+ .e-input-group .e-ddl-icon:not(:active)::after {
37
+ -webkit-animation: none;
38
+ animation: none;
39
+ }
40
+
41
+ .e-ddl.e-popup {
42
+ border: 0;
43
+ -webkit-box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
44
+ box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
45
+ margin-top: 2px;
46
+ }
47
+
48
+ .e-bigger .e-popup.e-ddl-device-filter .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
49
+ border-color: transparent;
50
+ }
51
+
52
+ .e-bigger .e-popup.e-ddl-device-filter {
53
+ margin-top: 0;
54
+ }
55
+
56
+ .e-bigger .e-ddl-device .e-input-group,
57
+ .e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
58
+ background: #f5f5f5;
59
+ border-width: 0;
60
+ -webkit-box-shadow: none;
61
+ box-shadow: none;
62
+ margin-bottom: 0;
63
+ }
64
+
65
+ .e-bigger .e-ddl-device .e-input-group .e-back-icon,
66
+ .e-bigger .e-ddl-device .e-input-group input.e-input,
67
+ .e-bigger .e-ddl-device .e-input-group .e-clear-icon {
68
+ background-color: #f5f5f5;
69
+ }
70
+
71
+ .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
72
+ margin: 6px 6px 5px;
73
+ min-height: 12px;
74
+ min-width: 12px;
75
+ padding: 6px;
76
+ }
77
+
78
+ .e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
79
+ .e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
80
+ min-height: 16px;
81
+ min-width: 16px;
82
+ }
83
+
84
+ .e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter,
85
+ .e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter {
86
+ padding: 8px 16px 8px 0;
87
+ }
88
+
89
+ .e-input-group.e-ddl,
90
+ .e-input-group.e-ddl .e-input,
91
+ .e-input-group.e-ddl .e-ddl-icon {
92
+ background: transparent;
93
+ }
94
+
95
+ .e-ddl.e-ddl-device.e-ddl-device-filter .e-input-group:hover:not(.e-disabled):not(.e-float-icon-left),
96
+ .e-ddl.e-ddl-device.e-ddl-device-filter .e-input-group.e-control-wrapper:hover:not(.e-disabled):not(.e-float-icon-left) {
97
+ border-bottom-width: 0;
98
+ }
99
+
100
+ .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-small .e-clear-icon,
101
+ .e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
102
+ .e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
103
+ .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus.e-small .e-clear-icon,
104
+ .e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon,
105
+ .e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon {
106
+ margin: 0;
107
+ }
108
+
109
+ .e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
110
+ .e-small.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
111
+ .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small .e-input-filter,
112
+ .e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-input-focus .e-input-filter,
113
+ .e-small.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-input-focus .e-input-filter,
114
+ .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small.e-input-focus .e-input-filter {
115
+ padding: 5px 5px 5px 12px;
116
+ }
117
+
118
+ .e-recurrenceeditor .e-editor {
119
+ display: -webkit-box;
120
+ display: -ms-flexbox;
121
+ display: flex;
122
+ -webkit-box-orient: horizontal;
123
+ -webkit-box-direction: normal;
124
+ -ms-flex-flow: row wrap;
125
+ flex-flow: row wrap;
126
+ margin: 0 auto;
127
+ max-width: 1240px;
128
+ }
129
+ .e-recurrenceeditor .e-recurrence-table {
130
+ table-layout: fixed;
131
+ width: 100%;
132
+ }
133
+ .e-recurrenceeditor .e-recurrence-table.e-repeat-content-wrapper td:last-child {
134
+ width: 27%;
135
+ }
136
+ .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
137
+ width: 24%;
138
+ }
139
+ .e-recurrenceeditor .e-recurrence-table .e-repeat-content {
140
+ display: inline-block;
141
+ font-weight: normal;
142
+ padding: 18px 0 0 8px;
143
+ }
144
+ .e-recurrenceeditor .e-recurrence-table .e-input-wrapper {
145
+ float: none;
146
+ width: 100%;
147
+ }
148
+ .e-recurrenceeditor .e-recurrence-table .e-week-position {
149
+ min-width: 81px;
150
+ position: relative;
151
+ right: 20px;
152
+ }
153
+ .e-recurrenceeditor .e-recurrence-table .e-day-position {
154
+ min-width: 120px;
155
+ }
156
+ .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
157
+ padding-left: 10px;
158
+ }
159
+ .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
160
+ padding: 0 8px 10px 0;
161
+ }
162
+ .e-recurrenceeditor .e-form-left {
163
+ padding: 0 8px 16px 0;
164
+ }
165
+ .e-recurrenceeditor .e-form-right,
166
+ .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
167
+ padding: 0 0 10px;
168
+ }
169
+ .e-recurrenceeditor .e-input-wrapper {
170
+ float: left;
171
+ width: 50%;
172
+ }
173
+ .e-recurrenceeditor .e-input-wrapper div {
174
+ margin-bottom: 2.5%;
175
+ }
176
+ .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
177
+ .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
178
+ padding-right: 0;
179
+ margin-top: 16px;
180
+ }
181
+ .e-recurrenceeditor.e-rtl .e-end-on > div,
182
+ .e-recurrenceeditor.e-rtl .e-month-expander > div > div {
183
+ float: right;
184
+ }
185
+ .e-recurrenceeditor.e-rtl .e-form-left,
186
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-left {
187
+ padding: 0 0 10px 8px;
188
+ }
189
+ .e-recurrenceeditor.e-rtl .e-form-right,
190
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-right {
191
+ padding: 0 8px 10px 0;
192
+ }
193
+ .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
194
+ position: relative;
195
+ right: 10px;
196
+ }
197
+ .e-recurrenceeditor.e-rtl .e-week-position {
198
+ left: 20px;
199
+ right: 0;
200
+ }
201
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
202
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
203
+ padding-right: 0;
204
+ }
205
+ .e-recurrenceeditor.e-rtl .e-end-on-label {
206
+ margin-bottom: 5px;
207
+ }
208
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
209
+ padding: 0 0 0 8px;
210
+ }
211
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
212
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
213
+ padding: 0 8px 0 0;
214
+ }
215
+ .e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
216
+ width: 30px;
217
+ }
218
+ .e-recurrenceeditor .e-days .e-week-expander-label {
219
+ font-size: 13px;
220
+ font-weight: 400;
221
+ margin-bottom: 8px;
222
+ }
223
+ .e-recurrenceeditor .e-days button {
224
+ border-radius: 50%;
225
+ -webkit-box-orient: horizontal;
226
+ -webkit-box-direction: normal;
227
+ -ms-flex-flow: row wrap;
228
+ flex-flow: row wrap;
229
+ height: 35px;
230
+ margin: 0 8px 10px;
231
+ width: 35px;
232
+ }
233
+ .e-recurrenceeditor .e-hide-recurrence-element {
234
+ display: none;
235
+ }
236
+ .e-recurrenceeditor .e-half-space {
237
+ width: 20%;
238
+ }
239
+ .e-recurrenceeditor .e-year-expander {
240
+ margin-bottom: 11px;
241
+ }
242
+ .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper {
243
+ padding-bottom: 11px;
244
+ }
245
+ .e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper {
246
+ padding-top: 3px;
247
+ }
248
+ .e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
249
+ display: none;
250
+ }
251
+ .e-recurrenceeditor .e-input-wrapper-side {
252
+ float: left;
253
+ padding: 16px 20px 0;
254
+ width: 50%;
255
+ }
256
+ .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
257
+ padding-right: 16px;
258
+ }
259
+ .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-input-wrapper {
260
+ margin: 0;
261
+ }
262
+ .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
263
+ font-size: 13px;
264
+ font-weight: 400;
265
+ margin-bottom: 1px;
266
+ padding-right: 16px;
267
+ }
268
+ .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
269
+ padding-bottom: 6px;
270
+ }
271
+ .e-recurrenceeditor .e-input-wrapper-side .e-non-week .e-form-left {
272
+ padding-bottom: 12px;
273
+ }
274
+ .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
275
+ margin-bottom: 11px;
276
+ }
277
+
278
+ .e-bigger .e-recurrenceeditor {
279
+ padding: 0;
280
+ }
281
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
282
+ padding: 0 12px 11px 0;
283
+ }
284
+ .e-bigger .e-recurrenceeditor .e-form-left {
285
+ padding: 0 12px 14px 0;
286
+ }
287
+ .e-bigger .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
288
+ padding-left: 70px;
289
+ }
290
+ .e-bigger .e-recurrenceeditor .e-week-position {
291
+ min-width: 90px;
292
+ right: 0;
293
+ }
294
+ .e-bigger .e-recurrenceeditor .e-day-position {
295
+ min-width: 128px;
296
+ padding-left: 14px;
297
+ }
298
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
299
+ font-size: 12px;
300
+ margin-bottom: 3px;
301
+ font-weight: 400;
302
+ }
303
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
304
+ padding-right: 16px;
305
+ }
306
+ .e-bigger .e-recurrenceeditor .e-end-on-label {
307
+ margin-bottom: 0;
308
+ }
309
+ .e-bigger .e-recurrenceeditor .e-days .e-week-expander-label {
310
+ font-size: 12px;
311
+ margin-bottom: 8px;
312
+ }
313
+ .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
314
+ font-size: 12px;
315
+ margin-bottom: 1px;
316
+ }
317
+ .e-bigger .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper,
318
+ .e-bigger .e-recurrenceeditor .e-year-expander {
319
+ margin-bottom: 11px;
320
+ }
321
+ .e-bigger .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
322
+ width: 30px;
323
+ }
324
+ .e-bigger .e-recurrenceeditor .e-days button {
325
+ height: 40px;
326
+ width: 40px;
327
+ }
328
+ .e-bigger .e-recurrenceeditor.e-rtl .e-form-left,
329
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-left {
330
+ padding: 0 0 10px 12px;
331
+ }
332
+ .e-bigger .e-recurrenceeditor.e-rtl .e-form-right,
333
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-right {
334
+ padding: 0 12px 10px 0;
335
+ }
336
+ .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element,
337
+ .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
338
+ padding: 0 64px 0 0;
339
+ }
340
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
341
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
342
+ padding-right: 0;
343
+ }
344
+ .e-bigger .e-recurrenceeditor.e-rtl .e-end-on-label {
345
+ margin-bottom: 5px;
346
+ }
347
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
348
+ padding: 0 0 0 12px;
349
+ }
350
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
351
+ .e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
352
+ padding: 0 12px 0 0;
353
+ }
354
+ .e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
355
+ left: 0;
356
+ }
357
+
358
+ .e-device .e-recurrenceeditor .e-recurrence-table.e-repeat-content-wrapper td:last-child {
359
+ width: 25%;
360
+ }
361
+ .e-device .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
362
+ width: 20%;
363
+ }
364
+ .e-device .e-recurrenceeditor .e-week-expander-label {
365
+ margin-bottom: 6px;
366
+ }
367
+ .e-device .e-recurrenceeditor .e-month-expander-label {
368
+ font-size: 12px;
369
+ margin-bottom: 5px;
370
+ }
371
+ .e-device .e-recurrenceeditor .e-footer-content {
372
+ padding: 12px;
373
+ }
374
+ .e-device .e-recurrenceeditor .e-form-left,
375
+ .e-device .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
376
+ padding: 0 3px 10px 0;
377
+ }
378
+ .e-device .e-recurrenceeditor .e-form-right,
379
+ .e-device .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
380
+ padding: 0 0 10px 3px;
381
+ }
382
+ .e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
383
+ .e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
384
+ padding: 0 0 0 10px;
385
+ }
386
+ .e-device .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
387
+ padding-right: 10px;
388
+ }
389
+ .e-device .e-recurrenceeditor.e-end-on {
390
+ padding-right: 0;
391
+ }
392
+ .e-device .e-recurrenceeditor.e-end-on .e-end-on-label {
393
+ float: none;
394
+ font-size: 12px;
395
+ font-weight: 400;
396
+ margin-bottom: 1px;
397
+ }
398
+ .e-device .e-recurrenceeditor.e-end-on .e-end-on-left {
399
+ padding-right: 0;
400
+ }
401
+ .e-device .e-recurrenceeditor .e-recurrence-table .e-monthday-element,
402
+ .e-device .e-recurrenceeditor .e-recurrence-table .e-day-position {
403
+ padding-left: 20px;
404
+ }
405
+ .e-device .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
406
+ margin-left: 20px;
407
+ }
408
+ .e-device .e-recurrenceeditor .e-week-position {
409
+ right: 0;
410
+ padding-right: 10px;
411
+ }
412
+ .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
413
+ padding-right: 0;
414
+ }
415
+ .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
416
+ .e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
417
+ padding: 0 10px 0 0;
418
+ }
419
+ .e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
420
+ padding: 0 20px 0 0;
421
+ }
422
+ .e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
423
+ padding: 0 50px 0 0;
424
+ }
425
+ .e-device .e-recurrenceeditor.e-rtl .e-week-position {
426
+ left: 0;
427
+ }
428
+ .e-device.e-recurrence-dialog .e-dlg-header-content {
429
+ background: none;
430
+ -webkit-box-shadow: none;
431
+ box-shadow: none;
432
+ padding-bottom: 10px;
433
+ }
434
+ .e-device.e-recurrence-dialog .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
435
+ margin-bottom: 1px;
436
+ }
437
+ .e-device.e-recurrence-dialog .e-footer-content {
438
+ padding: 16px 8px;
439
+ }
440
+
441
+ @media (max-width: 1024px) {
442
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on {
443
+ width: 100%;
444
+ }
445
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
446
+ width: 65%;
447
+ }
448
+ }
449
+ @media (max-width: 580px) {
450
+ .e-recurrenceeditor {
451
+ margin-left: auto;
452
+ margin-right: auto;
453
+ width: 100%;
454
+ }
455
+ .e-recurrenceeditor .e-editor {
456
+ -webkit-box-orient: vertical;
457
+ -webkit-box-direction: normal;
458
+ -ms-flex-direction: column;
459
+ flex-direction: column;
460
+ }
461
+ .e-recurrenceeditor .e-editor > .e-input-wrapper.e-form-left {
462
+ margin-top: 0;
463
+ }
464
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
465
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
466
+ margin-bottom: 1px;
467
+ }
468
+ .e-recurrenceeditor .e-editor > div {
469
+ margin-top: 20px;
470
+ }
471
+ .e-recurrenceeditor .e-editor > .e-input-wrapper {
472
+ width: 100%;
473
+ }
474
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on {
475
+ width: 100%;
476
+ }
477
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-input-wrapper {
478
+ width: 50%;
479
+ }
480
+ .e-recurrenceeditor .e-editor .e-form-left,
481
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
482
+ padding: 0 0 10px;
483
+ }
484
+ .e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
485
+ .e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
486
+ padding: 0 0 0 10px;
487
+ }
488
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-left {
489
+ padding-right: 10px;
490
+ }
491
+ .e-recurrenceeditor .e-editor .e-form-right,
492
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
493
+ padding-left: 0;
494
+ }
495
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-days {
496
+ width: 100%;
497
+ }
498
+ .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
499
+ width: 65%;
500
+ }
501
+ .e-recurrenceeditor .e-editor .e-recurrence-table .e-day-position {
502
+ padding-left: 50px;
503
+ }
504
+ .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
505
+ padding-right: 0;
506
+ }
507
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
508
+ .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
509
+ padding: 0 10px 0 0;
510
+ }
511
+ }
512
+ /*! Recurrence-Editor component theme */