@syncfusion/ej2-react-schedule 20.1.52 → 20.1.55
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 +48 -13
- package/dist/ej2-react-schedule.umd.min.js +1 -1
- package/package.json +8 -8
- package/src/schedule/headerrows-directive.d.ts +3 -1
- package/src/schedule/resources-directive.d.ts +3 -1
- package/src/schedule/views-directive.d.ts +3 -1
- package/styles/bootstrap-dark.css +83 -968
- package/styles/bootstrap.css +83 -967
- package/styles/bootstrap4.css +83 -990
- package/styles/bootstrap5-dark.css +83 -988
- package/styles/bootstrap5.css +83 -988
- package/styles/fabric-dark.css +83 -968
- package/styles/fabric.css +83 -970
- package/styles/fluent-dark.css +83 -968
- package/styles/fluent.css +83 -968
- package/styles/highcontrast-light.css +83 -967
- package/styles/highcontrast.css +83 -972
- package/styles/material-dark.css +83 -967
- package/styles/material.css +83 -967
- package/styles/recurrence-editor/bootstrap-dark.css +6 -94
- package/styles/recurrence-editor/bootstrap.css +6 -94
- package/styles/recurrence-editor/bootstrap4.css +6 -94
- package/styles/recurrence-editor/bootstrap5-dark.css +6 -94
- package/styles/recurrence-editor/bootstrap5.css +6 -94
- package/styles/recurrence-editor/fabric-dark.css +6 -94
- package/styles/recurrence-editor/fabric.css +6 -94
- package/styles/recurrence-editor/fluent-dark.css +6 -94
- package/styles/recurrence-editor/fluent.css +6 -94
- package/styles/recurrence-editor/highcontrast-light.css +6 -94
- package/styles/recurrence-editor/highcontrast.css +6 -94
- package/styles/recurrence-editor/material-dark.css +6 -94
- package/styles/recurrence-editor/material.css +6 -94
- package/styles/recurrence-editor/tailwind-dark.css +6 -94
- package/styles/recurrence-editor/tailwind.css +6 -94
- package/styles/schedule/bootstrap-dark.css +78 -875
- package/styles/schedule/bootstrap.css +78 -874
- package/styles/schedule/bootstrap4.css +78 -897
- package/styles/schedule/bootstrap5-dark.css +78 -895
- package/styles/schedule/bootstrap5.css +78 -895
- package/styles/schedule/fabric-dark.css +78 -875
- package/styles/schedule/fabric.css +78 -877
- package/styles/schedule/fluent-dark.css +78 -875
- package/styles/schedule/fluent.css +78 -875
- package/styles/schedule/highcontrast-light.css +78 -874
- package/styles/schedule/highcontrast.css +78 -879
- package/styles/schedule/material-dark.css +78 -874
- package/styles/schedule/material.css +78 -874
- package/styles/schedule/tailwind-dark.css +78 -895
- package/styles/schedule/tailwind.css +78 -895
- package/styles/tailwind-dark.css +83 -988
- package/styles/tailwind.css +83 -988
|
@@ -9,127 +9,101 @@
|
|
|
9
9
|
margin-right: auto;
|
|
10
10
|
max-width: 1240px;
|
|
11
11
|
}
|
|
12
|
-
|
|
13
12
|
.e-recurrenceeditor .e-recurrence-table {
|
|
14
13
|
table-layout: fixed;
|
|
15
14
|
width: 100%;
|
|
16
15
|
}
|
|
17
|
-
|
|
18
16
|
.e-recurrenceeditor .e-recurrence-table.e-repeat-content-wrapper td:last-child {
|
|
19
17
|
width: 27%;
|
|
20
18
|
}
|
|
21
|
-
|
|
22
19
|
.e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
23
20
|
width: 24%;
|
|
24
21
|
}
|
|
25
|
-
|
|
26
22
|
.e-recurrenceeditor .e-recurrence-table .e-repeat-content {
|
|
27
23
|
display: inline-block;
|
|
28
24
|
font-weight: normal;
|
|
29
25
|
padding: 18px 0 0 8px;
|
|
30
26
|
}
|
|
31
|
-
|
|
32
27
|
.e-recurrenceeditor .e-recurrence-table .e-input-wrapper {
|
|
33
28
|
float: none;
|
|
34
29
|
width: 100%;
|
|
35
30
|
}
|
|
36
|
-
|
|
37
31
|
.e-recurrenceeditor .e-recurrence-table .e-week-position {
|
|
38
32
|
min-width: 90px;
|
|
39
33
|
position: relative;
|
|
40
34
|
right: 21px;
|
|
41
35
|
}
|
|
42
|
-
|
|
43
36
|
.e-recurrenceeditor .e-recurrence-table .e-day-position {
|
|
44
37
|
min-width: 120px;
|
|
45
38
|
}
|
|
46
|
-
|
|
47
39
|
.e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
48
40
|
padding-left: 10px;
|
|
49
41
|
}
|
|
50
|
-
|
|
51
42
|
.e-recurrenceeditor .e-input-wrapper-side.e-form-left {
|
|
52
43
|
padding: 0 8px 10px 0;
|
|
53
44
|
}
|
|
54
|
-
|
|
55
45
|
.e-recurrenceeditor .e-form-left {
|
|
56
46
|
padding: 0 8px 16px 0;
|
|
57
47
|
}
|
|
58
|
-
|
|
59
48
|
.e-recurrenceeditor .e-form-right,
|
|
60
49
|
.e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
61
50
|
padding: 0 0 10px 8px;
|
|
62
51
|
}
|
|
63
|
-
|
|
64
52
|
.e-recurrenceeditor .e-input-wrapper {
|
|
65
53
|
float: left;
|
|
66
54
|
width: 50%;
|
|
67
55
|
}
|
|
68
|
-
|
|
69
56
|
.e-recurrenceeditor .e-input-wrapper div {
|
|
70
57
|
margin-bottom: 2.5%;
|
|
71
58
|
}
|
|
72
|
-
|
|
73
59
|
.e-recurrenceeditor .e-input-wrapper.e-end-on-date,
|
|
74
60
|
.e-recurrenceeditor .e-input-wrapper.e-end-on-count {
|
|
75
61
|
padding-right: 0;
|
|
76
62
|
}
|
|
77
|
-
|
|
78
63
|
.e-recurrenceeditor.e-rtl .e-end-on > div,
|
|
79
64
|
.e-recurrenceeditor.e-rtl .e-month-expander > div > div {
|
|
80
65
|
float: right;
|
|
81
66
|
}
|
|
82
|
-
|
|
83
67
|
.e-recurrenceeditor.e-rtl .e-form-left,
|
|
84
68
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-left {
|
|
85
69
|
padding: 0 0 10px 8px;
|
|
86
70
|
}
|
|
87
|
-
|
|
88
71
|
.e-recurrenceeditor.e-rtl .e-form-right,
|
|
89
72
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-right {
|
|
90
73
|
padding: 0 8px 10px 0;
|
|
91
74
|
}
|
|
92
|
-
|
|
93
75
|
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
94
76
|
position: relative;
|
|
95
77
|
right: 10px;
|
|
96
78
|
}
|
|
97
|
-
|
|
98
79
|
.e-recurrenceeditor.e-rtl .e-week-position {
|
|
99
80
|
position: relative;
|
|
100
81
|
right: -21px;
|
|
101
82
|
}
|
|
102
|
-
|
|
103
83
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
|
|
104
84
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
105
85
|
padding-right: 0;
|
|
106
86
|
}
|
|
107
|
-
|
|
108
87
|
.e-recurrenceeditor.e-rtl .e-end-on-label {
|
|
109
88
|
margin-bottom: 5px;
|
|
110
89
|
}
|
|
111
|
-
|
|
112
90
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
113
91
|
padding-left: 8px;
|
|
114
92
|
padding-right: 0;
|
|
115
93
|
}
|
|
116
|
-
|
|
117
94
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
118
95
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
119
96
|
padding-left: 0;
|
|
120
97
|
padding-right: 8px;
|
|
121
98
|
}
|
|
122
|
-
|
|
123
99
|
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
124
100
|
width: 0;
|
|
125
101
|
}
|
|
126
|
-
|
|
127
102
|
.e-recurrenceeditor .e-days .e-week-expander-label {
|
|
128
103
|
font-size: 13px;
|
|
129
104
|
font-weight: 400;
|
|
130
105
|
margin-bottom: 8px;
|
|
131
106
|
}
|
|
132
|
-
|
|
133
107
|
.e-recurrenceeditor .e-days button {
|
|
134
108
|
border-radius: 50%;
|
|
135
109
|
-ms-flex-flow: row wrap;
|
|
@@ -138,37 +112,29 @@
|
|
|
138
112
|
margin: 0 8px 10px;
|
|
139
113
|
width: 35px;
|
|
140
114
|
}
|
|
141
|
-
|
|
142
115
|
.e-recurrenceeditor .e-hide-recurrence-element {
|
|
143
116
|
display: none;
|
|
144
117
|
}
|
|
145
|
-
|
|
146
118
|
.e-recurrenceeditor .e-half-space {
|
|
147
119
|
width: 20%;
|
|
148
120
|
}
|
|
149
|
-
|
|
150
121
|
.e-recurrenceeditor .e-year-expander {
|
|
151
122
|
margin-bottom: 11px;
|
|
152
123
|
}
|
|
153
|
-
|
|
154
124
|
.e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper {
|
|
155
125
|
margin-bottom: 11px;
|
|
156
126
|
}
|
|
157
|
-
|
|
158
127
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper {
|
|
159
128
|
margin-top: -3px;
|
|
160
129
|
}
|
|
161
|
-
|
|
162
130
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
|
|
163
131
|
display: none;
|
|
164
132
|
}
|
|
165
|
-
|
|
166
133
|
.e-recurrenceeditor .e-input-wrapper-side {
|
|
167
134
|
float: left;
|
|
168
135
|
padding: 16px 20px 0;
|
|
169
136
|
width: 50%;
|
|
170
137
|
}
|
|
171
|
-
|
|
172
138
|
.e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
173
139
|
float: none;
|
|
174
140
|
font-size: 13px;
|
|
@@ -176,30 +142,24 @@
|
|
|
176
142
|
margin-bottom: 7px;
|
|
177
143
|
padding-right: 16px;
|
|
178
144
|
}
|
|
179
|
-
|
|
180
145
|
.e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
181
146
|
padding-right: 16px;
|
|
182
147
|
}
|
|
183
|
-
|
|
184
148
|
.e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-input-wrapper {
|
|
185
149
|
margin: 0;
|
|
186
150
|
}
|
|
187
|
-
|
|
188
151
|
.e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
189
152
|
font-size: 13px;
|
|
190
153
|
font-weight: 400;
|
|
191
154
|
margin-bottom: 7px;
|
|
192
155
|
padding-right: 16px;
|
|
193
156
|
}
|
|
194
|
-
|
|
195
157
|
.e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
|
|
196
158
|
padding-bottom: 6px;
|
|
197
159
|
}
|
|
198
|
-
|
|
199
160
|
.e-recurrenceeditor .e-input-wrapper-side .e-non-week .e-form-left {
|
|
200
161
|
padding-bottom: 12px;
|
|
201
162
|
}
|
|
202
|
-
|
|
203
163
|
.e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
204
164
|
margin-bottom: 11px;
|
|
205
165
|
}
|
|
@@ -207,124 +167,98 @@
|
|
|
207
167
|
.e-bigger .e-recurrenceeditor {
|
|
208
168
|
padding: 0;
|
|
209
169
|
}
|
|
210
|
-
|
|
211
170
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
|
|
212
171
|
padding: 0 12px 11px 0;
|
|
213
172
|
}
|
|
214
|
-
|
|
215
173
|
.e-bigger .e-recurrenceeditor .e-form-left {
|
|
216
174
|
padding: 0 12px 14px 0;
|
|
217
175
|
}
|
|
218
|
-
|
|
219
176
|
.e-bigger .e-recurrenceeditor .e-form-right,
|
|
220
177
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
221
178
|
padding: 0 0 10px 12px;
|
|
222
179
|
}
|
|
223
|
-
|
|
224
180
|
.e-bigger .e-recurrenceeditor .e-recurrence-table .e-week-position {
|
|
225
181
|
right: 24px;
|
|
226
182
|
}
|
|
227
|
-
|
|
228
183
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
|
|
229
184
|
padding-bottom: 6px;
|
|
230
185
|
}
|
|
231
|
-
|
|
232
186
|
.e-bigger .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
233
187
|
padding-left: 70px;
|
|
234
188
|
}
|
|
235
|
-
|
|
236
189
|
.e-bigger .e-recurrenceeditor .e-week-position {
|
|
237
190
|
min-width: 157px;
|
|
238
191
|
padding-left: 55px;
|
|
239
192
|
padding-right: 0;
|
|
240
193
|
}
|
|
241
|
-
|
|
242
194
|
.e-bigger .e-recurrenceeditor .e-day-position {
|
|
243
195
|
min-width: 183px;
|
|
244
196
|
padding-left: 54px;
|
|
245
197
|
}
|
|
246
|
-
|
|
247
198
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
248
199
|
font-size: 13px;
|
|
249
200
|
margin-bottom: 0;
|
|
250
201
|
}
|
|
251
|
-
|
|
252
202
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
253
203
|
padding-right: 5px;
|
|
254
204
|
}
|
|
255
|
-
|
|
256
205
|
.e-bigger .e-recurrenceeditor .e-end-on-label {
|
|
257
206
|
margin-bottom: 0;
|
|
258
207
|
}
|
|
259
|
-
|
|
260
208
|
.e-bigger .e-recurrenceeditor .e-days .e-week-expander-label {
|
|
261
209
|
font-size: 13px;
|
|
262
210
|
margin-bottom: 8px;
|
|
263
211
|
}
|
|
264
|
-
|
|
265
212
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-non-week .e-form-left {
|
|
266
213
|
padding-bottom: 12px;
|
|
267
214
|
}
|
|
268
|
-
|
|
269
215
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
270
216
|
font-size: 13px;
|
|
271
217
|
margin-bottom: 1px;
|
|
272
218
|
}
|
|
273
|
-
|
|
274
219
|
.e-bigger .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper,
|
|
275
220
|
.e-bigger .e-recurrenceeditor .e-year-expander,
|
|
276
221
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
277
222
|
margin-bottom: 11px;
|
|
278
223
|
}
|
|
279
|
-
|
|
280
224
|
.e-bigger .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
281
225
|
width: 0;
|
|
282
226
|
}
|
|
283
|
-
|
|
284
227
|
.e-bigger .e-recurrenceeditor .e-days button {
|
|
285
228
|
height: 40px;
|
|
286
229
|
width: 40px;
|
|
287
230
|
}
|
|
288
|
-
|
|
289
231
|
.e-bigger .e-recurrenceeditor.e-rtl .e-form-left,
|
|
290
232
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-left {
|
|
291
233
|
padding: 0 0 10px 12px;
|
|
292
234
|
}
|
|
293
|
-
|
|
294
235
|
.e-bigger .e-recurrenceeditor.e-rtl .e-form-right,
|
|
295
236
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-right {
|
|
296
237
|
padding: 0 12px 10px 0;
|
|
297
238
|
}
|
|
298
|
-
|
|
299
239
|
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
300
240
|
padding-left: 0;
|
|
301
241
|
padding-right: 64px;
|
|
302
242
|
}
|
|
303
|
-
|
|
304
243
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
|
|
305
244
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
306
245
|
padding-right: 0;
|
|
307
246
|
}
|
|
308
|
-
|
|
309
247
|
.e-bigger .e-recurrenceeditor.e-rtl .e-end-on-label {
|
|
310
248
|
margin-bottom: 5px;
|
|
311
249
|
}
|
|
312
|
-
|
|
313
250
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
314
251
|
padding-left: 12px;
|
|
315
252
|
padding-right: 0;
|
|
316
253
|
}
|
|
317
|
-
|
|
318
254
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
319
255
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
320
256
|
padding-left: 0;
|
|
321
257
|
padding-right: 12px;
|
|
322
258
|
}
|
|
323
|
-
|
|
324
259
|
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
|
|
325
260
|
right: 33px;
|
|
326
261
|
}
|
|
327
|
-
|
|
328
262
|
.e-bigger .e-recurrenceeditor.e-rtl .e-week-position {
|
|
329
263
|
padding-left: 46px;
|
|
330
264
|
}
|
|
@@ -332,101 +266,80 @@
|
|
|
332
266
|
.e-device .e-recurrenceeditor .e-recurrence-table.e-repeat-content-wrapper td:last-child {
|
|
333
267
|
width: 25%;
|
|
334
268
|
}
|
|
335
|
-
|
|
336
269
|
.e-device .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
337
270
|
width: 20%;
|
|
338
271
|
}
|
|
339
|
-
|
|
340
272
|
.e-device .e-recurrenceeditor .e-week-expander-label {
|
|
341
273
|
margin-bottom: 6px;
|
|
342
274
|
}
|
|
343
|
-
|
|
344
275
|
.e-device .e-recurrenceeditor .e-month-expander-label {
|
|
345
276
|
font-size: 12px;
|
|
346
277
|
margin-bottom: 5px;
|
|
347
278
|
}
|
|
348
|
-
|
|
349
279
|
.e-device .e-recurrenceeditor .e-footer-content {
|
|
350
280
|
padding: 12px;
|
|
351
281
|
}
|
|
352
|
-
|
|
353
282
|
.e-device .e-recurrenceeditor .e-form-left,
|
|
354
283
|
.e-device .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
|
|
355
284
|
padding: 0 3px 10px 0;
|
|
356
285
|
}
|
|
357
|
-
|
|
358
286
|
.e-device .e-recurrenceeditor .e-form-right,
|
|
359
287
|
.e-device .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
360
288
|
padding: 0 0 10px 3px;
|
|
361
289
|
}
|
|
362
|
-
|
|
363
290
|
.e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
|
|
364
291
|
.e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
|
|
365
292
|
padding-left: 10px;
|
|
366
293
|
padding-right: 0;
|
|
367
294
|
}
|
|
368
|
-
|
|
369
295
|
.e-device .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
370
296
|
padding-right: 10px;
|
|
371
297
|
}
|
|
372
|
-
|
|
373
298
|
.e-device .e-recurrenceeditor.e-end-on {
|
|
374
299
|
padding-right: 0;
|
|
375
300
|
}
|
|
376
|
-
|
|
377
301
|
.e-device .e-recurrenceeditor.e-end-on .e-end-on-label {
|
|
378
302
|
float: none;
|
|
379
303
|
font-size: 12px;
|
|
380
304
|
font-weight: 400;
|
|
381
305
|
margin-bottom: 7px;
|
|
382
306
|
}
|
|
383
|
-
|
|
384
307
|
.e-device .e-recurrenceeditor.e-end-on .e-end-on-left {
|
|
385
308
|
padding-right: 0;
|
|
386
309
|
}
|
|
387
|
-
|
|
388
310
|
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
389
311
|
padding-right: 0;
|
|
390
312
|
}
|
|
391
|
-
|
|
392
313
|
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
393
314
|
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
394
315
|
padding-left: 0;
|
|
395
316
|
padding-right: 10px;
|
|
396
317
|
}
|
|
397
|
-
|
|
398
318
|
.e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
399
319
|
padding-left: 0;
|
|
400
320
|
}
|
|
401
|
-
|
|
402
321
|
.e-device .e-recurrenceeditor.e-rtl .e-week-position {
|
|
403
322
|
padding-left: 16px;
|
|
404
323
|
padding-right: 0;
|
|
405
324
|
}
|
|
406
|
-
|
|
407
325
|
.e-device .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
408
326
|
padding-left: 20px;
|
|
409
327
|
}
|
|
410
|
-
|
|
411
328
|
.e-device .e-recurrenceeditor .e-week-position {
|
|
412
329
|
padding-left: 0;
|
|
413
330
|
padding-right: 0;
|
|
414
331
|
}
|
|
415
|
-
|
|
416
332
|
.e-device .e-recurrenceeditor .e-week-position {
|
|
417
333
|
padding-left: 0;
|
|
418
334
|
}
|
|
419
|
-
|
|
420
335
|
.e-device.e-recurrence-dialog .e-dlg-header-content {
|
|
421
336
|
background: none;
|
|
422
337
|
box-shadow: none;
|
|
423
338
|
padding-bottom: 10px;
|
|
424
339
|
}
|
|
425
|
-
|
|
426
340
|
.e-device.e-recurrence-dialog .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
427
341
|
margin-bottom: 7px;
|
|
428
342
|
}
|
|
429
|
-
|
|
430
343
|
.e-device.e-recurrence-dialog .e-footer-content {
|
|
431
344
|
padding: 16px 8px;
|
|
432
345
|
}
|
|
@@ -445,7 +358,7 @@
|
|
|
445
358
|
margin-top: 0;
|
|
446
359
|
}
|
|
447
360
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
|
|
448
|
-
|
|
361
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
449
362
|
margin-bottom: 7px;
|
|
450
363
|
}
|
|
451
364
|
.e-recurrenceeditor .e-editor > div {
|
|
@@ -461,11 +374,11 @@
|
|
|
461
374
|
width: 50%;
|
|
462
375
|
}
|
|
463
376
|
.e-recurrenceeditor .e-editor .e-form-left,
|
|
464
|
-
|
|
377
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
|
|
465
378
|
padding: 0 0 10px;
|
|
466
379
|
}
|
|
467
380
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
|
|
468
|
-
|
|
381
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
|
|
469
382
|
padding-left: 10px;
|
|
470
383
|
padding-right: 0;
|
|
471
384
|
}
|
|
@@ -473,7 +386,7 @@
|
|
|
473
386
|
padding-right: 10px;
|
|
474
387
|
}
|
|
475
388
|
.e-recurrenceeditor .e-editor .e-form-right,
|
|
476
|
-
|
|
389
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
|
|
477
390
|
padding-left: 0;
|
|
478
391
|
}
|
|
479
392
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-days {
|
|
@@ -486,10 +399,9 @@
|
|
|
486
399
|
padding-right: 0;
|
|
487
400
|
}
|
|
488
401
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
489
|
-
|
|
402
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
490
403
|
padding-left: 0;
|
|
491
404
|
padding-right: 10px;
|
|
492
405
|
}
|
|
493
406
|
}
|
|
494
|
-
|
|
495
|
-
/*! Recurrence-Editor component theme */
|
|
407
|
+
/*! Recurrence-Editor component theme */
|