@syncfusion/ej2-schedule 19.3.55 → 19.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/.github/PULL_REQUEST_TEMPLATE/Bug.md +63 -0
- package/.github/PULL_REQUEST_TEMPLATE/Feature.md +39 -0
- package/CHANGELOG.md +24 -1
- package/dist/ej2-schedule.umd.min.js +2 -2
- package/dist/ej2-schedule.umd.min.js.map +1 -1
- package/dist/es6/ej2-schedule.es2015.js +423 -101
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +427 -108
- package/dist/es6/ej2-schedule.es5.js.map +1 -1
- package/dist/global/ej2-schedule.min.js +2 -2
- package/dist/global/ej2-schedule.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +15 -15
- package/src/recurrence-editor/recurrence-editor.js +2 -2
- package/src/schedule/actions/drag.js +12 -4
- package/src/schedule/actions/keyboard.d.ts +7 -0
- package/src/schedule/actions/keyboard.js +197 -28
- package/src/schedule/base/interface.d.ts +12 -0
- package/src/schedule/base/resource.js +1 -0
- package/src/schedule/base/schedule-model.d.ts +89 -20
- package/src/schedule/base/schedule.d.ts +88 -19
- package/src/schedule/base/schedule.js +14 -3
- package/src/schedule/base/util.d.ts +1 -0
- package/src/schedule/base/util.js +1 -0
- package/src/schedule/event-renderer/event-base.d.ts +1 -0
- package/src/schedule/event-renderer/event-base.js +18 -2
- package/src/schedule/event-renderer/inline-edit.js +8 -5
- package/src/schedule/event-renderer/month.js +1 -1
- package/src/schedule/event-renderer/timeline-view.js +4 -0
- package/src/schedule/event-renderer/vertical-view.js +9 -6
- package/src/schedule/event-renderer/year.js +1 -1
- package/src/schedule/exports/excel-export.d.ts +2 -1
- package/src/schedule/exports/excel-export.js +21 -18
- package/src/schedule/models/event-settings-model.d.ts +17 -9
- package/src/schedule/models/event-settings.d.ts +15 -8
- package/src/schedule/models/event-settings.js +6 -3
- package/src/schedule/models/views-model.d.ts +19 -0
- package/src/schedule/models/views.d.ts +17 -0
- package/src/schedule/models/views.js +6 -0
- package/src/schedule/popups/quick-popups.js +3 -0
- package/src/schedule/renderer/agenda.js +2 -1
- package/src/schedule/renderer/header-renderer.d.ts +1 -0
- package/src/schedule/renderer/header-renderer.js +22 -8
- package/src/schedule/renderer/month.d.ts +4 -0
- package/src/schedule/renderer/month.js +68 -19
- package/src/schedule/renderer/timeline-year.js +3 -0
- package/src/schedule/renderer/view-base.js +9 -0
- package/src/schedule/renderer/year.d.ts +2 -2
- package/src/schedule/renderer/year.js +24 -6
- package/styles/bootstrap-dark.css +108 -27
- package/styles/bootstrap.css +105 -27
- package/styles/bootstrap4.css +117 -62
- package/styles/bootstrap5-dark.css +118 -67
- package/styles/bootstrap5.css +118 -67
- package/styles/fabric-dark.css +108 -26
- package/styles/fabric.css +109 -26
- package/styles/highcontrast-light.css +104 -26
- package/styles/highcontrast.css +109 -28
- package/styles/material-dark.css +110 -32
- package/styles/material.css +103 -25
- package/styles/recurrence-editor/_bootstrap-dark-definition.scss +7 -0
- package/styles/recurrence-editor/_bootstrap-definition.scss +7 -0
- package/styles/recurrence-editor/_bootstrap4-definition.scss +7 -0
- package/styles/recurrence-editor/_bootstrap5-definition.scss +7 -0
- package/styles/recurrence-editor/_fabric-dark-definition.scss +8 -0
- package/styles/recurrence-editor/_fabric-definition.scss +7 -0
- package/styles/recurrence-editor/_fluent-definition.scss +15 -0
- package/styles/recurrence-editor/_highcontrast-definition.scss +7 -0
- package/styles/recurrence-editor/_highcontrast-light-definition.scss +7 -0
- package/styles/recurrence-editor/_layout.scss +20 -4
- package/styles/recurrence-editor/_material-dark-definition.scss +7 -0
- package/styles/recurrence-editor/_material-definition.scss +7 -0
- package/styles/recurrence-editor/_tailwind-definition.scss +15 -8
- package/styles/recurrence-editor/bootstrap-dark.css +20 -4
- package/styles/recurrence-editor/bootstrap.css +20 -4
- package/styles/recurrence-editor/bootstrap4.css +20 -4
- package/styles/recurrence-editor/bootstrap5-dark.css +20 -4
- package/styles/recurrence-editor/bootstrap5.css +20 -4
- package/styles/recurrence-editor/fabric-dark.css +20 -4
- package/styles/recurrence-editor/fabric.css +20 -4
- package/styles/recurrence-editor/highcontrast-light.css +20 -4
- package/styles/recurrence-editor/highcontrast.css +20 -4
- package/styles/recurrence-editor/material-dark.css +20 -4
- package/styles/recurrence-editor/material.css +20 -4
- package/styles/recurrence-editor/tailwind-dark.css +20 -4
- package/styles/recurrence-editor/tailwind.css +20 -4
- package/styles/schedule/_bootstrap-dark-definition.scss +22 -1
- package/styles/schedule/_bootstrap-definition.scss +22 -1
- package/styles/schedule/_bootstrap4-definition.scss +23 -1
- package/styles/schedule/_bootstrap5-definition.scss +145 -119
- package/styles/schedule/_fabric-dark-definition.scss +22 -1
- package/styles/schedule/_fabric-definition.scss +22 -1
- package/styles/schedule/_fluent-definition.scss +218 -0
- package/styles/schedule/_highcontrast-definition.scss +22 -1
- package/styles/schedule/_highcontrast-light-definition.scss +22 -1
- package/styles/schedule/_layout.scss +95 -158
- package/styles/schedule/_material-dark-definition.scss +22 -1
- package/styles/schedule/_material-definition.scss +21 -0
- package/styles/schedule/_tailwind-definition.scss +216 -195
- package/styles/schedule/_theme.scss +1 -1
- package/styles/schedule/bootstrap-dark.css +88 -23
- package/styles/schedule/bootstrap.css +85 -23
- package/styles/schedule/bootstrap4.css +97 -58
- package/styles/schedule/bootstrap5-dark.css +98 -63
- package/styles/schedule/bootstrap5.css +98 -63
- package/styles/schedule/fabric-dark.css +88 -22
- package/styles/schedule/fabric.css +89 -22
- package/styles/schedule/highcontrast-light.css +84 -22
- package/styles/schedule/highcontrast.css +89 -24
- package/styles/schedule/icons/_fluent.scss +231 -0
- package/styles/schedule/icons/_tailwind.scss +231 -231
- package/styles/schedule/material-dark.css +90 -28
- package/styles/schedule/material.css +83 -21
- package/styles/schedule/tailwind-dark.css +94 -52
- package/styles/schedule/tailwind.css +94 -52
- package/styles/tailwind-dark.css +114 -56
- package/styles/tailwind.css +114 -56
|
@@ -35,8 +35,13 @@
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
.e-recurrenceeditor .e-recurrence-table .e-week-position {
|
|
38
|
+
min-width: 98px;
|
|
38
39
|
position: relative;
|
|
39
|
-
right:
|
|
40
|
+
right: 27px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.e-recurrenceeditor .e-recurrence-table .e-day-position {
|
|
44
|
+
min-width: 120px;
|
|
40
45
|
}
|
|
41
46
|
|
|
42
47
|
.e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
@@ -86,12 +91,13 @@
|
|
|
86
91
|
}
|
|
87
92
|
|
|
88
93
|
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
89
|
-
|
|
94
|
+
position: relative;
|
|
95
|
+
right: 10px;
|
|
90
96
|
}
|
|
91
97
|
|
|
92
98
|
.e-recurrenceeditor.e-rtl .e-week-position {
|
|
93
|
-
|
|
94
|
-
right:
|
|
99
|
+
position: relative;
|
|
100
|
+
right: -27px;
|
|
95
101
|
}
|
|
96
102
|
|
|
97
103
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
|
|
@@ -228,15 +234,25 @@
|
|
|
228
234
|
}
|
|
229
235
|
|
|
230
236
|
.e-bigger .e-recurrenceeditor .e-week-position {
|
|
237
|
+
min-width: 162px;
|
|
231
238
|
padding-left: 55px;
|
|
232
239
|
padding-right: 0;
|
|
233
240
|
}
|
|
234
241
|
|
|
242
|
+
.e-bigger .e-recurrenceeditor .e-day-position {
|
|
243
|
+
min-width: 190px;
|
|
244
|
+
padding-left: 54px;
|
|
245
|
+
}
|
|
246
|
+
|
|
235
247
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
236
248
|
font-size: 12px;
|
|
237
249
|
margin-bottom: 0;
|
|
238
250
|
}
|
|
239
251
|
|
|
252
|
+
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
253
|
+
padding-right: 8px;
|
|
254
|
+
}
|
|
255
|
+
|
|
240
256
|
.e-bigger .e-recurrenceeditor .e-end-on-label {
|
|
241
257
|
margin-bottom: 0;
|
|
242
258
|
}
|
|
@@ -35,8 +35,13 @@
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
.e-recurrenceeditor .e-recurrence-table .e-week-position {
|
|
38
|
+
min-width: 98px;
|
|
38
39
|
position: relative;
|
|
39
|
-
right:
|
|
40
|
+
right: 27px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.e-recurrenceeditor .e-recurrence-table .e-day-position {
|
|
44
|
+
min-width: 120px;
|
|
40
45
|
}
|
|
41
46
|
|
|
42
47
|
.e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
@@ -86,12 +91,13 @@
|
|
|
86
91
|
}
|
|
87
92
|
|
|
88
93
|
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
89
|
-
|
|
94
|
+
position: relative;
|
|
95
|
+
right: 10px;
|
|
90
96
|
}
|
|
91
97
|
|
|
92
98
|
.e-recurrenceeditor.e-rtl .e-week-position {
|
|
93
|
-
|
|
94
|
-
right:
|
|
99
|
+
position: relative;
|
|
100
|
+
right: -27px;
|
|
95
101
|
}
|
|
96
102
|
|
|
97
103
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
|
|
@@ -228,15 +234,25 @@
|
|
|
228
234
|
}
|
|
229
235
|
|
|
230
236
|
.e-bigger .e-recurrenceeditor .e-week-position {
|
|
237
|
+
min-width: 162px;
|
|
231
238
|
padding-left: 55px;
|
|
232
239
|
padding-right: 0;
|
|
233
240
|
}
|
|
234
241
|
|
|
242
|
+
.e-bigger .e-recurrenceeditor .e-day-position {
|
|
243
|
+
min-width: 190px;
|
|
244
|
+
padding-left: 54px;
|
|
245
|
+
}
|
|
246
|
+
|
|
235
247
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
236
248
|
font-size: 16px;
|
|
237
249
|
margin-bottom: 0;
|
|
238
250
|
}
|
|
239
251
|
|
|
252
|
+
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
253
|
+
padding-right: 16px;
|
|
254
|
+
}
|
|
255
|
+
|
|
240
256
|
.e-bigger .e-recurrenceeditor .e-end-on-label {
|
|
241
257
|
margin-bottom: 0;
|
|
242
258
|
}
|
|
@@ -35,8 +35,13 @@
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
.e-recurrenceeditor .e-recurrence-table .e-week-position {
|
|
38
|
+
min-width: 98px;
|
|
38
39
|
position: relative;
|
|
39
|
-
right:
|
|
40
|
+
right: 27px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.e-recurrenceeditor .e-recurrence-table .e-day-position {
|
|
44
|
+
min-width: 120px;
|
|
40
45
|
}
|
|
41
46
|
|
|
42
47
|
.e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
@@ -86,12 +91,13 @@
|
|
|
86
91
|
}
|
|
87
92
|
|
|
88
93
|
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
89
|
-
|
|
94
|
+
position: relative;
|
|
95
|
+
right: 10px;
|
|
90
96
|
}
|
|
91
97
|
|
|
92
98
|
.e-recurrenceeditor.e-rtl .e-week-position {
|
|
93
|
-
|
|
94
|
-
right:
|
|
99
|
+
position: relative;
|
|
100
|
+
right: -27px;
|
|
95
101
|
}
|
|
96
102
|
|
|
97
103
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
|
|
@@ -228,15 +234,25 @@
|
|
|
228
234
|
}
|
|
229
235
|
|
|
230
236
|
.e-bigger .e-recurrenceeditor .e-week-position {
|
|
237
|
+
min-width: 162px;
|
|
231
238
|
padding-left: 55px;
|
|
232
239
|
padding-right: 0;
|
|
233
240
|
}
|
|
234
241
|
|
|
242
|
+
.e-bigger .e-recurrenceeditor .e-day-position {
|
|
243
|
+
min-width: 190px;
|
|
244
|
+
padding-left: 54px;
|
|
245
|
+
}
|
|
246
|
+
|
|
235
247
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
236
248
|
font-size: 16px;
|
|
237
249
|
margin-bottom: 0;
|
|
238
250
|
}
|
|
239
251
|
|
|
252
|
+
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
253
|
+
padding-right: 16px;
|
|
254
|
+
}
|
|
255
|
+
|
|
240
256
|
.e-bigger .e-recurrenceeditor .e-end-on-label {
|
|
241
257
|
margin-bottom: 0;
|
|
242
258
|
}
|
|
@@ -35,8 +35,13 @@
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
.e-recurrenceeditor .e-recurrence-table .e-week-position {
|
|
38
|
+
min-width: 98px;
|
|
38
39
|
position: relative;
|
|
39
|
-
right:
|
|
40
|
+
right: 27px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.e-recurrenceeditor .e-recurrence-table .e-day-position {
|
|
44
|
+
min-width: 120px;
|
|
40
45
|
}
|
|
41
46
|
|
|
42
47
|
.e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
@@ -86,12 +91,13 @@
|
|
|
86
91
|
}
|
|
87
92
|
|
|
88
93
|
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
89
|
-
|
|
94
|
+
position: relative;
|
|
95
|
+
right: 10px;
|
|
90
96
|
}
|
|
91
97
|
|
|
92
98
|
.e-recurrenceeditor.e-rtl .e-week-position {
|
|
93
|
-
|
|
94
|
-
right:
|
|
99
|
+
position: relative;
|
|
100
|
+
right: -27px;
|
|
95
101
|
}
|
|
96
102
|
|
|
97
103
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
|
|
@@ -228,15 +234,25 @@
|
|
|
228
234
|
}
|
|
229
235
|
|
|
230
236
|
.e-bigger .e-recurrenceeditor .e-week-position {
|
|
237
|
+
min-width: 162px;
|
|
231
238
|
padding-left: 55px;
|
|
232
239
|
padding-right: 0;
|
|
233
240
|
}
|
|
234
241
|
|
|
242
|
+
.e-bigger .e-recurrenceeditor .e-day-position {
|
|
243
|
+
min-width: 190px;
|
|
244
|
+
padding-left: 54px;
|
|
245
|
+
}
|
|
246
|
+
|
|
235
247
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
236
248
|
font-size: 16px;
|
|
237
249
|
margin-bottom: 0;
|
|
238
250
|
}
|
|
239
251
|
|
|
252
|
+
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
253
|
+
padding-right: 16px;
|
|
254
|
+
}
|
|
255
|
+
|
|
240
256
|
.e-bigger .e-recurrenceeditor .e-end-on-label {
|
|
241
257
|
margin-bottom: 0;
|
|
242
258
|
}
|
|
@@ -35,8 +35,13 @@
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
.e-recurrenceeditor .e-recurrence-table .e-week-position {
|
|
38
|
+
min-width: 90px;
|
|
38
39
|
position: relative;
|
|
39
|
-
right:
|
|
40
|
+
right: 21px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.e-recurrenceeditor .e-recurrence-table .e-day-position {
|
|
44
|
+
min-width: 120px;
|
|
40
45
|
}
|
|
41
46
|
|
|
42
47
|
.e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
@@ -86,12 +91,13 @@
|
|
|
86
91
|
}
|
|
87
92
|
|
|
88
93
|
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
89
|
-
|
|
94
|
+
position: relative;
|
|
95
|
+
right: 10px;
|
|
90
96
|
}
|
|
91
97
|
|
|
92
98
|
.e-recurrenceeditor.e-rtl .e-week-position {
|
|
93
|
-
|
|
94
|
-
right:
|
|
99
|
+
position: relative;
|
|
100
|
+
right: -21px;
|
|
95
101
|
}
|
|
96
102
|
|
|
97
103
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
|
|
@@ -228,15 +234,25 @@
|
|
|
228
234
|
}
|
|
229
235
|
|
|
230
236
|
.e-bigger .e-recurrenceeditor .e-week-position {
|
|
237
|
+
min-width: 157px;
|
|
231
238
|
padding-left: 55px;
|
|
232
239
|
padding-right: 0;
|
|
233
240
|
}
|
|
234
241
|
|
|
242
|
+
.e-bigger .e-recurrenceeditor .e-day-position {
|
|
243
|
+
min-width: 183px;
|
|
244
|
+
padding-left: 54px;
|
|
245
|
+
}
|
|
246
|
+
|
|
235
247
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
236
248
|
font-size: 13px;
|
|
237
249
|
margin-bottom: 0;
|
|
238
250
|
}
|
|
239
251
|
|
|
252
|
+
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
253
|
+
padding-right: 5px;
|
|
254
|
+
}
|
|
255
|
+
|
|
240
256
|
.e-bigger .e-recurrenceeditor .e-end-on-label {
|
|
241
257
|
margin-bottom: 0;
|
|
242
258
|
}
|
|
@@ -35,8 +35,13 @@
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
.e-recurrenceeditor .e-recurrence-table .e-week-position {
|
|
38
|
+
min-width: 90px;
|
|
38
39
|
position: relative;
|
|
39
|
-
right:
|
|
40
|
+
right: 21px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.e-recurrenceeditor .e-recurrence-table .e-day-position {
|
|
44
|
+
min-width: 120px;
|
|
40
45
|
}
|
|
41
46
|
|
|
42
47
|
.e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
@@ -86,12 +91,13 @@
|
|
|
86
91
|
}
|
|
87
92
|
|
|
88
93
|
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
89
|
-
|
|
94
|
+
position: relative;
|
|
95
|
+
right: 10px;
|
|
90
96
|
}
|
|
91
97
|
|
|
92
98
|
.e-recurrenceeditor.e-rtl .e-week-position {
|
|
93
|
-
|
|
94
|
-
right:
|
|
99
|
+
position: relative;
|
|
100
|
+
right: -21px;
|
|
95
101
|
}
|
|
96
102
|
|
|
97
103
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
|
|
@@ -228,15 +234,25 @@
|
|
|
228
234
|
}
|
|
229
235
|
|
|
230
236
|
.e-bigger .e-recurrenceeditor .e-week-position {
|
|
237
|
+
min-width: 157px;
|
|
231
238
|
padding-left: 55px;
|
|
232
239
|
padding-right: 0;
|
|
233
240
|
}
|
|
234
241
|
|
|
242
|
+
.e-bigger .e-recurrenceeditor .e-day-position {
|
|
243
|
+
min-width: 183px;
|
|
244
|
+
padding-left: 54px;
|
|
245
|
+
}
|
|
246
|
+
|
|
235
247
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
236
248
|
font-size: 13px;
|
|
237
249
|
margin-bottom: 0;
|
|
238
250
|
}
|
|
239
251
|
|
|
252
|
+
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
253
|
+
padding-right: 5px;
|
|
254
|
+
}
|
|
255
|
+
|
|
240
256
|
.e-bigger .e-recurrenceeditor .e-end-on-label {
|
|
241
257
|
margin-bottom: 0;
|
|
242
258
|
}
|
|
@@ -35,8 +35,13 @@
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
.e-recurrenceeditor .e-recurrence-table .e-week-position {
|
|
38
|
+
min-width: 88px;
|
|
38
39
|
position: relative;
|
|
39
|
-
right:
|
|
40
|
+
right: 19px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.e-recurrenceeditor .e-recurrence-table .e-day-position {
|
|
44
|
+
min-width: 120px;
|
|
40
45
|
}
|
|
41
46
|
|
|
42
47
|
.e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
@@ -86,12 +91,13 @@
|
|
|
86
91
|
}
|
|
87
92
|
|
|
88
93
|
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
89
|
-
|
|
94
|
+
position: relative;
|
|
95
|
+
right: 10px;
|
|
90
96
|
}
|
|
91
97
|
|
|
92
98
|
.e-recurrenceeditor.e-rtl .e-week-position {
|
|
93
|
-
|
|
94
|
-
right:
|
|
99
|
+
position: relative;
|
|
100
|
+
right: -19px;
|
|
95
101
|
}
|
|
96
102
|
|
|
97
103
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
|
|
@@ -228,15 +234,25 @@
|
|
|
228
234
|
}
|
|
229
235
|
|
|
230
236
|
.e-bigger .e-recurrenceeditor .e-week-position {
|
|
237
|
+
min-width: 157px;
|
|
231
238
|
padding-left: 55px;
|
|
232
239
|
padding-right: 0;
|
|
233
240
|
}
|
|
234
241
|
|
|
242
|
+
.e-bigger .e-recurrenceeditor .e-day-position {
|
|
243
|
+
min-width: 183px;
|
|
244
|
+
padding-left: 54px;
|
|
245
|
+
}
|
|
246
|
+
|
|
235
247
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
236
248
|
font-size: 12px;
|
|
237
249
|
margin-bottom: 0;
|
|
238
250
|
}
|
|
239
251
|
|
|
252
|
+
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
253
|
+
padding-right: 5px;
|
|
254
|
+
}
|
|
255
|
+
|
|
240
256
|
.e-bigger .e-recurrenceeditor .e-end-on-label {
|
|
241
257
|
margin-bottom: 0;
|
|
242
258
|
}
|
|
@@ -35,8 +35,13 @@
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
.e-recurrenceeditor .e-recurrence-table .e-week-position {
|
|
38
|
+
min-width: 88px;
|
|
38
39
|
position: relative;
|
|
39
|
-
right:
|
|
40
|
+
right: 19px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.e-recurrenceeditor .e-recurrence-table .e-day-position {
|
|
44
|
+
min-width: 120px;
|
|
40
45
|
}
|
|
41
46
|
|
|
42
47
|
.e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
@@ -86,12 +91,13 @@
|
|
|
86
91
|
}
|
|
87
92
|
|
|
88
93
|
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
89
|
-
|
|
94
|
+
position: relative;
|
|
95
|
+
right: 10px;
|
|
90
96
|
}
|
|
91
97
|
|
|
92
98
|
.e-recurrenceeditor.e-rtl .e-week-position {
|
|
93
|
-
|
|
94
|
-
right:
|
|
99
|
+
position: relative;
|
|
100
|
+
right: -19px;
|
|
95
101
|
}
|
|
96
102
|
|
|
97
103
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
|
|
@@ -228,15 +234,25 @@
|
|
|
228
234
|
}
|
|
229
235
|
|
|
230
236
|
.e-bigger .e-recurrenceeditor .e-week-position {
|
|
237
|
+
min-width: 157px;
|
|
231
238
|
padding-left: 55px;
|
|
232
239
|
padding-right: 0;
|
|
233
240
|
}
|
|
234
241
|
|
|
242
|
+
.e-bigger .e-recurrenceeditor .e-day-position {
|
|
243
|
+
min-width: 183px;
|
|
244
|
+
padding-left: 54px;
|
|
245
|
+
}
|
|
246
|
+
|
|
235
247
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
236
248
|
font-size: 12px;
|
|
237
249
|
margin-bottom: 0;
|
|
238
250
|
}
|
|
239
251
|
|
|
252
|
+
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
253
|
+
padding-right: 5px;
|
|
254
|
+
}
|
|
255
|
+
|
|
240
256
|
.e-bigger .e-recurrenceeditor .e-end-on-label {
|
|
241
257
|
margin-bottom: 0;
|
|
242
258
|
}
|
|
@@ -36,8 +36,13 @@
|
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
.e-recurrenceeditor .e-recurrence-table .e-week-position {
|
|
39
|
+
min-width: 81px;
|
|
39
40
|
position: relative;
|
|
40
|
-
right:
|
|
41
|
+
right: 24px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.e-recurrenceeditor .e-recurrence-table .e-day-position {
|
|
45
|
+
min-width: 120px;
|
|
41
46
|
}
|
|
42
47
|
|
|
43
48
|
.e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
@@ -87,12 +92,13 @@
|
|
|
87
92
|
}
|
|
88
93
|
|
|
89
94
|
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
90
|
-
|
|
95
|
+
position: relative;
|
|
96
|
+
right: 10px;
|
|
91
97
|
}
|
|
92
98
|
|
|
93
99
|
.e-recurrenceeditor.e-rtl .e-week-position {
|
|
94
|
-
|
|
95
|
-
right:
|
|
100
|
+
position: relative;
|
|
101
|
+
right: -24px;
|
|
96
102
|
}
|
|
97
103
|
|
|
98
104
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
|
|
@@ -229,15 +235,25 @@
|
|
|
229
235
|
}
|
|
230
236
|
|
|
231
237
|
.e-bigger .e-recurrenceeditor .e-week-position {
|
|
238
|
+
min-width: 125px;
|
|
232
239
|
padding-left: 55px;
|
|
233
240
|
padding-right: 0;
|
|
234
241
|
}
|
|
235
242
|
|
|
243
|
+
.e-bigger .e-recurrenceeditor .e-day-position {
|
|
244
|
+
min-width: 128px;
|
|
245
|
+
padding-left: 14px;
|
|
246
|
+
}
|
|
247
|
+
|
|
236
248
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
237
249
|
font-size: 12px;
|
|
238
250
|
margin-bottom: 0;
|
|
239
251
|
}
|
|
240
252
|
|
|
253
|
+
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
254
|
+
padding-right: 16px;
|
|
255
|
+
}
|
|
256
|
+
|
|
241
257
|
.e-bigger .e-recurrenceeditor .e-end-on-label {
|
|
242
258
|
margin-bottom: 0;
|
|
243
259
|
}
|
|
@@ -36,8 +36,13 @@
|
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
.e-recurrenceeditor .e-recurrence-table .e-week-position {
|
|
39
|
+
min-width: 81px;
|
|
39
40
|
position: relative;
|
|
40
|
-
right:
|
|
41
|
+
right: 24px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.e-recurrenceeditor .e-recurrence-table .e-day-position {
|
|
45
|
+
min-width: 120px;
|
|
41
46
|
}
|
|
42
47
|
|
|
43
48
|
.e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
@@ -87,12 +92,13 @@
|
|
|
87
92
|
}
|
|
88
93
|
|
|
89
94
|
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
90
|
-
|
|
95
|
+
position: relative;
|
|
96
|
+
right: 10px;
|
|
91
97
|
}
|
|
92
98
|
|
|
93
99
|
.e-recurrenceeditor.e-rtl .e-week-position {
|
|
94
|
-
|
|
95
|
-
right:
|
|
100
|
+
position: relative;
|
|
101
|
+
right: -24px;
|
|
96
102
|
}
|
|
97
103
|
|
|
98
104
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
|
|
@@ -229,15 +235,25 @@
|
|
|
229
235
|
}
|
|
230
236
|
|
|
231
237
|
.e-bigger .e-recurrenceeditor .e-week-position {
|
|
238
|
+
min-width: 125px;
|
|
232
239
|
padding-left: 55px;
|
|
233
240
|
padding-right: 0;
|
|
234
241
|
}
|
|
235
242
|
|
|
243
|
+
.e-bigger .e-recurrenceeditor .e-day-position {
|
|
244
|
+
min-width: 128px;
|
|
245
|
+
padding-left: 14px;
|
|
246
|
+
}
|
|
247
|
+
|
|
236
248
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
237
249
|
font-size: 12px;
|
|
238
250
|
margin-bottom: 0;
|
|
239
251
|
}
|
|
240
252
|
|
|
253
|
+
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
254
|
+
padding-right: 16px;
|
|
255
|
+
}
|
|
256
|
+
|
|
241
257
|
.e-bigger .e-recurrenceeditor .e-end-on-label {
|
|
242
258
|
margin-bottom: 0;
|
|
243
259
|
}
|
|
@@ -36,8 +36,13 @@
|
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
.e-recurrenceeditor .e-recurrence-table .e-week-position {
|
|
39
|
+
min-width: 94px;
|
|
39
40
|
position: relative;
|
|
40
|
-
right:
|
|
41
|
+
right: 26px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.e-recurrenceeditor .e-recurrence-table .e-day-position {
|
|
45
|
+
min-width: 120px;
|
|
41
46
|
}
|
|
42
47
|
|
|
43
48
|
.e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
@@ -87,12 +92,13 @@
|
|
|
87
92
|
}
|
|
88
93
|
|
|
89
94
|
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
90
|
-
|
|
95
|
+
position: relative;
|
|
96
|
+
right: 10px;
|
|
91
97
|
}
|
|
92
98
|
|
|
93
99
|
.e-recurrenceeditor.e-rtl .e-week-position {
|
|
94
|
-
|
|
95
|
-
right:
|
|
100
|
+
position: relative;
|
|
101
|
+
right: -26px;
|
|
96
102
|
}
|
|
97
103
|
|
|
98
104
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
|
|
@@ -229,15 +235,25 @@
|
|
|
229
235
|
}
|
|
230
236
|
|
|
231
237
|
.e-bigger .e-recurrenceeditor .e-week-position {
|
|
238
|
+
min-width: 167px;
|
|
232
239
|
padding-left: 55px;
|
|
233
240
|
padding-right: 0;
|
|
234
241
|
}
|
|
235
242
|
|
|
243
|
+
.e-bigger .e-recurrenceeditor .e-day-position {
|
|
244
|
+
min-width: 197px;
|
|
245
|
+
padding-left: 54px;
|
|
246
|
+
}
|
|
247
|
+
|
|
236
248
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
237
249
|
font-size: 16px;
|
|
238
250
|
margin-bottom: 0;
|
|
239
251
|
}
|
|
240
252
|
|
|
253
|
+
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
254
|
+
padding-right: 2px;
|
|
255
|
+
}
|
|
256
|
+
|
|
241
257
|
.e-bigger .e-recurrenceeditor .e-end-on-label {
|
|
242
258
|
margin-bottom: 0;
|
|
243
259
|
}
|
|
@@ -36,8 +36,13 @@
|
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
.e-recurrenceeditor .e-recurrence-table .e-week-position {
|
|
39
|
+
min-width: 94px;
|
|
39
40
|
position: relative;
|
|
40
|
-
right:
|
|
41
|
+
right: 26px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.e-recurrenceeditor .e-recurrence-table .e-day-position {
|
|
45
|
+
min-width: 120px;
|
|
41
46
|
}
|
|
42
47
|
|
|
43
48
|
.e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
@@ -87,12 +92,13 @@
|
|
|
87
92
|
}
|
|
88
93
|
|
|
89
94
|
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
90
|
-
|
|
95
|
+
position: relative;
|
|
96
|
+
right: 10px;
|
|
91
97
|
}
|
|
92
98
|
|
|
93
99
|
.e-recurrenceeditor.e-rtl .e-week-position {
|
|
94
|
-
|
|
95
|
-
right:
|
|
100
|
+
position: relative;
|
|
101
|
+
right: -26px;
|
|
96
102
|
}
|
|
97
103
|
|
|
98
104
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
|
|
@@ -229,15 +235,25 @@
|
|
|
229
235
|
}
|
|
230
236
|
|
|
231
237
|
.e-bigger .e-recurrenceeditor .e-week-position {
|
|
238
|
+
min-width: 167px;
|
|
232
239
|
padding-left: 55px;
|
|
233
240
|
padding-right: 0;
|
|
234
241
|
}
|
|
235
242
|
|
|
243
|
+
.e-bigger .e-recurrenceeditor .e-day-position {
|
|
244
|
+
min-width: 197px;
|
|
245
|
+
padding-left: 54px;
|
|
246
|
+
}
|
|
247
|
+
|
|
236
248
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
237
249
|
font-size: 16px;
|
|
238
250
|
margin-bottom: 0;
|
|
239
251
|
}
|
|
240
252
|
|
|
253
|
+
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
254
|
+
padding-right: 2px;
|
|
255
|
+
}
|
|
256
|
+
|
|
241
257
|
.e-bigger .e-recurrenceeditor .e-end-on-label {
|
|
242
258
|
margin-bottom: 0;
|
|
243
259
|
}
|