@syncfusion/ej2-react-schedule 20.3.58 → 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.
- package/CHANGELOG.md +14 -0
- package/README.md +110 -47
- package/diConfig.json +16 -21
- package/dist/ej2-react-schedule.min.js +1 -1
- package/dist/ej2-react-schedule.umd.min.js +1 -1
- package/package.json +17 -23
- package/styles/bootstrap-dark.css +364 -101
- package/styles/bootstrap.css +363 -99
- package/styles/bootstrap4.css +375 -141
- package/styles/bootstrap5-dark.css +339 -137
- package/styles/bootstrap5.css +339 -137
- package/styles/fabric-dark.css +330 -101
- package/styles/fabric.css +316 -106
- package/styles/fluent-dark.css +395 -102
- package/styles/fluent.css +395 -102
- package/styles/highcontrast-light.css +407 -98
- package/styles/highcontrast.css +399 -113
- package/styles/material-dark.css +362 -110
- package/styles/material.css +404 -110
- package/styles/recurrence-editor/bootstrap-dark.css +137 -28
- package/styles/recurrence-editor/bootstrap.css +137 -28
- package/styles/recurrence-editor/bootstrap4.css +171 -28
- package/styles/recurrence-editor/bootstrap5-dark.css +178 -28
- package/styles/recurrence-editor/bootstrap5.css +178 -28
- package/styles/recurrence-editor/fabric-dark.css +113 -28
- package/styles/recurrence-editor/fabric.css +106 -28
- package/styles/recurrence-editor/fluent-dark.css +158 -28
- package/styles/recurrence-editor/fluent.css +158 -28
- package/styles/recurrence-editor/highcontrast-light.css +110 -28
- package/styles/recurrence-editor/highcontrast.css +110 -28
- package/styles/recurrence-editor/material-dark.css +138 -28
- package/styles/recurrence-editor/material.css +163 -28
- package/styles/recurrence-editor/tailwind-dark.css +126 -28
- package/styles/recurrence-editor/tailwind.css +126 -28
- package/styles/schedule/bootstrap-dark.css +332 -73
- package/styles/schedule/bootstrap.css +331 -71
- package/styles/schedule/bootstrap4.css +343 -113
- package/styles/schedule/bootstrap5-dark.css +307 -109
- package/styles/schedule/bootstrap5.css +307 -109
- package/styles/schedule/fabric-dark.css +298 -73
- package/styles/schedule/fabric.css +284 -78
- package/styles/schedule/fluent-dark.css +363 -74
- package/styles/schedule/fluent.css +363 -74
- package/styles/schedule/highcontrast-light.css +375 -70
- package/styles/schedule/highcontrast.css +367 -85
- package/styles/schedule/material-dark.css +330 -82
- package/styles/schedule/material.css +372 -82
- package/styles/schedule/tailwind-dark.css +246 -111
- package/styles/schedule/tailwind.css +246 -111
- package/styles/tailwind-dark.css +279 -140
- package/styles/tailwind.css +279 -140
|
@@ -1,3 +1,129 @@
|
|
|
1
|
+
.e-popup.e-ddl {
|
|
2
|
+
border-radius: 4px;
|
|
3
|
+
box-shadow: none;
|
|
4
|
+
margin-top: 1px;
|
|
5
|
+
}
|
|
6
|
+
.e-popup.e-ddl .e-input-group {
|
|
7
|
+
width: auto;
|
|
8
|
+
}
|
|
9
|
+
.e-popup.e-ddl .e-input-group input {
|
|
10
|
+
line-height: 15px;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.e-popup.e-ddl .e-dropdownbase {
|
|
14
|
+
min-height: 26px;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.e-popup.e-ddl .e-filter-parent .e-input-group {
|
|
18
|
+
display: -ms-flexbox;
|
|
19
|
+
display: flex;
|
|
20
|
+
width: auto;
|
|
21
|
+
}
|
|
22
|
+
.e-popup.e-ddl .e-filter-parent .e-input-group .e-back-icon {
|
|
23
|
+
border: 0;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.e-bigger .e-popup.e-ddl-device-filter {
|
|
27
|
+
margin-top: 0;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.e-bigger .e-popup.e-ddl .e-list-item {
|
|
31
|
+
font-size: 16px;
|
|
32
|
+
line-height: 32px;
|
|
33
|
+
padding-left: 0;
|
|
34
|
+
text-indent: 16px;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.e-bigger .e-popup.e-ddl .e-list-group-item, .e-bigger .e-popup.e-ddl .e-fixed-head {
|
|
38
|
+
font-size: 14px;
|
|
39
|
+
line-height: 32px;
|
|
40
|
+
padding-left: 0;
|
|
41
|
+
text-indent: 16px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.e-bigger .e-popup.e-ddl .e-dropdownbase {
|
|
45
|
+
min-height: 40px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
|
|
49
|
+
.e-float-input.e-control-wrapper.e-ddl input[readonly] {
|
|
50
|
+
background: transparent;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
54
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
55
|
+
background: #fff;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
59
|
+
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
60
|
+
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
61
|
+
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:hover,
|
|
62
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active,
|
|
63
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:hover,
|
|
64
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
|
|
65
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:hover {
|
|
66
|
+
background: none;
|
|
67
|
+
color: #605e5c;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.e-input-group.e-ddl .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
71
|
+
.e-input-group.e-control-wrapper.e-ddl .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
72
|
+
.e-float-input.e-ddl input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
73
|
+
.e-float-input.e-control-wrapper.e-ddl input[readonly] ~ span.e-input-group-icon.e-ddl-icon {
|
|
74
|
+
background: transparent;
|
|
75
|
+
color: #605e5c;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
79
|
+
.e-input-group.e-disabled.e-ddl .e-control.e-dropdownlist ~ .e-input-group-icon,
|
|
80
|
+
.e-control.e-dropdownlist .e-input-group.e-disabled.e-ddl .e-input-group-icon,
|
|
81
|
+
.e-control.e-dropdownlist .e-input-group.e-ddl .e-input-group-icon {
|
|
82
|
+
border: 0;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-input-group-icon:active,
|
|
86
|
+
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-input-group-icon:active,
|
|
87
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
|
|
88
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active {
|
|
89
|
+
box-shadow: none;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon {
|
|
93
|
+
background: none;
|
|
94
|
+
display: -ms-flexbox;
|
|
95
|
+
display: flex;
|
|
96
|
+
position: relative;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.e-ddl.e-popup .e-filter-parent .e-input-group,
|
|
100
|
+
.e-ddl.e-popup .e-filter-parent {
|
|
101
|
+
background: #fff;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
105
|
+
font-size: 14px;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.e-bigger .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
109
|
+
font-size: 16px;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.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 {
|
|
113
|
+
font-size: 14px;
|
|
114
|
+
line-height: 34px;
|
|
115
|
+
padding-left: 0;
|
|
116
|
+
text-indent: 16px;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.e-bigger.e-small .e-ddl.e-popup .e-input-group input, .e-bigger.e-small .e-ddl.e-popup .e-input-group input.e-input {
|
|
120
|
+
height: 30px;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.e-bigger.e-small .e-popup.e-ddl .e-dropdownbase {
|
|
124
|
+
min-height: 34px;
|
|
125
|
+
}
|
|
126
|
+
|
|
1
127
|
/*! recurrence editor theme wise definitions*/
|
|
2
128
|
/*! Recurrence-Editor component layout */
|
|
3
129
|
.e-recurrenceeditor .e-editor {
|
|
@@ -5,8 +131,7 @@
|
|
|
5
131
|
display: flex;
|
|
6
132
|
-ms-flex-flow: row wrap;
|
|
7
133
|
flex-flow: row wrap;
|
|
8
|
-
margin
|
|
9
|
-
margin-right: auto;
|
|
134
|
+
margin: 0 auto;
|
|
10
135
|
max-width: 1240px;
|
|
11
136
|
}
|
|
12
137
|
.e-recurrenceeditor .e-recurrence-table {
|
|
@@ -47,7 +172,7 @@
|
|
|
47
172
|
}
|
|
48
173
|
.e-recurrenceeditor .e-form-right,
|
|
49
174
|
.e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
50
|
-
padding: 0 0 10px
|
|
175
|
+
padding: 0 0 10px;
|
|
51
176
|
}
|
|
52
177
|
.e-recurrenceeditor .e-input-wrapper {
|
|
53
178
|
float: left;
|
|
@@ -88,13 +213,11 @@
|
|
|
88
213
|
margin-bottom: 5px;
|
|
89
214
|
}
|
|
90
215
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
91
|
-
padding
|
|
92
|
-
padding-right: 0;
|
|
216
|
+
padding: 0 0 0 8px;
|
|
93
217
|
}
|
|
94
218
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
95
219
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
96
|
-
padding
|
|
97
|
-
padding-right: 8px;
|
|
220
|
+
padding: 0 8px 0 0;
|
|
98
221
|
}
|
|
99
222
|
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
100
223
|
width: 30px;
|
|
@@ -122,10 +245,10 @@
|
|
|
122
245
|
margin-bottom: 11px;
|
|
123
246
|
}
|
|
124
247
|
.e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper {
|
|
125
|
-
|
|
248
|
+
padding-bottom: 11px;
|
|
126
249
|
}
|
|
127
250
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper {
|
|
128
|
-
|
|
251
|
+
padding-top: 3px;
|
|
129
252
|
}
|
|
130
253
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
|
|
131
254
|
display: none;
|
|
@@ -175,7 +298,7 @@
|
|
|
175
298
|
}
|
|
176
299
|
.e-bigger .e-recurrenceeditor .e-form-right,
|
|
177
300
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
178
|
-
padding: 0 0 10px
|
|
301
|
+
padding: 0 0 10px;
|
|
179
302
|
}
|
|
180
303
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
|
|
181
304
|
padding-bottom: 6px;
|
|
@@ -234,8 +357,7 @@
|
|
|
234
357
|
}
|
|
235
358
|
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element,
|
|
236
359
|
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
237
|
-
padding
|
|
238
|
-
padding-right: 64px;
|
|
360
|
+
padding: 0 64px 0 0;
|
|
239
361
|
}
|
|
240
362
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
|
|
241
363
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
@@ -245,13 +367,11 @@
|
|
|
245
367
|
margin-bottom: 5px;
|
|
246
368
|
}
|
|
247
369
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
248
|
-
padding
|
|
249
|
-
padding-right: 0;
|
|
370
|
+
padding: 0 0 0 12px;
|
|
250
371
|
}
|
|
251
372
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
252
373
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
253
|
-
padding
|
|
254
|
-
padding-right: 12px;
|
|
374
|
+
padding: 0 12px 0 0;
|
|
255
375
|
}
|
|
256
376
|
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
|
|
257
377
|
left: 0;
|
|
@@ -283,8 +403,7 @@
|
|
|
283
403
|
}
|
|
284
404
|
.e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
|
|
285
405
|
.e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
|
|
286
|
-
padding
|
|
287
|
-
padding-right: 0;
|
|
406
|
+
padding: 0 0 0 10px;
|
|
288
407
|
}
|
|
289
408
|
.e-device .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
290
409
|
padding-right: 10px;
|
|
@@ -305,23 +424,25 @@
|
|
|
305
424
|
.e-device .e-recurrenceeditor .e-recurrence-table .e-day-position {
|
|
306
425
|
padding-left: 20px;
|
|
307
426
|
}
|
|
427
|
+
.e-device .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
428
|
+
margin-left: 20px;
|
|
429
|
+
}
|
|
308
430
|
.e-device .e-recurrenceeditor .e-week-position {
|
|
309
431
|
right: 0;
|
|
432
|
+
padding-right: 10px;
|
|
310
433
|
}
|
|
311
434
|
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
312
435
|
padding-right: 0;
|
|
313
436
|
}
|
|
314
437
|
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
315
438
|
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
316
|
-
padding
|
|
317
|
-
padding-right: 10px;
|
|
439
|
+
padding: 0 10px 0 0;
|
|
318
440
|
}
|
|
319
441
|
.e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
320
|
-
padding
|
|
442
|
+
padding: 0 20px 0 0;
|
|
321
443
|
}
|
|
322
444
|
.e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
323
|
-
padding
|
|
324
|
-
padding-left: 0;
|
|
445
|
+
padding: 0 50px 0 0;
|
|
325
446
|
}
|
|
326
447
|
.e-device .e-recurrenceeditor.e-rtl .e-week-position {
|
|
327
448
|
left: 0;
|
|
@@ -338,6 +459,14 @@
|
|
|
338
459
|
padding: 16px 8px;
|
|
339
460
|
}
|
|
340
461
|
|
|
462
|
+
@media (max-width: 1024px) {
|
|
463
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on {
|
|
464
|
+
width: 100%;
|
|
465
|
+
}
|
|
466
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
|
|
467
|
+
width: 65%;
|
|
468
|
+
}
|
|
469
|
+
}
|
|
341
470
|
@media (max-width: 580px) {
|
|
342
471
|
.e-recurrenceeditor {
|
|
343
472
|
margin-left: auto;
|
|
@@ -373,8 +502,7 @@
|
|
|
373
502
|
}
|
|
374
503
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
|
|
375
504
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
|
|
376
|
-
padding
|
|
377
|
-
padding-right: 0;
|
|
505
|
+
padding: 0 0 0 10px;
|
|
378
506
|
}
|
|
379
507
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
380
508
|
padding-right: 10px;
|
|
@@ -387,15 +515,17 @@
|
|
|
387
515
|
width: 100%;
|
|
388
516
|
}
|
|
389
517
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
|
|
390
|
-
width:
|
|
518
|
+
width: 65%;
|
|
519
|
+
}
|
|
520
|
+
.e-recurrenceeditor .e-editor .e-recurrence-table .e-day-position {
|
|
521
|
+
padding-left: 50px;
|
|
391
522
|
}
|
|
392
523
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
393
524
|
padding-right: 0;
|
|
394
525
|
}
|
|
395
526
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
396
527
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
397
|
-
padding
|
|
398
|
-
padding-right: 10px;
|
|
528
|
+
padding: 0 10px 0 0;
|
|
399
529
|
}
|
|
400
530
|
}
|
|
401
531
|
/*! Recurrence-Editor component theme */
|
|
@@ -1,3 +1,81 @@
|
|
|
1
|
+
.e-bigger .e-ddl.e-popup .e-input-group .e-clear-icon {
|
|
2
|
+
height: 36px;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.e-popup.e-ddl .e-dropdownbase {
|
|
6
|
+
min-height: 26px;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.e-ddl.e-popup {
|
|
10
|
+
border: 0;
|
|
11
|
+
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
|
|
12
|
+
margin-top: 1px;
|
|
13
|
+
}
|
|
14
|
+
.e-ddl.e-popup .e-content.e-nodata {
|
|
15
|
+
background-color: #fff;
|
|
16
|
+
}
|
|
17
|
+
.e-ddl.e-popup .e-dropdownbase .e-list-item .e-highlight {
|
|
18
|
+
color: #23726c;
|
|
19
|
+
}
|
|
20
|
+
.e-ddl.e-popup .e-input-group {
|
|
21
|
+
display: -ms-flexbox;
|
|
22
|
+
display: flex;
|
|
23
|
+
width: auto;
|
|
24
|
+
}
|
|
25
|
+
.e-ddl.e-popup .e-input-group input {
|
|
26
|
+
line-height: 15px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.e-ddl.e-popup .e-input-group .e-clear-icon {
|
|
30
|
+
border-radius: 20px;
|
|
31
|
+
height: 20px;
|
|
32
|
+
margin: 5px;
|
|
33
|
+
min-width: 20px;
|
|
34
|
+
}
|
|
35
|
+
.e-ddl.e-popup .e-input-group .e-clear-icon::before {
|
|
36
|
+
font-size: 10px;
|
|
37
|
+
}
|
|
38
|
+
.e-ddl.e-popup .e-filter-parent {
|
|
39
|
+
border-left-width: 0;
|
|
40
|
+
border-right-width: 0;
|
|
41
|
+
}
|
|
42
|
+
.e-ddl.e-popup .e-filter-parent .e-input-group.e-control-wrapper:hover:active {
|
|
43
|
+
border-color: #000;
|
|
44
|
+
}
|
|
45
|
+
.e-bigger .e-ddl.e-popup.e-ddl-device.e-ddl-device-filter {
|
|
46
|
+
margin-top: 0;
|
|
47
|
+
}
|
|
48
|
+
.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 {
|
|
49
|
+
font-size: 15px;
|
|
50
|
+
line-height: 45px;
|
|
51
|
+
padding-left: 0;
|
|
52
|
+
text-indent: 16px;
|
|
53
|
+
}
|
|
54
|
+
.e-bigger .e-ddl.e-popup .e-dd-group .e-list-item {
|
|
55
|
+
padding-left: 4px;
|
|
56
|
+
}
|
|
57
|
+
.e-bigger .e-ddl.e-popup .e-input-group {
|
|
58
|
+
padding: 4px 0;
|
|
59
|
+
}
|
|
60
|
+
.e-bigger .e-ddl.e-popup .e-input-group input {
|
|
61
|
+
height: 30px;
|
|
62
|
+
}
|
|
63
|
+
.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 {
|
|
64
|
+
font-size: 14px;
|
|
65
|
+
line-height: 40px;
|
|
66
|
+
padding-left: 0;
|
|
67
|
+
text-indent: 16px;
|
|
68
|
+
}
|
|
69
|
+
.e-bigger.e-small .e-ddl.e-popup .e-dd-group .e-list-item {
|
|
70
|
+
padding-left: 4px;
|
|
71
|
+
}
|
|
72
|
+
.e-bigger.e-small .e-ddl.e-popup .e-input-group {
|
|
73
|
+
padding: 0;
|
|
74
|
+
}
|
|
75
|
+
.e-bigger.e-small .e-ddl.e-popup .e-input-group input {
|
|
76
|
+
height: 34px;
|
|
77
|
+
}
|
|
78
|
+
|
|
1
79
|
/*! recurrence editor theme wise definitions*/
|
|
2
80
|
/*! Recurrence-Editor component layout */
|
|
3
81
|
.e-recurrenceeditor .e-editor {
|
|
@@ -5,8 +83,7 @@
|
|
|
5
83
|
display: flex;
|
|
6
84
|
-ms-flex-flow: row wrap;
|
|
7
85
|
flex-flow: row wrap;
|
|
8
|
-
margin
|
|
9
|
-
margin-right: auto;
|
|
86
|
+
margin: 0 auto;
|
|
10
87
|
max-width: 1240px;
|
|
11
88
|
}
|
|
12
89
|
.e-recurrenceeditor .e-recurrence-table {
|
|
@@ -47,7 +124,7 @@
|
|
|
47
124
|
}
|
|
48
125
|
.e-recurrenceeditor .e-form-right,
|
|
49
126
|
.e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
50
|
-
padding: 0 0 10px
|
|
127
|
+
padding: 0 0 10px;
|
|
51
128
|
}
|
|
52
129
|
.e-recurrenceeditor .e-input-wrapper {
|
|
53
130
|
float: left;
|
|
@@ -88,13 +165,11 @@
|
|
|
88
165
|
margin-bottom: 5px;
|
|
89
166
|
}
|
|
90
167
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
91
|
-
padding
|
|
92
|
-
padding-right: 0;
|
|
168
|
+
padding: 0 0 0 8px;
|
|
93
169
|
}
|
|
94
170
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
95
171
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
96
|
-
padding
|
|
97
|
-
padding-right: 8px;
|
|
172
|
+
padding: 0 8px 0 0;
|
|
98
173
|
}
|
|
99
174
|
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
100
175
|
width: 30px;
|
|
@@ -122,10 +197,10 @@
|
|
|
122
197
|
margin-bottom: 11px;
|
|
123
198
|
}
|
|
124
199
|
.e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper {
|
|
125
|
-
|
|
200
|
+
padding-bottom: 11px;
|
|
126
201
|
}
|
|
127
202
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper {
|
|
128
|
-
|
|
203
|
+
padding-top: 3px;
|
|
129
204
|
}
|
|
130
205
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
|
|
131
206
|
display: none;
|
|
@@ -175,7 +250,7 @@
|
|
|
175
250
|
}
|
|
176
251
|
.e-bigger .e-recurrenceeditor .e-form-right,
|
|
177
252
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
178
|
-
padding: 0 0 10px
|
|
253
|
+
padding: 0 0 10px;
|
|
179
254
|
}
|
|
180
255
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
|
|
181
256
|
padding-bottom: 6px;
|
|
@@ -234,8 +309,7 @@
|
|
|
234
309
|
}
|
|
235
310
|
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element,
|
|
236
311
|
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
237
|
-
padding
|
|
238
|
-
padding-right: 64px;
|
|
312
|
+
padding: 0 64px 0 0;
|
|
239
313
|
}
|
|
240
314
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
|
|
241
315
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
@@ -245,13 +319,11 @@
|
|
|
245
319
|
margin-bottom: 5px;
|
|
246
320
|
}
|
|
247
321
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
248
|
-
padding
|
|
249
|
-
padding-right: 0;
|
|
322
|
+
padding: 0 0 0 12px;
|
|
250
323
|
}
|
|
251
324
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
252
325
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
253
|
-
padding
|
|
254
|
-
padding-right: 12px;
|
|
326
|
+
padding: 0 12px 0 0;
|
|
255
327
|
}
|
|
256
328
|
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
|
|
257
329
|
left: 0;
|
|
@@ -283,8 +355,7 @@
|
|
|
283
355
|
}
|
|
284
356
|
.e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
|
|
285
357
|
.e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
|
|
286
|
-
padding
|
|
287
|
-
padding-right: 0;
|
|
358
|
+
padding: 0 0 0 10px;
|
|
288
359
|
}
|
|
289
360
|
.e-device .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
290
361
|
padding-right: 10px;
|
|
@@ -305,23 +376,25 @@
|
|
|
305
376
|
.e-device .e-recurrenceeditor .e-recurrence-table .e-day-position {
|
|
306
377
|
padding-left: 20px;
|
|
307
378
|
}
|
|
379
|
+
.e-device .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
380
|
+
margin-left: 20px;
|
|
381
|
+
}
|
|
308
382
|
.e-device .e-recurrenceeditor .e-week-position {
|
|
309
383
|
right: 0;
|
|
384
|
+
padding-right: 10px;
|
|
310
385
|
}
|
|
311
386
|
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
312
387
|
padding-right: 0;
|
|
313
388
|
}
|
|
314
389
|
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
315
390
|
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
316
|
-
padding
|
|
317
|
-
padding-right: 10px;
|
|
391
|
+
padding: 0 10px 0 0;
|
|
318
392
|
}
|
|
319
393
|
.e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
320
|
-
padding
|
|
394
|
+
padding: 0 20px 0 0;
|
|
321
395
|
}
|
|
322
396
|
.e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
323
|
-
padding
|
|
324
|
-
padding-left: 0;
|
|
397
|
+
padding: 0 50px 0 0;
|
|
325
398
|
}
|
|
326
399
|
.e-device .e-recurrenceeditor.e-rtl .e-week-position {
|
|
327
400
|
left: 0;
|
|
@@ -338,6 +411,14 @@
|
|
|
338
411
|
padding: 16px 8px;
|
|
339
412
|
}
|
|
340
413
|
|
|
414
|
+
@media (max-width: 1024px) {
|
|
415
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on {
|
|
416
|
+
width: 100%;
|
|
417
|
+
}
|
|
418
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
|
|
419
|
+
width: 65%;
|
|
420
|
+
}
|
|
421
|
+
}
|
|
341
422
|
@media (max-width: 580px) {
|
|
342
423
|
.e-recurrenceeditor {
|
|
343
424
|
margin-left: auto;
|
|
@@ -373,8 +454,7 @@
|
|
|
373
454
|
}
|
|
374
455
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
|
|
375
456
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
|
|
376
|
-
padding
|
|
377
|
-
padding-right: 0;
|
|
457
|
+
padding: 0 0 0 10px;
|
|
378
458
|
}
|
|
379
459
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
380
460
|
padding-right: 10px;
|
|
@@ -387,15 +467,17 @@
|
|
|
387
467
|
width: 100%;
|
|
388
468
|
}
|
|
389
469
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
|
|
390
|
-
width:
|
|
470
|
+
width: 65%;
|
|
471
|
+
}
|
|
472
|
+
.e-recurrenceeditor .e-editor .e-recurrence-table .e-day-position {
|
|
473
|
+
padding-left: 50px;
|
|
391
474
|
}
|
|
392
475
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
393
476
|
padding-right: 0;
|
|
394
477
|
}
|
|
395
478
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
396
479
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
397
|
-
padding
|
|
398
|
-
padding-right: 10px;
|
|
480
|
+
padding: 0 10px 0 0;
|
|
399
481
|
}
|
|
400
482
|
}
|
|
401
483
|
/*! Recurrence-Editor component theme */
|