@syncfusion/ej2-schedule 19.2.60 → 19.3.48
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 +1 -1
- package/CHANGELOG.md +65 -0
- 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 +445 -164
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +456 -172
- 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/schedule/actions/action-base.js +1 -1
- package/src/schedule/actions/crud.js +3 -2
- package/src/schedule/actions/drag.d.ts +2 -0
- package/src/schedule/actions/drag.js +27 -17
- package/src/schedule/actions/keyboard.js +5 -5
- package/src/schedule/actions/resize.js +17 -10
- package/src/schedule/actions/virtual-scroll.js +2 -1
- package/src/schedule/base/interface.d.ts +9 -0
- package/src/schedule/base/resource.js +12 -3
- package/src/schedule/base/schedule-model.d.ts +13 -1
- package/src/schedule/base/schedule.d.ts +45 -2
- package/src/schedule/base/schedule.js +139 -14
- package/src/schedule/base/type.d.ts +4 -0
- package/src/schedule/event-renderer/event-base.d.ts +2 -1
- package/src/schedule/event-renderer/event-base.js +42 -28
- package/src/schedule/event-renderer/month.d.ts +0 -1
- package/src/schedule/event-renderer/month.js +32 -33
- package/src/schedule/event-renderer/timeline-view.d.ts +2 -0
- package/src/schedule/event-renderer/timeline-view.js +31 -1
- package/src/schedule/event-renderer/vertical-view.js +26 -19
- package/src/schedule/event-renderer/year.js +4 -1
- package/src/schedule/models/event-settings-model.d.ts +21 -1
- package/src/schedule/models/event-settings.d.ts +20 -0
- package/src/schedule/models/event-settings.js +6 -0
- package/src/schedule/models/views-model.d.ts +9 -0
- package/src/schedule/models/views.d.ts +8 -0
- package/src/schedule/models/views.js +3 -0
- package/src/schedule/popups/event-window.d.ts +3 -2
- package/src/schedule/popups/event-window.js +7 -3
- package/src/schedule/popups/form-validator.js +4 -1
- package/src/schedule/popups/quick-popups.d.ts +3 -2
- package/src/schedule/popups/quick-popups.js +32 -13
- package/src/schedule/renderer/agenda.d.ts +1 -0
- package/src/schedule/renderer/agenda.js +20 -3
- package/src/schedule/renderer/header-renderer.d.ts +1 -0
- package/src/schedule/renderer/header-renderer.js +6 -1
- package/src/schedule/renderer/month.d.ts +1 -0
- package/src/schedule/renderer/month.js +7 -7
- package/src/schedule/renderer/timeline-year.js +8 -2
- package/src/schedule/renderer/vertical-view.d.ts +2 -0
- package/src/schedule/renderer/vertical-view.js +19 -8
- package/src/schedule/renderer/view-base.d.ts +2 -1
- package/src/schedule/renderer/view-base.js +11 -3
- package/styles/bootstrap-dark.css +48 -66
- package/styles/bootstrap.css +28 -45
- package/styles/bootstrap4.css +28 -44
- package/styles/bootstrap5-dark.css +5172 -0
- package/styles/bootstrap5-dark.scss +2 -0
- package/styles/bootstrap5.css +5173 -0
- package/styles/bootstrap5.scss +2 -0
- package/styles/fabric-dark.css +29 -61
- package/styles/fabric.css +28 -45
- package/styles/highcontrast-light.css +28 -76
- package/styles/highcontrast.css +30 -49
- package/styles/material-dark.css +72 -79
- package/styles/material.css +32 -45
- package/styles/recurrence-editor/_bootstrap5-dark-definition.scss +1 -0
- package/styles/recurrence-editor/_bootstrap5-definition.scss +8 -0
- package/styles/recurrence-editor/_layout.scss +0 -4
- package/styles/recurrence-editor/_tailwind-dark-definition.scss +1 -8
- package/styles/recurrence-editor/_tailwind-definition.scss +8 -8
- package/styles/recurrence-editor/bootstrap-dark.css +0 -4
- package/styles/recurrence-editor/bootstrap.css +0 -4
- package/styles/recurrence-editor/bootstrap4.css +0 -4
- package/styles/recurrence-editor/bootstrap5-dark.css +479 -0
- package/styles/recurrence-editor/bootstrap5-dark.scss +3 -0
- package/styles/recurrence-editor/bootstrap5.css +479 -0
- package/styles/recurrence-editor/bootstrap5.scss +3 -0
- package/styles/recurrence-editor/fabric-dark.css +0 -4
- package/styles/recurrence-editor/fabric.css +0 -4
- package/styles/recurrence-editor/highcontrast-light.css +0 -4
- package/styles/recurrence-editor/highcontrast.css +0 -4
- package/styles/recurrence-editor/material-dark.css +0 -4
- package/styles/recurrence-editor/material.css +0 -4
- package/styles/recurrence-editor/tailwind-dark.css +0 -4
- package/styles/recurrence-editor/tailwind.css +0 -4
- package/styles/schedule/_bootstrap-dark-definition.scss +6 -6
- package/styles/schedule/_bootstrap-definition.scss +2 -2
- package/styles/schedule/_bootstrap4-definition.scss +6 -5
- package/styles/schedule/_bootstrap5-dark-definition.scss +1 -0
- package/styles/schedule/_bootstrap5-definition.scss +198 -0
- package/styles/schedule/_fabric-dark-definition.scss +3 -3
- package/styles/schedule/_fabric-definition.scss +2 -2
- package/styles/schedule/_highcontrast-definition.scss +3 -3
- package/styles/schedule/_highcontrast-light-definition.scss +2 -2
- package/styles/schedule/_layout.scss +97 -120
- package/styles/schedule/_material-dark-definition.scss +2 -2
- package/styles/schedule/_material-definition.scss +2 -2
- package/styles/schedule/_tailwind-dark-definition.scss +1 -196
- package/styles/schedule/_tailwind-definition.scss +195 -196
- package/styles/schedule/_theme.scss +33 -7
- package/styles/schedule/bootstrap-dark.css +48 -62
- package/styles/schedule/bootstrap.css +28 -41
- package/styles/schedule/bootstrap4.css +28 -40
- package/styles/schedule/bootstrap5-dark.css +4692 -0
- package/styles/schedule/bootstrap5-dark.scss +4 -0
- package/styles/schedule/bootstrap5.css +4693 -0
- package/styles/schedule/bootstrap5.scss +5 -0
- package/styles/schedule/fabric-dark.css +29 -57
- package/styles/schedule/fabric.css +28 -41
- package/styles/schedule/highcontrast-light.css +28 -72
- package/styles/schedule/highcontrast.css +30 -45
- package/styles/schedule/icons/_bootstrap5-dark.scss +1 -0
- package/styles/schedule/icons/_bootstrap5.scss +232 -0
- package/styles/schedule/icons/_tailwind-dark.scss +1 -231
- package/styles/schedule/icons/_tailwind.scss +231 -231
- package/styles/schedule/material-dark.css +72 -75
- package/styles/schedule/material.css +32 -41
- package/styles/schedule/tailwind-dark.css +53 -71
- package/styles/schedule/tailwind-dark.scss +0 -1
- package/styles/schedule/tailwind.css +53 -70
- package/styles/tailwind-dark.css +53 -75
- package/styles/tailwind.css +53 -74
|
@@ -0,0 +1,479 @@
|
|
|
1
|
+
/*! recurrence editor theme wise definitions*/
|
|
2
|
+
/*! Recurrence-Editor component layout */
|
|
3
|
+
.e-recurrenceeditor .e-editor {
|
|
4
|
+
display: -ms-flexbox;
|
|
5
|
+
display: flex;
|
|
6
|
+
-ms-flex-flow: row wrap;
|
|
7
|
+
flex-flow: row wrap;
|
|
8
|
+
margin-left: auto;
|
|
9
|
+
margin-right: auto;
|
|
10
|
+
max-width: 1240px;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.e-recurrenceeditor .e-recurrence-table {
|
|
14
|
+
table-layout: fixed;
|
|
15
|
+
width: 100%;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.e-recurrenceeditor .e-recurrence-table.e-repeat-content-wrapper td:last-child {
|
|
19
|
+
width: 27%;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
23
|
+
width: 24%;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.e-recurrenceeditor .e-recurrence-table .e-repeat-content {
|
|
27
|
+
display: inline-block;
|
|
28
|
+
font-weight: normal;
|
|
29
|
+
padding: 18px 0 0 8px;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.e-recurrenceeditor .e-recurrence-table .e-input-wrapper {
|
|
33
|
+
float: none;
|
|
34
|
+
width: 100%;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.e-recurrenceeditor .e-recurrence-table .e-week-position {
|
|
38
|
+
position: relative;
|
|
39
|
+
right: 16px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
43
|
+
padding-left: 10px;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.e-recurrenceeditor .e-input-wrapper-side.e-form-left {
|
|
47
|
+
padding: 0 8px 16px 0;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.e-recurrenceeditor .e-form-left {
|
|
51
|
+
padding: 0 8px 16px 0;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.e-recurrenceeditor .e-form-right,
|
|
55
|
+
.e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
56
|
+
padding: 0 0 10px 8px;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.e-recurrenceeditor .e-input-wrapper {
|
|
60
|
+
float: left;
|
|
61
|
+
width: 50%;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.e-recurrenceeditor .e-input-wrapper div {
|
|
65
|
+
margin-bottom: 2.5%;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.e-recurrenceeditor .e-input-wrapper.e-end-on-date,
|
|
69
|
+
.e-recurrenceeditor .e-input-wrapper.e-end-on-count {
|
|
70
|
+
padding-right: 0;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.e-recurrenceeditor.e-rtl .e-end-on > div,
|
|
74
|
+
.e-recurrenceeditor.e-rtl .e-month-expander > div > div {
|
|
75
|
+
float: right;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.e-recurrenceeditor.e-rtl .e-form-left,
|
|
79
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-left {
|
|
80
|
+
padding: 0 0 10px 8px;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.e-recurrenceeditor.e-rtl .e-form-right,
|
|
84
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-right {
|
|
85
|
+
padding: 0 8px 10px 0;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
89
|
+
padding-left: 0;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.e-recurrenceeditor.e-rtl .e-week-position {
|
|
93
|
+
padding-left: 16px;
|
|
94
|
+
right: 0;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
|
|
98
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
99
|
+
padding-right: 0;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.e-recurrenceeditor.e-rtl .e-end-on-label {
|
|
103
|
+
margin-bottom: 5px;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
107
|
+
padding-left: 8px;
|
|
108
|
+
padding-right: 0;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
112
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
113
|
+
padding-left: 0;
|
|
114
|
+
padding-right: 8px;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
118
|
+
width: 0;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.e-recurrenceeditor .e-days .e-week-expander-label {
|
|
122
|
+
font-size: 14px;
|
|
123
|
+
font-weight: 400;
|
|
124
|
+
margin-bottom: 8px;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.e-recurrenceeditor .e-days button {
|
|
128
|
+
border-radius: 50%;
|
|
129
|
+
-ms-flex-flow: row wrap;
|
|
130
|
+
flex-flow: row wrap;
|
|
131
|
+
height: 35px;
|
|
132
|
+
margin: 0 8px 10px;
|
|
133
|
+
width: 35px;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.e-recurrenceeditor .e-hide-recurrence-element {
|
|
137
|
+
display: none;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.e-recurrenceeditor .e-half-space {
|
|
141
|
+
width: 20%;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.e-recurrenceeditor .e-year-expander {
|
|
145
|
+
margin-bottom: 11px;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper {
|
|
149
|
+
margin-bottom: 11px;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper {
|
|
153
|
+
margin-top: -3px;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
|
|
157
|
+
display: none;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.e-recurrenceeditor .e-input-wrapper-side {
|
|
161
|
+
float: left;
|
|
162
|
+
padding: 16px 20px 0;
|
|
163
|
+
width: 50%;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
167
|
+
float: none;
|
|
168
|
+
font-size: 14px;
|
|
169
|
+
font-weight: 400;
|
|
170
|
+
margin-bottom: 7px;
|
|
171
|
+
padding-right: 16px;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
175
|
+
padding-right: 16px;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-input-wrapper {
|
|
179
|
+
margin: 0;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
183
|
+
font-size: 14px;
|
|
184
|
+
font-weight: 400;
|
|
185
|
+
margin-bottom: 7px;
|
|
186
|
+
padding-right: 16px;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
|
|
190
|
+
padding-bottom: 6px;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.e-recurrenceeditor .e-input-wrapper-side .e-non-week .e-form-left {
|
|
194
|
+
padding-bottom: 12px;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
198
|
+
margin-bottom: 11px;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.e-bigger .e-recurrenceeditor {
|
|
202
|
+
padding: 0;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
|
|
206
|
+
padding: 0 12px 11px 0;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.e-bigger .e-recurrenceeditor .e-form-left {
|
|
210
|
+
padding: 0 12px 14px 0;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.e-bigger .e-recurrenceeditor .e-form-right,
|
|
214
|
+
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
215
|
+
padding: 0 0 10px 12px;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.e-bigger .e-recurrenceeditor .e-recurrence-table .e-week-position {
|
|
219
|
+
right: 24px;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
|
|
223
|
+
padding-bottom: 6px;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.e-bigger .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
227
|
+
padding-left: 70px;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.e-bigger .e-recurrenceeditor .e-week-position {
|
|
231
|
+
padding-left: 55px;
|
|
232
|
+
padding-right: 0;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
236
|
+
font-size: 16px;
|
|
237
|
+
margin-bottom: 0;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.e-bigger .e-recurrenceeditor .e-end-on-label {
|
|
241
|
+
margin-bottom: 0;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.e-bigger .e-recurrenceeditor .e-days .e-week-expander-label {
|
|
245
|
+
font-size: 16px;
|
|
246
|
+
margin-bottom: 8px;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-non-week .e-form-left {
|
|
250
|
+
padding-bottom: 12px;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
254
|
+
font-size: 16px;
|
|
255
|
+
margin-bottom: 1px;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.e-bigger .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper,
|
|
259
|
+
.e-bigger .e-recurrenceeditor .e-year-expander,
|
|
260
|
+
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
261
|
+
margin-bottom: 11px;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.e-bigger .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
265
|
+
width: 0;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.e-bigger .e-recurrenceeditor .e-days button {
|
|
269
|
+
height: 40px;
|
|
270
|
+
width: 40px;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.e-bigger .e-recurrenceeditor.e-rtl .e-form-left,
|
|
274
|
+
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-left {
|
|
275
|
+
padding: 0 0 10px 12px;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
.e-bigger .e-recurrenceeditor.e-rtl .e-form-right,
|
|
279
|
+
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-right {
|
|
280
|
+
padding: 0 12px 10px 0;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
284
|
+
padding-left: 0;
|
|
285
|
+
padding-right: 64px;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
|
|
289
|
+
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
290
|
+
padding-right: 0;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.e-bigger .e-recurrenceeditor.e-rtl .e-end-on-label {
|
|
294
|
+
margin-bottom: 5px;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
298
|
+
padding-left: 12px;
|
|
299
|
+
padding-right: 0;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
303
|
+
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
304
|
+
padding-left: 0;
|
|
305
|
+
padding-right: 12px;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
|
|
309
|
+
right: 33px;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.e-bigger .e-recurrenceeditor.e-rtl .e-week-position {
|
|
313
|
+
padding-left: 46px;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.e-device .e-recurrenceeditor .e-recurrence-table.e-repeat-content-wrapper td:last-child {
|
|
317
|
+
width: 25%;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.e-device .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
321
|
+
width: 20%;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.e-device .e-recurrenceeditor .e-week-expander-label {
|
|
325
|
+
margin-bottom: 6px;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.e-device .e-recurrenceeditor .e-month-expander-label {
|
|
329
|
+
font-size: 12px;
|
|
330
|
+
margin-bottom: 5px;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.e-device .e-recurrenceeditor .e-footer-content {
|
|
334
|
+
padding: 12px;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.e-device .e-recurrenceeditor .e-form-left,
|
|
338
|
+
.e-device .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
|
|
339
|
+
padding: 0 3px 10px 0;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.e-device .e-recurrenceeditor .e-form-right,
|
|
343
|
+
.e-device .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
344
|
+
padding: 0 0 10px 3px;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
.e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
|
|
348
|
+
.e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
|
|
349
|
+
padding-left: 10px;
|
|
350
|
+
padding-right: 0;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.e-device .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
354
|
+
padding-right: 10px;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.e-device .e-recurrenceeditor.e-end-on {
|
|
358
|
+
padding-right: 0;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.e-device .e-recurrenceeditor.e-end-on .e-end-on-label {
|
|
362
|
+
float: none;
|
|
363
|
+
font-size: 12px;
|
|
364
|
+
font-weight: 400;
|
|
365
|
+
margin-bottom: 7px;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.e-device .e-recurrenceeditor.e-end-on .e-end-on-left {
|
|
369
|
+
padding-right: 0;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
373
|
+
padding-right: 0;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
377
|
+
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
378
|
+
padding-left: 0;
|
|
379
|
+
padding-right: 10px;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
.e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
383
|
+
padding-left: 0;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.e-device .e-recurrenceeditor.e-rtl .e-week-position {
|
|
387
|
+
padding-left: 16px;
|
|
388
|
+
padding-right: 0;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
.e-device .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
392
|
+
padding-left: 20px;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.e-device .e-recurrenceeditor .e-week-position {
|
|
396
|
+
padding-left: 0;
|
|
397
|
+
padding-right: 0;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.e-device .e-recurrenceeditor .e-week-position {
|
|
401
|
+
padding-left: 0;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.e-device.e-recurrence-dialog .e-dlg-header-content {
|
|
405
|
+
background: none;
|
|
406
|
+
box-shadow: none;
|
|
407
|
+
padding-bottom: 10px;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
.e-device.e-recurrence-dialog .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
411
|
+
margin-bottom: 7px;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
.e-device.e-recurrence-dialog .e-footer-content {
|
|
415
|
+
padding: 16px 8px;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
@media (max-width: 580px) {
|
|
419
|
+
.e-recurrenceeditor {
|
|
420
|
+
margin-left: auto;
|
|
421
|
+
margin-right: auto;
|
|
422
|
+
width: 100%;
|
|
423
|
+
}
|
|
424
|
+
.e-recurrenceeditor .e-editor {
|
|
425
|
+
-ms-flex-direction: column;
|
|
426
|
+
flex-direction: column;
|
|
427
|
+
}
|
|
428
|
+
.e-recurrenceeditor .e-editor > .e-input-wrapper.e-form-left {
|
|
429
|
+
margin-top: 0;
|
|
430
|
+
}
|
|
431
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
|
|
432
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
433
|
+
margin-bottom: 7px;
|
|
434
|
+
}
|
|
435
|
+
.e-recurrenceeditor .e-editor > div {
|
|
436
|
+
margin-top: 20px;
|
|
437
|
+
}
|
|
438
|
+
.e-recurrenceeditor .e-editor > .e-input-wrapper {
|
|
439
|
+
width: 100%;
|
|
440
|
+
}
|
|
441
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on {
|
|
442
|
+
width: 100%;
|
|
443
|
+
}
|
|
444
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-input-wrapper {
|
|
445
|
+
width: 50%;
|
|
446
|
+
}
|
|
447
|
+
.e-recurrenceeditor .e-editor .e-form-left,
|
|
448
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
|
|
449
|
+
padding: 0 0 10px;
|
|
450
|
+
}
|
|
451
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
|
|
452
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
|
|
453
|
+
padding-left: 10px;
|
|
454
|
+
padding-right: 0;
|
|
455
|
+
}
|
|
456
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
457
|
+
padding-right: 10px;
|
|
458
|
+
}
|
|
459
|
+
.e-recurrenceeditor .e-editor .e-form-right,
|
|
460
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
|
|
461
|
+
padding-left: 0;
|
|
462
|
+
}
|
|
463
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-days {
|
|
464
|
+
width: 100%;
|
|
465
|
+
}
|
|
466
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
|
|
467
|
+
width: 100%;
|
|
468
|
+
}
|
|
469
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
470
|
+
padding-right: 0;
|
|
471
|
+
}
|
|
472
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
473
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
474
|
+
padding-left: 0;
|
|
475
|
+
padding-right: 10px;
|
|
476
|
+
}
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
/*! Recurrence-Editor component theme */
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*! Schedule component's bootstrap theme definitions and variables */
|
|
2
|
-
$schedule-skin:
|
|
2
|
+
$schedule-skin: $skin-name !default;
|
|
3
3
|
$schedule-header-bg-color: $grey-base !default;
|
|
4
4
|
$schedule-header-border-color: $grey-99 !default;
|
|
5
5
|
$schedule-header-font-color: $grey-dark-font !default;
|
|
@@ -48,8 +48,8 @@ $schedule-date-header-wrap-device-font-size: 14px !default;
|
|
|
48
48
|
$schedule-appointment-bg-color: $brand-primary !default;
|
|
49
49
|
$schedule-appointment-details-padding: 0 4px !default;
|
|
50
50
|
$schedule-appointment-font-color: $brand-primary-font !default;
|
|
51
|
-
$schedule-appointment-border-color:
|
|
52
|
-
$schedule-appointment-border-radius:
|
|
51
|
+
$schedule-appointment-border-color: $grey-base !default;
|
|
52
|
+
$schedule-appointment-border-radius: 4px !default;
|
|
53
53
|
$schedule-appointment-selected-border: 1px solid #fff !default;
|
|
54
54
|
$schedule-appointment-active-border-color: $brand-primary-font !default;
|
|
55
55
|
$schedule-month-agenda-app-indicator-color: $grey-light-font !default;
|
|
@@ -140,7 +140,7 @@ $schedule-popup-icon-hover-bg-color: $schedule-select-bg-color !default;
|
|
|
140
140
|
$schedule-popup-content-icon-color: $grey-dark-font !default;
|
|
141
141
|
$schedule-event-popup-content-padding: 0 18px 16px 26px !default;
|
|
142
142
|
$schedule-event-popup-fields-padding: 12px !default;
|
|
143
|
-
$schedule-popup-title-color:
|
|
143
|
+
$schedule-popup-title-color: $grey-light !default;
|
|
144
144
|
$schedule-popup-btn-border: none !default;
|
|
145
145
|
$schedule-btn-txt-bgr-padding: 5px 12px !default;
|
|
146
146
|
$schedule-icon-color: $grey-light-font !default;
|
|
@@ -149,7 +149,7 @@ $schedule-event-box-shadow-1: 0 6px 10px 0 rgba($shadow, .14) !default;
|
|
|
149
149
|
$schedule-event-box-shadow-2: 0 1px 18px 0 rgba($shadow, .12) !default;
|
|
150
150
|
$schedule-event-box-shadow-3: 0 3px 5px -1px rgba($shadow, .2) !default;
|
|
151
151
|
$schedule-more-indicator-shadow-color: $shadow-color !default;
|
|
152
|
-
$schedule-more-indicator-nrml-font-size:
|
|
152
|
+
$schedule-more-indicator-nrml-font-size: 11px !default;
|
|
153
153
|
$schedule-more-popup-close-margin-top: 3px !default;
|
|
154
154
|
$schedule-more-popup-padding: 8px 0 !default;
|
|
155
155
|
$schedule-more-appointment-margin-bottom: 2px !default;
|
|
@@ -164,7 +164,7 @@ $schedule-timeline-work-cells-border: 0 0 1px 1px !default;
|
|
|
164
164
|
$schedule-rtl-timeline-work-cells-border: 0 1px 1px 0 !default;
|
|
165
165
|
$schedule-timeline-resources-width: 200px !default;
|
|
166
166
|
$schedule-timeline-appointment-height: 38px !default;
|
|
167
|
-
$schedule-timeline-year-work-cells-height:
|
|
167
|
+
$schedule-timeline-year-work-cells-height: 75px !default;
|
|
168
168
|
$schedule-timeline-year-work-cells-width: 100px !default;
|
|
169
169
|
|
|
170
170
|
$schedule-tree-bg-color: $content-bg-color !default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*! Schedule component's bootstrap theme definitions and variables */
|
|
2
|
-
$schedule-skin:
|
|
2
|
+
$schedule-skin: $skin-name !default;
|
|
3
3
|
$schedule-header-bg-color: $grey-white !default;
|
|
4
4
|
$schedule-header-border-color: $grey-dd !default;
|
|
5
5
|
$schedule-header-font-color: $grey-light-font !default;
|
|
@@ -164,7 +164,7 @@ $schedule-timeline-work-cells-border: 0 0 1px 1px !default;
|
|
|
164
164
|
$schedule-rtl-timeline-work-cells-border: 0 1px 1px 0 !default;
|
|
165
165
|
$schedule-timeline-resources-width: 200px !default;
|
|
166
166
|
$schedule-timeline-appointment-height: 38px !default;
|
|
167
|
-
$schedule-timeline-year-work-cells-height:
|
|
167
|
+
$schedule-timeline-year-work-cells-height: 75px !default;
|
|
168
168
|
$schedule-timeline-year-work-cells-width: 100px !default;
|
|
169
169
|
|
|
170
170
|
$schedule-tree-bg-color: $content-bg-color !default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*! Schedule component's bootstrap4 theme definitions and variables */
|
|
2
2
|
$border-type: solid !default;
|
|
3
3
|
$border-size: 1px !default;
|
|
4
|
-
$schedule-skin:
|
|
4
|
+
$schedule-skin: $skin-name !default;
|
|
5
5
|
$schedule-header-bg-color: $content-bg !default;
|
|
6
6
|
$schedule-header-border-color: $gray-300 !default;
|
|
7
7
|
$schedule-header-font-color: $gray-900 !default;
|
|
@@ -12,7 +12,7 @@ $schedule-primary-content-font-color: $gray-900 !default;
|
|
|
12
12
|
$schedule-secondary-content-font-color: $gray-600 !default;
|
|
13
13
|
$schedule-select-font-color: $schedule-primary-content-font-color !default;
|
|
14
14
|
$schedule-select-bg-color: $gray-200 !default;
|
|
15
|
-
$schedule-work-cells-bg-color: $gray-100
|
|
15
|
+
$schedule-work-cells-bg-color: $gray-100 !default;
|
|
16
16
|
$schedule-current-date-bg-color: $primary !default;
|
|
17
17
|
$schedule-disable-dates-color: rgba($black, .08) !default;
|
|
18
18
|
$schedule-disable-font-color: $primary-font !default;
|
|
@@ -21,7 +21,7 @@ $schedule-hover-bg-color: darken($gray-100, 2%) !default;
|
|
|
21
21
|
$schedule-hover-font-color: $gray-900 !default;
|
|
22
22
|
$schedule-active-color: $primary-font !default;
|
|
23
23
|
$schedule-active-border-color: $primary !default;
|
|
24
|
-
$schedule-active-font-color: $primary
|
|
24
|
+
$schedule-active-font-color: $primary !default;
|
|
25
25
|
|
|
26
26
|
$schedule-timezone-enable-nrml-height: 60px !default;
|
|
27
27
|
$schedule-timezone-enable-bgr-height: 64px !default;
|
|
@@ -47,7 +47,7 @@ $schedule-date-header-wrap-bgr-font-size: 16px !default;
|
|
|
47
47
|
$schedule-date-header-wrap-device-font-size: 14px !default;
|
|
48
48
|
|
|
49
49
|
$schedule-appointment-details-padding: 4px 8px 0 !default;
|
|
50
|
-
$schedule-appointment-bg-color:
|
|
50
|
+
$schedule-appointment-bg-color: $primary !default;
|
|
51
51
|
$schedule-appointment-font-color: $primary-font !default;
|
|
52
52
|
$schedule-appointment-border-color: lighten($schedule-appointment-bg-color, 40%) !default;
|
|
53
53
|
$schedule-appointment-border-radius: 4px !default;
|
|
@@ -166,7 +166,7 @@ $schedule-timeline-work-cells-border: 0 0 1px 1px !default;
|
|
|
166
166
|
$schedule-rtl-timeline-work-cells-border: 0 1px 1px 0 !default;
|
|
167
167
|
$schedule-timeline-resources-width: 224px !default;
|
|
168
168
|
$schedule-timeline-appointment-height: 38px !default;
|
|
169
|
-
$schedule-timeline-year-work-cells-height:
|
|
169
|
+
$schedule-timeline-year-work-cells-height: 75px !default;
|
|
170
170
|
$schedule-timeline-year-work-cells-width: 100px !default;
|
|
171
171
|
|
|
172
172
|
$schedule-tree-bg-color: $gray-100 !default;
|
|
@@ -190,4 +190,5 @@ $schedule-bigger-resource-color-size: 16px !default;
|
|
|
190
190
|
@mixin tbar-btn-animation-after {
|
|
191
191
|
content: '';
|
|
192
192
|
}
|
|
193
|
+
|
|
193
194
|
$schedule-tbar-border-hover-color: darken($gray-600, 12.5%) !default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './bootstrap5-definition.scss';
|