@syncfusion/ej2-schedule 20.3.61 → 20.4.40
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/.eslintrc.json +16 -1
- package/CHANGELOG.md +10 -0
- package/README.md +62 -46
- package/dist/ej2-schedule.min.js +2 -2
- 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 +786 -524
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +821 -535
- 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 +23 -33
- package/src/common/calendar-util.js +1 -1
- package/src/recurrence-editor/date-generator.js +26 -26
- package/src/recurrence-editor/recurrence-editor.js +5 -5
- package/src/schedule/actions/action-base.js +3 -3
- package/src/schedule/actions/crud.js +16 -16
- package/src/schedule/actions/drag.js +36 -32
- package/src/schedule/actions/keyboard.js +10 -8
- package/src/schedule/actions/resize.js +6 -6
- package/src/schedule/actions/touch.js +4 -3
- package/src/schedule/actions/virtual-scroll.js +10 -7
- package/src/schedule/base/interface.d.ts +8 -1
- package/src/schedule/base/resource.d.ts +1 -0
- package/src/schedule/base/resource.js +179 -93
- package/src/schedule/base/schedule-model.d.ts +7 -0
- package/src/schedule/base/schedule.d.ts +23 -0
- package/src/schedule/base/schedule.js +73 -22
- package/src/schedule/base/util.js +4 -6
- package/src/schedule/event-renderer/agenda-base.js +36 -31
- package/src/schedule/event-renderer/event-base.js +25 -25
- package/src/schedule/event-renderer/inline-edit.js +8 -5
- package/src/schedule/event-renderer/month.js +17 -14
- package/src/schedule/event-renderer/timeline-view.js +11 -11
- package/src/schedule/event-renderer/vertical-view.d.ts +1 -0
- package/src/schedule/event-renderer/vertical-view.js +97 -70
- package/src/schedule/event-renderer/year.js +25 -17
- package/src/schedule/exports/calendar-export.js +4 -4
- package/src/schedule/exports/calendar-import.js +14 -15
- package/src/schedule/exports/excel-export.js +1 -1
- package/src/schedule/models/group-model.d.ts +8 -0
- package/src/schedule/models/group.d.ts +7 -0
- package/src/schedule/models/group.js +3 -0
- package/src/schedule/models/views-model.d.ts +8 -1
- package/src/schedule/models/views.d.ts +7 -1
- package/src/schedule/models/views.js +3 -0
- package/src/schedule/popups/event-tooltip.js +3 -2
- package/src/schedule/popups/event-window.js +36 -30
- package/src/schedule/popups/quick-popups.js +6 -6
- package/src/schedule/renderer/agenda.js +5 -5
- package/src/schedule/renderer/header-renderer.d.ts +1 -1
- package/src/schedule/renderer/header-renderer.js +21 -5
- package/src/schedule/renderer/month-agenda.js +11 -4
- package/src/schedule/renderer/month.js +44 -16
- package/src/schedule/renderer/renderer.js +3 -3
- package/src/schedule/renderer/timeline-header-row.js +7 -7
- package/src/schedule/renderer/timeline-month.js +5 -5
- package/src/schedule/renderer/timeline-view.js +2 -2
- package/src/schedule/renderer/timeline-year.js +20 -14
- package/src/schedule/renderer/vertical-view.js +24 -9
- package/src/schedule/renderer/view-base.d.ts +3 -0
- package/src/schedule/renderer/view-base.js +11 -3
- package/src/schedule/renderer/year.js +11 -5
- 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/_layout.scss +42 -28
- package/styles/recurrence-editor/bootstrap-dark.css +137 -28
- package/styles/recurrence-editor/bootstrap-dark.scss +5 -0
- package/styles/recurrence-editor/bootstrap.css +137 -28
- package/styles/recurrence-editor/bootstrap.scss +5 -0
- package/styles/recurrence-editor/bootstrap4.css +171 -28
- package/styles/recurrence-editor/bootstrap4.scss +5 -0
- package/styles/recurrence-editor/bootstrap5-dark.css +178 -28
- package/styles/recurrence-editor/bootstrap5-dark.scss +5 -0
- package/styles/recurrence-editor/bootstrap5.css +178 -28
- package/styles/recurrence-editor/bootstrap5.scss +5 -0
- package/styles/recurrence-editor/fabric-dark.css +113 -28
- package/styles/recurrence-editor/fabric-dark.scss +5 -0
- package/styles/recurrence-editor/fabric.css +106 -28
- package/styles/recurrence-editor/fabric.scss +5 -0
- package/styles/recurrence-editor/fluent-dark.css +158 -28
- package/styles/recurrence-editor/fluent-dark.scss +5 -0
- package/styles/recurrence-editor/fluent.css +158 -28
- package/styles/recurrence-editor/fluent.scss +5 -0
- package/styles/recurrence-editor/highcontrast-light.css +110 -28
- package/styles/recurrence-editor/highcontrast-light.scss +5 -0
- package/styles/recurrence-editor/highcontrast.css +110 -28
- package/styles/recurrence-editor/highcontrast.scss +5 -0
- package/styles/recurrence-editor/material-dark.css +138 -28
- package/styles/recurrence-editor/material-dark.scss +5 -0
- package/styles/recurrence-editor/material.css +163 -28
- package/styles/recurrence-editor/material.scss +5 -0
- package/styles/recurrence-editor/tailwind-dark.css +126 -28
- package/styles/recurrence-editor/tailwind-dark.scss +5 -0
- package/styles/recurrence-editor/tailwind.css +126 -28
- package/styles/recurrence-editor/tailwind.scss +5 -0
- package/styles/schedule/_bootstrap-dark-definition.scss +63 -4
- package/styles/schedule/_bootstrap-definition.scss +62 -3
- package/styles/schedule/_bootstrap4-definition.scss +65 -5
- package/styles/schedule/_bootstrap5-definition.scss +63 -5
- package/styles/schedule/_fabric-dark-definition.scss +61 -3
- package/styles/schedule/_fabric-definition.scss +62 -3
- package/styles/schedule/_fluent-definition.scss +63 -6
- package/styles/schedule/_fusionnew-definition.scss +60 -3
- package/styles/schedule/_highcontrast-definition.scss +62 -3
- package/styles/schedule/_highcontrast-light-definition.scss +62 -3
- package/styles/schedule/_layout.scss +117 -506
- package/styles/schedule/_material-dark-definition.scss +63 -4
- package/styles/schedule/_material-definition.scss +63 -4
- package/styles/schedule/_material3-definition.scss +62 -3
- package/styles/schedule/_tailwind-definition.scss +63 -6
- package/styles/schedule/_theme.scss +97 -62
- package/styles/schedule/bootstrap-dark.css +332 -73
- package/styles/schedule/bootstrap-dark.scss +11 -0
- package/styles/schedule/bootstrap.css +331 -71
- package/styles/schedule/bootstrap.scss +11 -0
- package/styles/schedule/bootstrap4.css +343 -113
- package/styles/schedule/bootstrap4.scss +11 -0
- package/styles/schedule/bootstrap5-dark.css +307 -109
- package/styles/schedule/bootstrap5-dark.scss +11 -0
- package/styles/schedule/bootstrap5.css +307 -109
- package/styles/schedule/bootstrap5.scss +11 -0
- package/styles/schedule/fabric-dark.css +298 -73
- package/styles/schedule/fabric-dark.scss +11 -0
- package/styles/schedule/fabric.css +284 -78
- package/styles/schedule/fabric.scss +11 -0
- package/styles/schedule/fluent-dark.css +363 -74
- package/styles/schedule/fluent-dark.scss +11 -0
- package/styles/schedule/fluent.css +363 -74
- package/styles/schedule/fluent.scss +11 -0
- package/styles/schedule/highcontrast-light.css +375 -70
- package/styles/schedule/highcontrast-light.scss +11 -0
- package/styles/schedule/highcontrast.css +367 -85
- package/styles/schedule/highcontrast.scss +11 -0
- package/styles/schedule/material-dark.css +330 -82
- package/styles/schedule/material-dark.scss +11 -0
- package/styles/schedule/material.css +372 -82
- package/styles/schedule/material.scss +11 -0
- package/styles/schedule/tailwind-dark.css +246 -111
- package/styles/schedule/tailwind-dark.scss +11 -0
- package/styles/schedule/tailwind.css +246 -111
- package/styles/schedule/tailwind.scss +11 -0
- package/styles/tailwind-dark.css +279 -140
- package/styles/tailwind.css +279 -140
|
@@ -1,3 +1,149 @@
|
|
|
1
|
+
.e-popup.e-ddl {
|
|
2
|
+
border-radius: 4px;
|
|
3
|
+
box-shadow: none;
|
|
4
|
+
margin-top: 3px;
|
|
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-dd-group .e-list-item {
|
|
45
|
+
padding-left: 0;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.e-bigger .e-popup.e-ddl .e-input-group input, .e-bigger .e-popup.e-ddl .e-input-group input.e-input {
|
|
49
|
+
font-size: 16px;
|
|
50
|
+
height: 36px;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.e-bigger .e-popup.e-ddl .e-dropdownbase {
|
|
54
|
+
min-height: 40px;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
|
|
58
|
+
.e-float-input.e-control-wrapper.e-ddl input[readonly] {
|
|
59
|
+
background: transparent;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
63
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
64
|
+
background: #343a40;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
68
|
+
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
69
|
+
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
70
|
+
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:hover,
|
|
71
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active,
|
|
72
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:hover,
|
|
73
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
|
|
74
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:hover {
|
|
75
|
+
background: transparent;
|
|
76
|
+
color: #adb5bd;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.e-input-group.e-ddl .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
80
|
+
.e-input-group.e-control-wrapper.e-ddl .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
81
|
+
.e-float-input.e-ddl input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
82
|
+
.e-float-input.e-control-wrapper.e-ddl input[readonly] ~ span.e-input-group-icon.e-ddl-icon {
|
|
83
|
+
background: transparent;
|
|
84
|
+
color: #adb5bd;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.e-input-group.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
88
|
+
.e-input-group.e-control-wrapper.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
89
|
+
.e-float-input.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
90
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon {
|
|
91
|
+
background: #343a40;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
95
|
+
.e-input-group.e-disabled.e-ddl .e-control.e-dropdownlist ~ .e-input-group-icon,
|
|
96
|
+
.e-control.e-dropdownlist .e-input-group.e-disabled.e-ddl .e-input-group-icon,
|
|
97
|
+
.e-control.e-dropdownlist .e-input-group.e-ddl .e-input-group-icon {
|
|
98
|
+
border: 0;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-input-group-icon:active,
|
|
102
|
+
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-input-group-icon:active,
|
|
103
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
|
|
104
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active {
|
|
105
|
+
box-shadow: none;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon {
|
|
109
|
+
background: transparent;
|
|
110
|
+
display: -ms-flexbox;
|
|
111
|
+
display: flex;
|
|
112
|
+
position: relative;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.e-ddl.e-popup .e-filter-parent .e-input-group,
|
|
116
|
+
.e-ddl.e-popup .e-filter-parent {
|
|
117
|
+
background: #212529;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
121
|
+
font-size: 14px;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.e-bigger .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
125
|
+
font-size: 16px;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.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 {
|
|
129
|
+
font-size: 14px;
|
|
130
|
+
line-height: 34px;
|
|
131
|
+
padding-left: 0;
|
|
132
|
+
text-indent: 16px;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.e-bigger.e-small .e-ddl.e-popup .e-dd-group .e-list-item {
|
|
136
|
+
padding-left: 4px;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.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 {
|
|
140
|
+
height: 30px;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.e-bigger.e-small .e-popup.e-ddl .e-dropdownbase {
|
|
144
|
+
min-height: 34px;
|
|
145
|
+
}
|
|
146
|
+
|
|
1
147
|
/*! recurrence editor theme wise definitions*/
|
|
2
148
|
/*! Recurrence-Editor component layout */
|
|
3
149
|
.e-recurrenceeditor .e-editor {
|
|
@@ -5,8 +151,7 @@
|
|
|
5
151
|
display: flex;
|
|
6
152
|
-ms-flex-flow: row wrap;
|
|
7
153
|
flex-flow: row wrap;
|
|
8
|
-
margin
|
|
9
|
-
margin-right: auto;
|
|
154
|
+
margin: 0 auto;
|
|
10
155
|
max-width: 1240px;
|
|
11
156
|
}
|
|
12
157
|
.e-recurrenceeditor .e-recurrence-table {
|
|
@@ -47,7 +192,7 @@
|
|
|
47
192
|
}
|
|
48
193
|
.e-recurrenceeditor .e-form-right,
|
|
49
194
|
.e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
50
|
-
padding: 0 0 10px
|
|
195
|
+
padding: 0 0 10px;
|
|
51
196
|
}
|
|
52
197
|
.e-recurrenceeditor .e-input-wrapper {
|
|
53
198
|
float: left;
|
|
@@ -88,13 +233,11 @@
|
|
|
88
233
|
margin-bottom: 5px;
|
|
89
234
|
}
|
|
90
235
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
91
|
-
padding
|
|
92
|
-
padding-right: 0;
|
|
236
|
+
padding: 0 0 0 8px;
|
|
93
237
|
}
|
|
94
238
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
95
239
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
96
|
-
padding
|
|
97
|
-
padding-right: 8px;
|
|
240
|
+
padding: 0 8px 0 0;
|
|
98
241
|
}
|
|
99
242
|
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
100
243
|
width: 30px;
|
|
@@ -122,10 +265,10 @@
|
|
|
122
265
|
margin-bottom: 11px;
|
|
123
266
|
}
|
|
124
267
|
.e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper {
|
|
125
|
-
|
|
268
|
+
padding-bottom: 11px;
|
|
126
269
|
}
|
|
127
270
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper {
|
|
128
|
-
|
|
271
|
+
padding-top: 3px;
|
|
129
272
|
}
|
|
130
273
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
|
|
131
274
|
display: none;
|
|
@@ -175,7 +318,7 @@
|
|
|
175
318
|
}
|
|
176
319
|
.e-bigger .e-recurrenceeditor .e-form-right,
|
|
177
320
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
178
|
-
padding: 0 0 10px
|
|
321
|
+
padding: 0 0 10px;
|
|
179
322
|
}
|
|
180
323
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
|
|
181
324
|
padding-bottom: 6px;
|
|
@@ -234,8 +377,7 @@
|
|
|
234
377
|
}
|
|
235
378
|
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element,
|
|
236
379
|
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
237
|
-
padding
|
|
238
|
-
padding-right: 64px;
|
|
380
|
+
padding: 0 64px 0 0;
|
|
239
381
|
}
|
|
240
382
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
|
|
241
383
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
@@ -245,13 +387,11 @@
|
|
|
245
387
|
margin-bottom: 5px;
|
|
246
388
|
}
|
|
247
389
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
248
|
-
padding
|
|
249
|
-
padding-right: 0;
|
|
390
|
+
padding: 0 0 0 12px;
|
|
250
391
|
}
|
|
251
392
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
252
393
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
253
|
-
padding
|
|
254
|
-
padding-right: 12px;
|
|
394
|
+
padding: 0 12px 0 0;
|
|
255
395
|
}
|
|
256
396
|
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
|
|
257
397
|
left: 0;
|
|
@@ -283,8 +423,7 @@
|
|
|
283
423
|
}
|
|
284
424
|
.e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
|
|
285
425
|
.e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
|
|
286
|
-
padding
|
|
287
|
-
padding-right: 0;
|
|
426
|
+
padding: 0 0 0 10px;
|
|
288
427
|
}
|
|
289
428
|
.e-device .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
290
429
|
padding-right: 10px;
|
|
@@ -305,23 +444,25 @@
|
|
|
305
444
|
.e-device .e-recurrenceeditor .e-recurrence-table .e-day-position {
|
|
306
445
|
padding-left: 20px;
|
|
307
446
|
}
|
|
447
|
+
.e-device .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
448
|
+
margin-left: 20px;
|
|
449
|
+
}
|
|
308
450
|
.e-device .e-recurrenceeditor .e-week-position {
|
|
309
451
|
right: 0;
|
|
452
|
+
padding-right: 10px;
|
|
310
453
|
}
|
|
311
454
|
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
312
455
|
padding-right: 0;
|
|
313
456
|
}
|
|
314
457
|
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
315
458
|
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
316
|
-
padding
|
|
317
|
-
padding-right: 10px;
|
|
459
|
+
padding: 0 10px 0 0;
|
|
318
460
|
}
|
|
319
461
|
.e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
320
|
-
padding
|
|
462
|
+
padding: 0 20px 0 0;
|
|
321
463
|
}
|
|
322
464
|
.e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
323
|
-
padding
|
|
324
|
-
padding-left: 0;
|
|
465
|
+
padding: 0 50px 0 0;
|
|
325
466
|
}
|
|
326
467
|
.e-device .e-recurrenceeditor.e-rtl .e-week-position {
|
|
327
468
|
left: 0;
|
|
@@ -338,6 +479,14 @@
|
|
|
338
479
|
padding: 16px 8px;
|
|
339
480
|
}
|
|
340
481
|
|
|
482
|
+
@media (max-width: 1024px) {
|
|
483
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on {
|
|
484
|
+
width: 100%;
|
|
485
|
+
}
|
|
486
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
|
|
487
|
+
width: 65%;
|
|
488
|
+
}
|
|
489
|
+
}
|
|
341
490
|
@media (max-width: 580px) {
|
|
342
491
|
.e-recurrenceeditor {
|
|
343
492
|
margin-left: auto;
|
|
@@ -373,8 +522,7 @@
|
|
|
373
522
|
}
|
|
374
523
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
|
|
375
524
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
|
|
376
|
-
padding
|
|
377
|
-
padding-right: 0;
|
|
525
|
+
padding: 0 0 0 10px;
|
|
378
526
|
}
|
|
379
527
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
380
528
|
padding-right: 10px;
|
|
@@ -387,15 +535,17 @@
|
|
|
387
535
|
width: 100%;
|
|
388
536
|
}
|
|
389
537
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
|
|
390
|
-
width:
|
|
538
|
+
width: 65%;
|
|
539
|
+
}
|
|
540
|
+
.e-recurrenceeditor .e-editor .e-recurrence-table .e-day-position {
|
|
541
|
+
padding-left: 50px;
|
|
391
542
|
}
|
|
392
543
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
393
544
|
padding-right: 0;
|
|
394
545
|
}
|
|
395
546
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
396
547
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
397
|
-
padding
|
|
398
|
-
padding-right: 10px;
|
|
548
|
+
padding: 0 10px 0 0;
|
|
399
549
|
}
|
|
400
550
|
}
|
|
401
551
|
/*! Recurrence-Editor component theme */
|
|
@@ -1,3 +1,8 @@
|
|
|
1
1
|
@import 'ej2-base/styles/bootstrap5-dark-definition.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/numerictextbox/bootstrap5-dark-definition.scss';
|
|
3
|
+
@import 'ej2-buttons/styles/button/bootstrap5-dark-definition.scss';
|
|
4
|
+
@import 'ej2-buttons/styles/radio-button/bootstrap5-dark-definition.scss';
|
|
5
|
+
@import 'ej2-calendars/styles/datepicker/bootstrap5-dark-definition.scss';
|
|
6
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap5-dark-definition.scss';
|
|
2
7
|
@import 'bootstrap5-dark-definition.scss';
|
|
3
8
|
@import 'all.scss';
|
|
@@ -1,3 +1,149 @@
|
|
|
1
|
+
.e-popup.e-ddl {
|
|
2
|
+
border-radius: 4px;
|
|
3
|
+
box-shadow: none;
|
|
4
|
+
margin-top: 3px;
|
|
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-dd-group .e-list-item {
|
|
45
|
+
padding-left: 0;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.e-bigger .e-popup.e-ddl .e-input-group input, .e-bigger .e-popup.e-ddl .e-input-group input.e-input {
|
|
49
|
+
font-size: 16px;
|
|
50
|
+
height: 36px;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.e-bigger .e-popup.e-ddl .e-dropdownbase {
|
|
54
|
+
min-height: 40px;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
|
|
58
|
+
.e-float-input.e-control-wrapper.e-ddl input[readonly] {
|
|
59
|
+
background: transparent;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
63
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
64
|
+
background: #e9ecef;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
68
|
+
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
69
|
+
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
70
|
+
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:hover,
|
|
71
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active,
|
|
72
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:hover,
|
|
73
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
|
|
74
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:hover {
|
|
75
|
+
background: transparent;
|
|
76
|
+
color: #6c757d;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.e-input-group.e-ddl .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
80
|
+
.e-input-group.e-control-wrapper.e-ddl .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
81
|
+
.e-float-input.e-ddl input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
82
|
+
.e-float-input.e-control-wrapper.e-ddl input[readonly] ~ span.e-input-group-icon.e-ddl-icon {
|
|
83
|
+
background: transparent;
|
|
84
|
+
color: #6c757d;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.e-input-group.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
88
|
+
.e-input-group.e-control-wrapper.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
89
|
+
.e-float-input.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
90
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon {
|
|
91
|
+
background: #e9ecef;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
95
|
+
.e-input-group.e-disabled.e-ddl .e-control.e-dropdownlist ~ .e-input-group-icon,
|
|
96
|
+
.e-control.e-dropdownlist .e-input-group.e-disabled.e-ddl .e-input-group-icon,
|
|
97
|
+
.e-control.e-dropdownlist .e-input-group.e-ddl .e-input-group-icon {
|
|
98
|
+
border: 0;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-input-group-icon:active,
|
|
102
|
+
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-input-group-icon:active,
|
|
103
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
|
|
104
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active {
|
|
105
|
+
box-shadow: none;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon {
|
|
109
|
+
background: transparent;
|
|
110
|
+
display: -ms-flexbox;
|
|
111
|
+
display: flex;
|
|
112
|
+
position: relative;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.e-ddl.e-popup .e-filter-parent .e-input-group,
|
|
116
|
+
.e-ddl.e-popup .e-filter-parent {
|
|
117
|
+
background: #fff;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
121
|
+
font-size: 14px;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.e-bigger .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
125
|
+
font-size: 16px;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.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 {
|
|
129
|
+
font-size: 14px;
|
|
130
|
+
line-height: 34px;
|
|
131
|
+
padding-left: 0;
|
|
132
|
+
text-indent: 16px;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.e-bigger.e-small .e-ddl.e-popup .e-dd-group .e-list-item {
|
|
136
|
+
padding-left: 4px;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.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 {
|
|
140
|
+
height: 30px;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.e-bigger.e-small .e-popup.e-ddl .e-dropdownbase {
|
|
144
|
+
min-height: 34px;
|
|
145
|
+
}
|
|
146
|
+
|
|
1
147
|
/*! recurrence editor theme wise definitions*/
|
|
2
148
|
/*! Recurrence-Editor component layout */
|
|
3
149
|
.e-recurrenceeditor .e-editor {
|
|
@@ -5,8 +151,7 @@
|
|
|
5
151
|
display: flex;
|
|
6
152
|
-ms-flex-flow: row wrap;
|
|
7
153
|
flex-flow: row wrap;
|
|
8
|
-
margin
|
|
9
|
-
margin-right: auto;
|
|
154
|
+
margin: 0 auto;
|
|
10
155
|
max-width: 1240px;
|
|
11
156
|
}
|
|
12
157
|
.e-recurrenceeditor .e-recurrence-table {
|
|
@@ -47,7 +192,7 @@
|
|
|
47
192
|
}
|
|
48
193
|
.e-recurrenceeditor .e-form-right,
|
|
49
194
|
.e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
50
|
-
padding: 0 0 10px
|
|
195
|
+
padding: 0 0 10px;
|
|
51
196
|
}
|
|
52
197
|
.e-recurrenceeditor .e-input-wrapper {
|
|
53
198
|
float: left;
|
|
@@ -88,13 +233,11 @@
|
|
|
88
233
|
margin-bottom: 5px;
|
|
89
234
|
}
|
|
90
235
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
91
|
-
padding
|
|
92
|
-
padding-right: 0;
|
|
236
|
+
padding: 0 0 0 8px;
|
|
93
237
|
}
|
|
94
238
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
95
239
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
96
|
-
padding
|
|
97
|
-
padding-right: 8px;
|
|
240
|
+
padding: 0 8px 0 0;
|
|
98
241
|
}
|
|
99
242
|
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
100
243
|
width: 30px;
|
|
@@ -122,10 +265,10 @@
|
|
|
122
265
|
margin-bottom: 11px;
|
|
123
266
|
}
|
|
124
267
|
.e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper {
|
|
125
|
-
|
|
268
|
+
padding-bottom: 11px;
|
|
126
269
|
}
|
|
127
270
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper {
|
|
128
|
-
|
|
271
|
+
padding-top: 3px;
|
|
129
272
|
}
|
|
130
273
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
|
|
131
274
|
display: none;
|
|
@@ -175,7 +318,7 @@
|
|
|
175
318
|
}
|
|
176
319
|
.e-bigger .e-recurrenceeditor .e-form-right,
|
|
177
320
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
178
|
-
padding: 0 0 10px
|
|
321
|
+
padding: 0 0 10px;
|
|
179
322
|
}
|
|
180
323
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
|
|
181
324
|
padding-bottom: 6px;
|
|
@@ -234,8 +377,7 @@
|
|
|
234
377
|
}
|
|
235
378
|
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element,
|
|
236
379
|
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
237
|
-
padding
|
|
238
|
-
padding-right: 64px;
|
|
380
|
+
padding: 0 64px 0 0;
|
|
239
381
|
}
|
|
240
382
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
|
|
241
383
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
@@ -245,13 +387,11 @@
|
|
|
245
387
|
margin-bottom: 5px;
|
|
246
388
|
}
|
|
247
389
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
248
|
-
padding
|
|
249
|
-
padding-right: 0;
|
|
390
|
+
padding: 0 0 0 12px;
|
|
250
391
|
}
|
|
251
392
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
252
393
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
253
|
-
padding
|
|
254
|
-
padding-right: 12px;
|
|
394
|
+
padding: 0 12px 0 0;
|
|
255
395
|
}
|
|
256
396
|
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
|
|
257
397
|
left: 0;
|
|
@@ -283,8 +423,7 @@
|
|
|
283
423
|
}
|
|
284
424
|
.e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
|
|
285
425
|
.e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
|
|
286
|
-
padding
|
|
287
|
-
padding-right: 0;
|
|
426
|
+
padding: 0 0 0 10px;
|
|
288
427
|
}
|
|
289
428
|
.e-device .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
290
429
|
padding-right: 10px;
|
|
@@ -305,23 +444,25 @@
|
|
|
305
444
|
.e-device .e-recurrenceeditor .e-recurrence-table .e-day-position {
|
|
306
445
|
padding-left: 20px;
|
|
307
446
|
}
|
|
447
|
+
.e-device .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
448
|
+
margin-left: 20px;
|
|
449
|
+
}
|
|
308
450
|
.e-device .e-recurrenceeditor .e-week-position {
|
|
309
451
|
right: 0;
|
|
452
|
+
padding-right: 10px;
|
|
310
453
|
}
|
|
311
454
|
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
312
455
|
padding-right: 0;
|
|
313
456
|
}
|
|
314
457
|
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
315
458
|
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
316
|
-
padding
|
|
317
|
-
padding-right: 10px;
|
|
459
|
+
padding: 0 10px 0 0;
|
|
318
460
|
}
|
|
319
461
|
.e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
320
|
-
padding
|
|
462
|
+
padding: 0 20px 0 0;
|
|
321
463
|
}
|
|
322
464
|
.e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
323
|
-
padding
|
|
324
|
-
padding-left: 0;
|
|
465
|
+
padding: 0 50px 0 0;
|
|
325
466
|
}
|
|
326
467
|
.e-device .e-recurrenceeditor.e-rtl .e-week-position {
|
|
327
468
|
left: 0;
|
|
@@ -338,6 +479,14 @@
|
|
|
338
479
|
padding: 16px 8px;
|
|
339
480
|
}
|
|
340
481
|
|
|
482
|
+
@media (max-width: 1024px) {
|
|
483
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on {
|
|
484
|
+
width: 100%;
|
|
485
|
+
}
|
|
486
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
|
|
487
|
+
width: 65%;
|
|
488
|
+
}
|
|
489
|
+
}
|
|
341
490
|
@media (max-width: 580px) {
|
|
342
491
|
.e-recurrenceeditor {
|
|
343
492
|
margin-left: auto;
|
|
@@ -373,8 +522,7 @@
|
|
|
373
522
|
}
|
|
374
523
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
|
|
375
524
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
|
|
376
|
-
padding
|
|
377
|
-
padding-right: 0;
|
|
525
|
+
padding: 0 0 0 10px;
|
|
378
526
|
}
|
|
379
527
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
380
528
|
padding-right: 10px;
|
|
@@ -387,15 +535,17 @@
|
|
|
387
535
|
width: 100%;
|
|
388
536
|
}
|
|
389
537
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
|
|
390
|
-
width:
|
|
538
|
+
width: 65%;
|
|
539
|
+
}
|
|
540
|
+
.e-recurrenceeditor .e-editor .e-recurrence-table .e-day-position {
|
|
541
|
+
padding-left: 50px;
|
|
391
542
|
}
|
|
392
543
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
393
544
|
padding-right: 0;
|
|
394
545
|
}
|
|
395
546
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
396
547
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
397
|
-
padding
|
|
398
|
-
padding-right: 10px;
|
|
548
|
+
padding: 0 10px 0 0;
|
|
399
549
|
}
|
|
400
550
|
}
|
|
401
551
|
/*! Recurrence-Editor component theme */
|
|
@@ -1,3 +1,8 @@
|
|
|
1
1
|
@import 'ej2-base/styles/bootstrap5-definition.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/numerictextbox/bootstrap5-definition.scss';
|
|
3
|
+
@import 'ej2-buttons/styles/button/bootstrap5-definition.scss';
|
|
4
|
+
@import 'ej2-buttons/styles/radio-button/bootstrap5-definition.scss';
|
|
5
|
+
@import 'ej2-calendars/styles/datepicker/bootstrap5-definition.scss';
|
|
6
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap5-definition.scss';
|
|
2
7
|
@import 'bootstrap5-definition.scss';
|
|
3
8
|
@import 'all.scss';
|