@syncfusion/ej2-schedule 23.2.7 → 24.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/README.md +1 -1
- 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 +272 -34
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +335 -64
- 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 +16 -16
- package/src/recurrence-editor/recurrence-editor.js +4 -2
- package/src/schedule/actions/drag.js +4 -4
- package/src/schedule/base/schedule-model.d.ts +15 -1
- package/src/schedule/base/schedule.d.ts +14 -1
- package/src/schedule/base/schedule.js +5 -0
- package/src/schedule/base/type.d.ts +12 -0
- package/src/schedule/event-renderer/agenda-base.js +1 -1
- package/src/schedule/event-renderer/event-base.d.ts +1 -0
- package/src/schedule/event-renderer/event-base.js +25 -1
- package/src/schedule/event-renderer/month.js +9 -1
- package/src/schedule/event-renderer/timeline-view.js +8 -2
- package/src/schedule/event-renderer/year.js +12 -3
- package/src/schedule/models/models.d.ts +1 -0
- package/src/schedule/models/toolbar-model.d.ts +196 -0
- package/src/schedule/models/toolbar.d.ts +176 -0
- package/src/schedule/models/toolbar.js +85 -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.js +4 -10
- package/src/schedule/popups/quick-popups.js +2 -2
- package/src/schedule/renderer/header-renderer.d.ts +2 -0
- package/src/schedule/renderer/header-renderer.js +142 -4
- package/src/schedule/renderer/renderer.js +1 -1
- package/src/schedule/renderer/vertical-view.js +3 -3
- package/src/schedule/renderer/year.js +3 -0
- package/styles/bootstrap-dark.css +26 -22
- package/styles/bootstrap.css +26 -22
- package/styles/bootstrap4.css +25 -21
- package/styles/bootstrap5-dark.css +30 -26
- package/styles/bootstrap5.css +30 -26
- package/styles/fabric-dark.css +28 -24
- package/styles/fabric.css +28 -24
- package/styles/fluent-dark.css +28 -24
- package/styles/fluent.css +28 -24
- package/styles/highcontrast-light.css +26 -22
- package/styles/highcontrast.css +26 -22
- package/styles/material-dark.css +26 -22
- package/styles/material.css +26 -22
- package/styles/material3-dark.css +29 -25
- package/styles/material3.css +29 -25
- package/styles/recurrence-editor/_bootstrap-dark-definition.scss +3 -1
- package/styles/recurrence-editor/_bootstrap-definition.scss +3 -1
- package/styles/recurrence-editor/_bootstrap4-definition.scss +3 -1
- package/styles/recurrence-editor/_bootstrap5-definition.scss +5 -3
- package/styles/recurrence-editor/_fabric-dark-definition.scss +4 -2
- package/styles/recurrence-editor/_fabric-definition.scss +4 -2
- package/styles/recurrence-editor/_fluent-definition.scss +4 -2
- package/styles/recurrence-editor/_fusionnew-definition.scss +4 -2
- package/styles/recurrence-editor/_highcontrast-definition.scss +3 -1
- package/styles/recurrence-editor/_highcontrast-light-definition.scss +3 -1
- package/styles/recurrence-editor/_layout.scss +3 -10
- package/styles/recurrence-editor/_material-dark-definition.scss +3 -1
- package/styles/recurrence-editor/_material-definition.scss +3 -1
- package/styles/recurrence-editor/_material3-definition.scss +4 -2
- package/styles/recurrence-editor/_tailwind-definition.scss +5 -3
- package/styles/recurrence-editor/bootstrap-dark.css +5 -10
- package/styles/recurrence-editor/bootstrap.css +5 -10
- package/styles/recurrence-editor/bootstrap4.css +4 -9
- package/styles/recurrence-editor/bootstrap5-dark.css +9 -14
- package/styles/recurrence-editor/bootstrap5.css +9 -14
- package/styles/recurrence-editor/fabric-dark.css +7 -12
- package/styles/recurrence-editor/fabric.css +7 -12
- package/styles/recurrence-editor/fluent-dark.css +7 -12
- package/styles/recurrence-editor/fluent.css +7 -12
- package/styles/recurrence-editor/highcontrast-light.css +5 -10
- package/styles/recurrence-editor/highcontrast.css +5 -10
- package/styles/recurrence-editor/material-dark.css +5 -10
- package/styles/recurrence-editor/material.css +5 -10
- package/styles/recurrence-editor/material3-dark.css +7 -12
- package/styles/recurrence-editor/material3.css +7 -12
- package/styles/recurrence-editor/tailwind-dark.css +9 -14
- package/styles/recurrence-editor/tailwind.css +9 -14
- package/styles/schedule/_bootstrap-dark-definition.scss +6 -2
- package/styles/schedule/_bootstrap-definition.scss +6 -2
- package/styles/schedule/_bootstrap4-definition.scss +6 -2
- package/styles/schedule/_bootstrap5-definition.scss +6 -2
- package/styles/schedule/_fabric-dark-definition.scss +6 -2
- package/styles/schedule/_fabric-definition.scss +6 -2
- package/styles/schedule/_fluent-definition.scss +6 -2
- package/styles/schedule/_fusionnew-definition.scss +6 -2
- package/styles/schedule/_highcontrast-definition.scss +6 -2
- package/styles/schedule/_highcontrast-light-definition.scss +6 -2
- package/styles/schedule/_layout.scss +23 -10
- package/styles/schedule/_material-dark-definition.scss +6 -2
- package/styles/schedule/_material-definition.scss +6 -2
- package/styles/schedule/_material3-definition.scss +6 -2
- package/styles/schedule/_tailwind-definition.scss +6 -2
- package/styles/schedule/bootstrap-dark.css +21 -12
- package/styles/schedule/bootstrap.css +21 -12
- package/styles/schedule/bootstrap4.css +21 -12
- package/styles/schedule/bootstrap5-dark.css +21 -12
- package/styles/schedule/bootstrap5.css +21 -12
- package/styles/schedule/fabric-dark.css +21 -12
- package/styles/schedule/fabric.css +21 -12
- package/styles/schedule/fluent-dark.css +21 -12
- package/styles/schedule/fluent.css +21 -12
- package/styles/schedule/highcontrast-light.css +21 -12
- package/styles/schedule/highcontrast.css +21 -12
- package/styles/schedule/material-dark.css +21 -12
- package/styles/schedule/material.css +21 -12
- package/styles/schedule/material3-dark.css +22 -13
- package/styles/schedule/material3.css +22 -13
- package/styles/schedule/tailwind-dark.css +22 -13
- package/styles/schedule/tailwind.css +22 -13
- package/styles/tailwind-dark.css +31 -27
- package/styles/tailwind.css +31 -27
package/styles/tailwind-dark.css
CHANGED
|
@@ -1144,7 +1144,7 @@
|
|
|
1144
1144
|
text-decoration: none;
|
|
1145
1145
|
}
|
|
1146
1146
|
.e-schedule.e-device .e-vertical-view .e-left-indent {
|
|
1147
|
-
width:
|
|
1147
|
+
width: 60px;
|
|
1148
1148
|
}
|
|
1149
1149
|
.e-schedule.e-device .e-vertical-view .e-clone-time-indicator,
|
|
1150
1150
|
.e-schedule.e-device .e-vertical-view .e-current-time {
|
|
@@ -1152,7 +1152,7 @@
|
|
|
1152
1152
|
}
|
|
1153
1153
|
.e-schedule.e-device .e-vertical-view .e-time-cells-wrap {
|
|
1154
1154
|
float: left;
|
|
1155
|
-
width:
|
|
1155
|
+
width: 60px;
|
|
1156
1156
|
}
|
|
1157
1157
|
.e-schedule.e-device .e-vertical-view .e-time-cells-wrap table td {
|
|
1158
1158
|
font-size: 12px;
|
|
@@ -1190,7 +1190,7 @@
|
|
|
1190
1190
|
}
|
|
1191
1191
|
@media screen and (max-width: 480px) {
|
|
1192
1192
|
.e-schedule .e-vertical-view .e-left-indent {
|
|
1193
|
-
width:
|
|
1193
|
+
width: 60px;
|
|
1194
1194
|
}
|
|
1195
1195
|
}
|
|
1196
1196
|
.e-schedule .e-month-view .e-left-indent,
|
|
@@ -3340,8 +3340,8 @@
|
|
|
3340
3340
|
background: #1f2937;
|
|
3341
3341
|
border: 0;
|
|
3342
3342
|
color: #d1d5db;
|
|
3343
|
-
height:
|
|
3344
|
-
width:
|
|
3343
|
+
height: 35px;
|
|
3344
|
+
width: 35px;
|
|
3345
3345
|
}
|
|
3346
3346
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close:focus, .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close:hover,
|
|
3347
3347
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit:focus,
|
|
@@ -3353,15 +3353,15 @@
|
|
|
3353
3353
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-subject {
|
|
3354
3354
|
font-size: 15px;
|
|
3355
3355
|
font-weight: 500;
|
|
3356
|
-
height:
|
|
3356
|
+
height: 35px;
|
|
3357
3357
|
line-height: 2.25;
|
|
3358
|
-
padding:
|
|
3359
|
-
width: calc(100% -
|
|
3358
|
+
padding: 2px 5px;
|
|
3359
|
+
width: calc(100% - 105px);
|
|
3360
3360
|
}
|
|
3361
3361
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close-icon,
|
|
3362
3362
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit-icon,
|
|
3363
3363
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-delete-icon {
|
|
3364
|
-
font-size:
|
|
3364
|
+
font-size: 18px;
|
|
3365
3365
|
}
|
|
3366
3366
|
.e-quick-popup-wrapper.e-device.e-rtl .e-event-popup .e-popup-header .e-close {
|
|
3367
3367
|
margin-left: auto;
|
|
@@ -3390,9 +3390,13 @@
|
|
|
3390
3390
|
.e-bigger .e-quick-popup-wrapper.e-rtl .e-event-popup .e-date-time-icon {
|
|
3391
3391
|
padding-right: 16px;
|
|
3392
3392
|
}
|
|
3393
|
-
.e-bigger .e-quick-popup-wrapper .e-
|
|
3394
|
-
|
|
3395
|
-
|
|
3393
|
+
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-close.e-btn.e-small.e-round {
|
|
3394
|
+
height: 2em;
|
|
3395
|
+
width: 2em;
|
|
3396
|
+
}
|
|
3397
|
+
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-edit.e-btn.e-small.e-round,
|
|
3398
|
+
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-delete.e-btn.e-small.e-round,
|
|
3399
|
+
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-close.e-btn.e-small.e-round {
|
|
3396
3400
|
height: 2em;
|
|
3397
3401
|
width: 2em;
|
|
3398
3402
|
}
|
|
@@ -3406,8 +3410,13 @@
|
|
|
3406
3410
|
.e-bigger .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete-icon {
|
|
3407
3411
|
font-size: 14px;
|
|
3408
3412
|
}
|
|
3413
|
+
.e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit.e-btn.e-small.e-round,
|
|
3414
|
+
.e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-delete.e-btn.e-small.e-round,
|
|
3415
|
+
.e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close.e-btn.e-small.e-round {
|
|
3416
|
+
height: 35px;
|
|
3417
|
+
}
|
|
3409
3418
|
.e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-subject {
|
|
3410
|
-
padding:
|
|
3419
|
+
padding: 2px 5px;
|
|
3411
3420
|
}
|
|
3412
3421
|
|
|
3413
3422
|
.e-bigger .e-agenda-view .e-appointment {
|
|
@@ -4189,6 +4198,7 @@
|
|
|
4189
4198
|
.e-recurrenceeditor .e-input-wrapper.e-end-on-date,
|
|
4190
4199
|
.e-recurrenceeditor .e-input-wrapper.e-end-on-count {
|
|
4191
4200
|
padding-right: 0;
|
|
4201
|
+
margin-top: 24px;
|
|
4192
4202
|
}
|
|
4193
4203
|
.e-recurrenceeditor.e-rtl .e-end-on > div,
|
|
4194
4204
|
.e-recurrenceeditor.e-rtl .e-month-expander > div > div {
|
|
@@ -4228,8 +4238,8 @@
|
|
|
4228
4238
|
width: 30px;
|
|
4229
4239
|
}
|
|
4230
4240
|
.e-recurrenceeditor .e-days .e-week-expander-label {
|
|
4231
|
-
font-size:
|
|
4232
|
-
font-weight:
|
|
4241
|
+
font-size: 12px;
|
|
4242
|
+
font-weight: 500;
|
|
4233
4243
|
margin-bottom: 8px;
|
|
4234
4244
|
}
|
|
4235
4245
|
.e-recurrenceeditor .e-days button {
|
|
@@ -4263,13 +4273,6 @@
|
|
|
4263
4273
|
padding: 16px 20px 0;
|
|
4264
4274
|
width: 50%;
|
|
4265
4275
|
}
|
|
4266
|
-
.e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
4267
|
-
float: none;
|
|
4268
|
-
font-size: 14px;
|
|
4269
|
-
font-weight: 400;
|
|
4270
|
-
margin-bottom: 7px;
|
|
4271
|
-
padding-right: 16px;
|
|
4272
|
-
}
|
|
4273
4276
|
.e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4274
4277
|
padding-right: 16px;
|
|
4275
4278
|
}
|
|
@@ -4277,9 +4280,9 @@
|
|
|
4277
4280
|
margin: 0;
|
|
4278
4281
|
}
|
|
4279
4282
|
.e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
4280
|
-
font-size:
|
|
4281
|
-
font-weight:
|
|
4282
|
-
margin-bottom:
|
|
4283
|
+
font-size: 12px;
|
|
4284
|
+
font-weight: 500;
|
|
4285
|
+
margin-bottom: 6px;
|
|
4283
4286
|
padding-right: 16px;
|
|
4284
4287
|
}
|
|
4285
4288
|
.e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
|
|
@@ -4322,6 +4325,7 @@
|
|
|
4322
4325
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
4323
4326
|
font-size: 16px;
|
|
4324
4327
|
margin-bottom: 0;
|
|
4328
|
+
font-weight: 500;
|
|
4325
4329
|
}
|
|
4326
4330
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4327
4331
|
padding-right: 2px;
|
|
@@ -4419,7 +4423,7 @@
|
|
|
4419
4423
|
.e-device .e-recurrenceeditor.e-end-on .e-end-on-label {
|
|
4420
4424
|
float: none;
|
|
4421
4425
|
font-size: 12px;
|
|
4422
|
-
font-weight:
|
|
4426
|
+
font-weight: 500;
|
|
4423
4427
|
margin-bottom: 7px;
|
|
4424
4428
|
}
|
|
4425
4429
|
.e-device .e-recurrenceeditor.e-end-on .e-end-on-left {
|
|
@@ -4487,7 +4491,7 @@
|
|
|
4487
4491
|
}
|
|
4488
4492
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
|
|
4489
4493
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
4490
|
-
margin-bottom:
|
|
4494
|
+
margin-bottom: 6px;
|
|
4491
4495
|
}
|
|
4492
4496
|
.e-recurrenceeditor .e-editor > div {
|
|
4493
4497
|
margin-top: 20px;
|
package/styles/tailwind.css
CHANGED
|
@@ -1144,7 +1144,7 @@
|
|
|
1144
1144
|
text-decoration: none;
|
|
1145
1145
|
}
|
|
1146
1146
|
.e-schedule.e-device .e-vertical-view .e-left-indent {
|
|
1147
|
-
width:
|
|
1147
|
+
width: 60px;
|
|
1148
1148
|
}
|
|
1149
1149
|
.e-schedule.e-device .e-vertical-view .e-clone-time-indicator,
|
|
1150
1150
|
.e-schedule.e-device .e-vertical-view .e-current-time {
|
|
@@ -1152,7 +1152,7 @@
|
|
|
1152
1152
|
}
|
|
1153
1153
|
.e-schedule.e-device .e-vertical-view .e-time-cells-wrap {
|
|
1154
1154
|
float: left;
|
|
1155
|
-
width:
|
|
1155
|
+
width: 60px;
|
|
1156
1156
|
}
|
|
1157
1157
|
.e-schedule.e-device .e-vertical-view .e-time-cells-wrap table td {
|
|
1158
1158
|
font-size: 12px;
|
|
@@ -1190,7 +1190,7 @@
|
|
|
1190
1190
|
}
|
|
1191
1191
|
@media screen and (max-width: 480px) {
|
|
1192
1192
|
.e-schedule .e-vertical-view .e-left-indent {
|
|
1193
|
-
width:
|
|
1193
|
+
width: 60px;
|
|
1194
1194
|
}
|
|
1195
1195
|
}
|
|
1196
1196
|
.e-schedule .e-month-view .e-left-indent,
|
|
@@ -3340,8 +3340,8 @@
|
|
|
3340
3340
|
background: #fff;
|
|
3341
3341
|
border: 0;
|
|
3342
3342
|
color: #6b7280;
|
|
3343
|
-
height:
|
|
3344
|
-
width:
|
|
3343
|
+
height: 35px;
|
|
3344
|
+
width: 35px;
|
|
3345
3345
|
}
|
|
3346
3346
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close:focus, .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close:hover,
|
|
3347
3347
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit:focus,
|
|
@@ -3353,15 +3353,15 @@
|
|
|
3353
3353
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-subject {
|
|
3354
3354
|
font-size: 15px;
|
|
3355
3355
|
font-weight: 500;
|
|
3356
|
-
height:
|
|
3356
|
+
height: 35px;
|
|
3357
3357
|
line-height: 2.25;
|
|
3358
|
-
padding:
|
|
3359
|
-
width: calc(100% -
|
|
3358
|
+
padding: 2px 5px;
|
|
3359
|
+
width: calc(100% - 105px);
|
|
3360
3360
|
}
|
|
3361
3361
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close-icon,
|
|
3362
3362
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit-icon,
|
|
3363
3363
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-delete-icon {
|
|
3364
|
-
font-size:
|
|
3364
|
+
font-size: 18px;
|
|
3365
3365
|
}
|
|
3366
3366
|
.e-quick-popup-wrapper.e-device.e-rtl .e-event-popup .e-popup-header .e-close {
|
|
3367
3367
|
margin-left: auto;
|
|
@@ -3390,9 +3390,13 @@
|
|
|
3390
3390
|
.e-bigger .e-quick-popup-wrapper.e-rtl .e-event-popup .e-date-time-icon {
|
|
3391
3391
|
padding-right: 16px;
|
|
3392
3392
|
}
|
|
3393
|
-
.e-bigger .e-quick-popup-wrapper .e-
|
|
3394
|
-
|
|
3395
|
-
|
|
3393
|
+
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-close.e-btn.e-small.e-round {
|
|
3394
|
+
height: 2em;
|
|
3395
|
+
width: 2em;
|
|
3396
|
+
}
|
|
3397
|
+
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-edit.e-btn.e-small.e-round,
|
|
3398
|
+
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-delete.e-btn.e-small.e-round,
|
|
3399
|
+
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-close.e-btn.e-small.e-round {
|
|
3396
3400
|
height: 2em;
|
|
3397
3401
|
width: 2em;
|
|
3398
3402
|
}
|
|
@@ -3406,8 +3410,13 @@
|
|
|
3406
3410
|
.e-bigger .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete-icon {
|
|
3407
3411
|
font-size: 14px;
|
|
3408
3412
|
}
|
|
3413
|
+
.e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit.e-btn.e-small.e-round,
|
|
3414
|
+
.e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-delete.e-btn.e-small.e-round,
|
|
3415
|
+
.e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close.e-btn.e-small.e-round {
|
|
3416
|
+
height: 35px;
|
|
3417
|
+
}
|
|
3409
3418
|
.e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-subject {
|
|
3410
|
-
padding:
|
|
3419
|
+
padding: 2px 5px;
|
|
3411
3420
|
}
|
|
3412
3421
|
|
|
3413
3422
|
.e-bigger .e-agenda-view .e-appointment {
|
|
@@ -4189,6 +4198,7 @@
|
|
|
4189
4198
|
.e-recurrenceeditor .e-input-wrapper.e-end-on-date,
|
|
4190
4199
|
.e-recurrenceeditor .e-input-wrapper.e-end-on-count {
|
|
4191
4200
|
padding-right: 0;
|
|
4201
|
+
margin-top: 24px;
|
|
4192
4202
|
}
|
|
4193
4203
|
.e-recurrenceeditor.e-rtl .e-end-on > div,
|
|
4194
4204
|
.e-recurrenceeditor.e-rtl .e-month-expander > div > div {
|
|
@@ -4228,8 +4238,8 @@
|
|
|
4228
4238
|
width: 30px;
|
|
4229
4239
|
}
|
|
4230
4240
|
.e-recurrenceeditor .e-days .e-week-expander-label {
|
|
4231
|
-
font-size:
|
|
4232
|
-
font-weight:
|
|
4241
|
+
font-size: 12px;
|
|
4242
|
+
font-weight: 500;
|
|
4233
4243
|
margin-bottom: 8px;
|
|
4234
4244
|
}
|
|
4235
4245
|
.e-recurrenceeditor .e-days button {
|
|
@@ -4263,13 +4273,6 @@
|
|
|
4263
4273
|
padding: 16px 20px 0;
|
|
4264
4274
|
width: 50%;
|
|
4265
4275
|
}
|
|
4266
|
-
.e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
4267
|
-
float: none;
|
|
4268
|
-
font-size: 14px;
|
|
4269
|
-
font-weight: 400;
|
|
4270
|
-
margin-bottom: 7px;
|
|
4271
|
-
padding-right: 16px;
|
|
4272
|
-
}
|
|
4273
4276
|
.e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4274
4277
|
padding-right: 16px;
|
|
4275
4278
|
}
|
|
@@ -4277,9 +4280,9 @@
|
|
|
4277
4280
|
margin: 0;
|
|
4278
4281
|
}
|
|
4279
4282
|
.e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
4280
|
-
font-size:
|
|
4281
|
-
font-weight:
|
|
4282
|
-
margin-bottom:
|
|
4283
|
+
font-size: 12px;
|
|
4284
|
+
font-weight: 500;
|
|
4285
|
+
margin-bottom: 6px;
|
|
4283
4286
|
padding-right: 16px;
|
|
4284
4287
|
}
|
|
4285
4288
|
.e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
|
|
@@ -4322,6 +4325,7 @@
|
|
|
4322
4325
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
4323
4326
|
font-size: 16px;
|
|
4324
4327
|
margin-bottom: 0;
|
|
4328
|
+
font-weight: 500;
|
|
4325
4329
|
}
|
|
4326
4330
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4327
4331
|
padding-right: 2px;
|
|
@@ -4419,7 +4423,7 @@
|
|
|
4419
4423
|
.e-device .e-recurrenceeditor.e-end-on .e-end-on-label {
|
|
4420
4424
|
float: none;
|
|
4421
4425
|
font-size: 12px;
|
|
4422
|
-
font-weight:
|
|
4426
|
+
font-weight: 500;
|
|
4423
4427
|
margin-bottom: 7px;
|
|
4424
4428
|
}
|
|
4425
4429
|
.e-device .e-recurrenceeditor.e-end-on .e-end-on-left {
|
|
@@ -4487,7 +4491,7 @@
|
|
|
4487
4491
|
}
|
|
4488
4492
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
|
|
4489
4493
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
4490
|
-
margin-bottom:
|
|
4494
|
+
margin-bottom: 6px;
|
|
4491
4495
|
}
|
|
4492
4496
|
.e-recurrenceeditor .e-editor > div {
|
|
4493
4497
|
margin-top: 20px;
|