@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/material3.css
CHANGED
|
@@ -1296,7 +1296,7 @@
|
|
|
1296
1296
|
text-decoration: none;
|
|
1297
1297
|
}
|
|
1298
1298
|
.e-schedule.e-device .e-vertical-view .e-left-indent {
|
|
1299
|
-
width:
|
|
1299
|
+
width: 60px;
|
|
1300
1300
|
}
|
|
1301
1301
|
.e-schedule.e-device .e-vertical-view .e-clone-time-indicator,
|
|
1302
1302
|
.e-schedule.e-device .e-vertical-view .e-current-time {
|
|
@@ -1304,7 +1304,7 @@
|
|
|
1304
1304
|
}
|
|
1305
1305
|
.e-schedule.e-device .e-vertical-view .e-time-cells-wrap {
|
|
1306
1306
|
float: left;
|
|
1307
|
-
width:
|
|
1307
|
+
width: 60px;
|
|
1308
1308
|
}
|
|
1309
1309
|
.e-schedule.e-device .e-vertical-view .e-time-cells-wrap table td {
|
|
1310
1310
|
font-size: 14px;
|
|
@@ -1342,7 +1342,7 @@
|
|
|
1342
1342
|
}
|
|
1343
1343
|
@media screen and (max-width: 480px) {
|
|
1344
1344
|
.e-schedule .e-vertical-view .e-left-indent {
|
|
1345
|
-
width:
|
|
1345
|
+
width: 60px;
|
|
1346
1346
|
}
|
|
1347
1347
|
}
|
|
1348
1348
|
.e-schedule .e-month-view .e-left-indent,
|
|
@@ -3492,8 +3492,8 @@
|
|
|
3492
3492
|
background: transparent;
|
|
3493
3493
|
border: 0;
|
|
3494
3494
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
3495
|
-
height:
|
|
3496
|
-
width:
|
|
3495
|
+
height: 35px;
|
|
3496
|
+
width: 35px;
|
|
3497
3497
|
}
|
|
3498
3498
|
.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,
|
|
3499
3499
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit:focus,
|
|
@@ -3505,15 +3505,15 @@
|
|
|
3505
3505
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-subject {
|
|
3506
3506
|
font-size: 15px;
|
|
3507
3507
|
font-weight: 500;
|
|
3508
|
-
height:
|
|
3508
|
+
height: 35px;
|
|
3509
3509
|
line-height: 2.25;
|
|
3510
|
-
padding:
|
|
3511
|
-
width: calc(100% -
|
|
3510
|
+
padding: 2px 5px;
|
|
3511
|
+
width: calc(100% - 105px);
|
|
3512
3512
|
}
|
|
3513
3513
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close-icon,
|
|
3514
3514
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit-icon,
|
|
3515
3515
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-delete-icon {
|
|
3516
|
-
font-size:
|
|
3516
|
+
font-size: 16px;
|
|
3517
3517
|
}
|
|
3518
3518
|
.e-quick-popup-wrapper.e-device.e-rtl .e-event-popup .e-popup-header .e-close {
|
|
3519
3519
|
margin-left: auto;
|
|
@@ -3542,9 +3542,13 @@
|
|
|
3542
3542
|
.e-bigger .e-quick-popup-wrapper.e-rtl .e-event-popup .e-date-time-icon {
|
|
3543
3543
|
padding-right: 13px;
|
|
3544
3544
|
}
|
|
3545
|
-
.e-bigger .e-quick-popup-wrapper .e-
|
|
3546
|
-
|
|
3547
|
-
|
|
3545
|
+
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-close.e-btn.e-small.e-round {
|
|
3546
|
+
height: 30px;
|
|
3547
|
+
width: 30px;
|
|
3548
|
+
}
|
|
3549
|
+
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-edit.e-btn.e-small.e-round,
|
|
3550
|
+
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-delete.e-btn.e-small.e-round,
|
|
3551
|
+
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-close.e-btn.e-small.e-round {
|
|
3548
3552
|
height: 30px;
|
|
3549
3553
|
width: 30px;
|
|
3550
3554
|
}
|
|
@@ -3558,8 +3562,13 @@
|
|
|
3558
3562
|
.e-bigger .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete-icon {
|
|
3559
3563
|
font-size: 14px;
|
|
3560
3564
|
}
|
|
3565
|
+
.e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit.e-btn.e-small.e-round,
|
|
3566
|
+
.e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-delete.e-btn.e-small.e-round,
|
|
3567
|
+
.e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close.e-btn.e-small.e-round {
|
|
3568
|
+
height: 35px;
|
|
3569
|
+
}
|
|
3561
3570
|
.e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-subject {
|
|
3562
|
-
padding:
|
|
3571
|
+
padding: 2px 5px;
|
|
3563
3572
|
}
|
|
3564
3573
|
|
|
3565
3574
|
.e-bigger .e-agenda-view .e-appointment {
|
|
@@ -4341,6 +4350,7 @@
|
|
|
4341
4350
|
.e-recurrenceeditor .e-input-wrapper.e-end-on-date,
|
|
4342
4351
|
.e-recurrenceeditor .e-input-wrapper.e-end-on-count {
|
|
4343
4352
|
padding-right: 0;
|
|
4353
|
+
margin-top: 16px;
|
|
4344
4354
|
}
|
|
4345
4355
|
.e-recurrenceeditor.e-rtl .e-end-on > div,
|
|
4346
4356
|
.e-recurrenceeditor.e-rtl .e-month-expander > div > div {
|
|
@@ -4380,7 +4390,7 @@
|
|
|
4380
4390
|
width: 30px;
|
|
4381
4391
|
}
|
|
4382
4392
|
.e-recurrenceeditor .e-days .e-week-expander-label {
|
|
4383
|
-
font-size:
|
|
4393
|
+
font-size: 12px;
|
|
4384
4394
|
font-weight: 400;
|
|
4385
4395
|
margin-bottom: 8px;
|
|
4386
4396
|
}
|
|
@@ -4415,13 +4425,6 @@
|
|
|
4415
4425
|
padding: 16px 20px 0;
|
|
4416
4426
|
width: 50%;
|
|
4417
4427
|
}
|
|
4418
|
-
.e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
4419
|
-
float: none;
|
|
4420
|
-
font-size: 10px;
|
|
4421
|
-
font-weight: 400;
|
|
4422
|
-
margin-bottom: 8px;
|
|
4423
|
-
padding-right: 16px;
|
|
4424
|
-
}
|
|
4425
4428
|
.e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4426
4429
|
padding-right: 16px;
|
|
4427
4430
|
}
|
|
@@ -4429,9 +4432,9 @@
|
|
|
4429
4432
|
margin: 0;
|
|
4430
4433
|
}
|
|
4431
4434
|
.e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
4432
|
-
font-size:
|
|
4435
|
+
font-size: 12px;
|
|
4433
4436
|
font-weight: 400;
|
|
4434
|
-
margin-bottom:
|
|
4437
|
+
margin-bottom: -2px;
|
|
4435
4438
|
padding-right: 16px;
|
|
4436
4439
|
}
|
|
4437
4440
|
.e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
|
|
@@ -4473,7 +4476,8 @@
|
|
|
4473
4476
|
}
|
|
4474
4477
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
4475
4478
|
font-size: 12px;
|
|
4476
|
-
margin-bottom:
|
|
4479
|
+
margin-bottom: -1px;
|
|
4480
|
+
font-weight: 400;
|
|
4477
4481
|
}
|
|
4478
4482
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4479
4483
|
padding-right: 16px;
|
|
@@ -4639,7 +4643,7 @@
|
|
|
4639
4643
|
}
|
|
4640
4644
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
|
|
4641
4645
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
4642
|
-
margin-bottom:
|
|
4646
|
+
margin-bottom: -2px;
|
|
4643
4647
|
}
|
|
4644
4648
|
.e-recurrenceeditor .e-editor > div {
|
|
4645
4649
|
margin-top: 20px;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/*! recurrence editor theme wise definitions*/
|
|
2
2
|
$recurrence-label-bottom: 7px !default;
|
|
3
|
-
$recurrence-month-label-bottom:
|
|
3
|
+
$recurrence-month-label-bottom: 9px !default;
|
|
4
|
+
$recurrence-month-label-bottom-bgr: 9px !default;
|
|
4
5
|
$recurrence-week-label-bottom: 10px !default;
|
|
5
6
|
$recurrence-label-font-weight: bold !default;
|
|
6
7
|
$recurrence-label-font-nrml-size: 12px !default;
|
|
@@ -11,3 +12,4 @@ $recurrence-week-position-bgr-min-width: 130px !default;
|
|
|
11
12
|
$recurrence-day-position-bgr-min-width: 190px !default;
|
|
12
13
|
$recurrence-day-position-bgr-padding-left: 54px !default;
|
|
13
14
|
$recurrence-end-bgr-padding-right: 8px !default;
|
|
15
|
+
$recurrence-end-on-date-margin-top: 24px !default;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/*! recurrence editor theme wise definitions*/
|
|
2
2
|
$recurrence-label-bottom: 7px !default;
|
|
3
|
-
$recurrence-month-label-bottom:
|
|
3
|
+
$recurrence-month-label-bottom: 9px !default;
|
|
4
|
+
$recurrence-month-label-bottom-bgr: 9px !default;
|
|
4
5
|
$recurrence-week-label-bottom: 10px !default;
|
|
5
6
|
$recurrence-label-font-weight: bold !default;
|
|
6
7
|
$recurrence-label-font-nrml-size: 12px !default;
|
|
@@ -11,3 +12,4 @@ $recurrence-day-position-bgr-min-width: 190px !default;
|
|
|
11
12
|
$recurrence-day-position-bgr-padding-left: 54px !default;
|
|
12
13
|
$recurrence-end-bgr-padding-right: 8px !default;
|
|
13
14
|
$recurrence-week-position-min-width: 98px !default;
|
|
15
|
+
$recurrence-end-on-date-margin-top: 24px !default;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/*! recurrence editor theme wise definitions*/
|
|
2
2
|
$recurrence-label-bottom: 7px !default;
|
|
3
|
-
$recurrence-month-label-bottom:
|
|
3
|
+
$recurrence-month-label-bottom: 3px !default;
|
|
4
|
+
$recurrence-month-label-bottom-bgr: 0 !default;
|
|
4
5
|
$recurrence-week-label-bottom: 10px !default;
|
|
5
6
|
$recurrence-label-font-weight: 400 !default;
|
|
6
7
|
$recurrence-label-font-nrml-size: 14px !default;
|
|
@@ -11,3 +12,4 @@ $recurrence-day-position-bgr-min-width: 190px !default;
|
|
|
11
12
|
$recurrence-day-position-bgr-padding-left: 54px !default;
|
|
12
13
|
$recurrence-end-bgr-padding-right: 16px !default;
|
|
13
14
|
$recurrence-week-position-min-width: 98px !default;
|
|
15
|
+
$recurrence-end-on-date-margin-top: 24px !default;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
/*! recurrence editor theme wise definitions*/
|
|
2
2
|
$recurrence-label-bottom: 7px !default;
|
|
3
|
-
$recurrence-month-label-bottom:
|
|
3
|
+
$recurrence-month-label-bottom: 5px !default;
|
|
4
|
+
$recurrence-month-label-bottom-bgr: 0 !default;
|
|
4
5
|
$recurrence-week-label-bottom: 10px !default;
|
|
5
|
-
$recurrence-label-font-weight: $font-weight-
|
|
6
|
-
$recurrence-label-font-nrml-size:
|
|
6
|
+
$recurrence-label-font-weight: $font-weight-medium !default;
|
|
7
|
+
$recurrence-label-font-nrml-size: 12px !default;
|
|
7
8
|
$recurrence-label-font-bgr-size: 16px !default;
|
|
8
9
|
$recurrence-left-padding: 0 8px 16px 0 !default;
|
|
9
10
|
$recurrence-week-position-bgr-min-width: 130px !default;
|
|
@@ -11,3 +12,4 @@ $recurrence-day-position-bgr-min-width: 190px !default;
|
|
|
11
12
|
$recurrence-day-position-bgr-padding-left: 54px !default;
|
|
12
13
|
$recurrence-end-bgr-padding-right: 16px !default;
|
|
13
14
|
$recurrence-week-position-min-width: 98px !default;
|
|
15
|
+
$recurrence-end-on-date-margin-top: 24px !default;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
/*! recurrence editor theme wise definitions*/
|
|
2
2
|
$recurrence-label-bottom: 7px !default;
|
|
3
|
-
$recurrence-month-label-bottom:
|
|
3
|
+
$recurrence-month-label-bottom: 10px !default;
|
|
4
|
+
$recurrence-month-label-bottom-bgr: 8px !default;
|
|
4
5
|
$recurrence-week-label-bottom: 10px !default;
|
|
5
6
|
$recurrence-label-font-weight: 400 !default;
|
|
6
|
-
$recurrence-label-font-nrml-size:
|
|
7
|
+
$recurrence-label-font-nrml-size: 12px !default;
|
|
7
8
|
$recurrence-label-font-bgr-size: 13px !default;
|
|
8
9
|
$recurrence-left-padding: 0 8px 10px 0 !default;
|
|
9
10
|
$recurrence-week-position-bgr-min-width: 130px !default;
|
|
@@ -11,3 +12,4 @@ $recurrence-day-position-bgr-min-width: 183px !default;
|
|
|
11
12
|
$recurrence-day-position-bgr-padding-left: 54px !default;
|
|
12
13
|
$recurrence-end-bgr-padding-right: 5px !default;
|
|
13
14
|
$recurrence-week-position-min-width: 90px !default;
|
|
15
|
+
$recurrence-end-on-date-margin-top: 28px !default;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
/*! recurrence editor theme wise definitions*/
|
|
2
2
|
$recurrence-label-bottom: 7px !default;
|
|
3
|
-
$recurrence-month-label-bottom:
|
|
3
|
+
$recurrence-month-label-bottom: 10px !default;
|
|
4
|
+
$recurrence-month-label-bottom-bgr: 8px !default;
|
|
4
5
|
$recurrence-week-label-bottom: 10px !default;
|
|
5
6
|
$recurrence-label-font-weight: 400 !default;
|
|
6
|
-
$recurrence-label-font-nrml-size:
|
|
7
|
+
$recurrence-label-font-nrml-size: 12px !default;
|
|
7
8
|
$recurrence-label-font-bgr-size: 13px !default;
|
|
8
9
|
$recurrence-left-padding: 0 8px 10px 0 !default;
|
|
9
10
|
$recurrence-week-position-bgr-min-width: 130px !default;
|
|
@@ -11,3 +12,4 @@ $recurrence-day-position-bgr-min-width: 183px !default;
|
|
|
11
12
|
$recurrence-day-position-bgr-padding-left: 54px !default;
|
|
12
13
|
$recurrence-end-bgr-padding-right: 5px !default;
|
|
13
14
|
$recurrence-week-position-min-width: 90px !default;
|
|
15
|
+
$recurrence-end-on-date-margin-top: 28px !default;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
/*! recurrence editor theme wise definitions*/
|
|
2
2
|
$recurrence-label-bottom: 7px !default;
|
|
3
|
-
$recurrence-month-label-bottom:
|
|
3
|
+
$recurrence-month-label-bottom: 4px !default;
|
|
4
|
+
$recurrence-month-label-bottom-bgr: 0 !default;
|
|
4
5
|
$recurrence-week-label-bottom: 10px !default;
|
|
5
|
-
$recurrence-label-font-weight:
|
|
6
|
+
$recurrence-label-font-weight: 600 !default;
|
|
6
7
|
$recurrence-label-font-nrml-size: 14px !default;
|
|
7
8
|
$recurrence-label-font-bgr-size: 16px !default;
|
|
8
9
|
$recurrence-left-padding: 0 8px 16px 0 !default;
|
|
@@ -11,3 +12,4 @@ $recurrence-day-position-bgr-min-width: 183px !default;
|
|
|
11
12
|
$recurrence-day-position-bgr-padding-left: 54px !default;
|
|
12
13
|
$recurrence-end-bgr-padding-right: 5px !default;
|
|
13
14
|
$recurrence-week-position-min-width: 90px !default;
|
|
15
|
+
$recurrence-end-on-date-margin-top: 24px !default;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
/*! recurrence editor theme wise definitions*/
|
|
2
2
|
$recurrence-label-bottom: 7px !default;
|
|
3
|
-
$recurrence-month-label-bottom:
|
|
3
|
+
$recurrence-month-label-bottom: 4px !default;
|
|
4
|
+
$recurrence-month-label-bottom-bgr: 0 !default;
|
|
4
5
|
$recurrence-week-label-bottom: 10px !default;
|
|
5
|
-
$recurrence-label-font-weight:
|
|
6
|
+
$recurrence-label-font-weight: 600 !default;
|
|
6
7
|
$recurrence-label-font-nrml-size: 14px !default;
|
|
7
8
|
$recurrence-label-font-bgr-size: 16px !default;
|
|
8
9
|
$recurrence-left-padding: 0 8px 16px 0 !default;
|
|
@@ -11,3 +12,4 @@ $recurrence-day-position-bgr-min-width: 190px !default;
|
|
|
11
12
|
$recurrence-day-position-bgr-padding-left: 54px !default;
|
|
12
13
|
$recurrence-end-bgr-padding-right: 16px !default;
|
|
13
14
|
$recurrence-week-position-min-width: 98px !default;
|
|
15
|
+
$recurrence-end-on-date-margin-top: 24px !default;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/*! recurrence editor theme wise definitions*/
|
|
2
2
|
$recurrence-label-bottom: 7px !default;
|
|
3
|
-
$recurrence-month-label-bottom:
|
|
3
|
+
$recurrence-month-label-bottom: 10px !default;
|
|
4
|
+
$recurrence-month-label-bottom-bgr: 10px !default;
|
|
4
5
|
$recurrence-week-label-bottom: 10px !default;
|
|
5
6
|
$recurrence-label-font-weight: 400 !default;
|
|
6
7
|
$recurrence-label-font-nrml-size: 12px !default;
|
|
@@ -11,3 +12,4 @@ $recurrence-day-position-bgr-min-width: 183px !default;
|
|
|
11
12
|
$recurrence-day-position-bgr-padding-left: 54px !default;
|
|
12
13
|
$recurrence-end-bgr-padding-right: 5px !default;
|
|
13
14
|
$recurrence-week-position-min-width: 88px !default;
|
|
15
|
+
$recurrence-end-on-date-margin-top: 28px !default;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/*! recurrence editor theme wise definitions*/
|
|
2
2
|
$recurrence-label-bottom: 7px !default;
|
|
3
|
-
$recurrence-month-label-bottom:
|
|
3
|
+
$recurrence-month-label-bottom: 10px !default;
|
|
4
|
+
$recurrence-month-label-bottom-bgr: 10px !default;
|
|
4
5
|
$recurrence-week-label-bottom: 10px !default;
|
|
5
6
|
$recurrence-label-font-weight: 400 !default;
|
|
6
7
|
$recurrence-label-font-nrml-size: 12px !default;
|
|
@@ -11,3 +12,4 @@ $recurrence-day-position-bgr-min-width: 183px !default;
|
|
|
11
12
|
$recurrence-day-position-bgr-padding-left: 54px !default;
|
|
12
13
|
$recurrence-end-bgr-padding-right: 5px !default;
|
|
13
14
|
$recurrence-week-position-min-width: 88px !default;
|
|
15
|
+
$recurrence-end-on-date-margin-top: 28px !default;
|
|
@@ -72,6 +72,7 @@
|
|
|
72
72
|
.e-input-wrapper.e-end-on-date,
|
|
73
73
|
.e-input-wrapper.e-end-on-count {
|
|
74
74
|
padding-right: 0;
|
|
75
|
+
margin-top: $recurrence-end-on-date-margin-top;
|
|
75
76
|
}
|
|
76
77
|
|
|
77
78
|
&.e-rtl {
|
|
@@ -173,15 +174,6 @@
|
|
|
173
174
|
width: 50%;
|
|
174
175
|
|
|
175
176
|
&.e-end-on {
|
|
176
|
-
|
|
177
|
-
.e-end-on-label {
|
|
178
|
-
float: none;
|
|
179
|
-
font-size: $recurrence-label-font-nrml-size;
|
|
180
|
-
font-weight: $recurrence-label-font-weight;
|
|
181
|
-
margin-bottom: $recurrence-month-label-bottom;
|
|
182
|
-
padding-right: 16px;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
177
|
.e-end-on-left {
|
|
186
178
|
padding-right: 16px;
|
|
187
179
|
}
|
|
@@ -249,7 +241,8 @@
|
|
|
249
241
|
|
|
250
242
|
.e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
251
243
|
font-size: $recurrence-label-font-bgr-size;
|
|
252
|
-
margin-bottom:
|
|
244
|
+
margin-bottom: $recurrence-month-label-bottom-bgr;
|
|
245
|
+
font-weight: $recurrence-label-font-weight;
|
|
253
246
|
}
|
|
254
247
|
|
|
255
248
|
.e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
/*! recurrence editor theme wise definitions*/
|
|
2
2
|
$recurrence-label-bottom: 1px !default;
|
|
3
3
|
$recurrence-month-label-bottom: 1px !default;
|
|
4
|
+
$recurrence-month-label-bottom-bgr: 3px !default;
|
|
4
5
|
$recurrence-week-label-bottom: 10px !default;
|
|
5
6
|
$recurrence-label-font-weight: 400 !default;
|
|
6
|
-
$recurrence-label-font-nrml-size:
|
|
7
|
+
$recurrence-label-font-nrml-size: 13px !default;
|
|
7
8
|
$recurrence-label-font-bgr-size: 12px !default;
|
|
8
9
|
$recurrence-left-padding: 0 8px 10px 0 !default;
|
|
9
10
|
$recurrence-week-position-bgr-min-width: 90px !default;
|
|
@@ -11,3 +12,4 @@ $recurrence-day-position-bgr-min-width: 128px !default;
|
|
|
11
12
|
$recurrence-day-position-bgr-padding-left: 14px !default;
|
|
12
13
|
$recurrence-end-bgr-padding-right: 16px !default;
|
|
13
14
|
$recurrence-week-position-min-width: 81px !default;
|
|
15
|
+
$recurrence-end-on-date-margin-top: 16px !default;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
/*! recurrence editor theme wise definitions*/
|
|
2
2
|
$recurrence-label-bottom: 1px !default;
|
|
3
3
|
$recurrence-month-label-bottom: 1px !default;
|
|
4
|
+
$recurrence-month-label-bottom-bgr: 3px !default;
|
|
4
5
|
$recurrence-week-label-bottom: 10px !default;
|
|
5
6
|
$recurrence-label-font-weight: 400 !default;
|
|
6
|
-
$recurrence-label-font-nrml-size:
|
|
7
|
+
$recurrence-label-font-nrml-size: 13px !default;
|
|
7
8
|
$recurrence-label-font-bgr-size: 12px !default;
|
|
8
9
|
$recurrence-left-padding: 0 8px 10px 0 !default;
|
|
9
10
|
$recurrence-week-position-bgr-min-width: 90px !default;
|
|
@@ -11,3 +12,4 @@ $recurrence-day-position-bgr-min-width: 128px !default;
|
|
|
11
12
|
$recurrence-day-position-bgr-padding-left: 14px !default;
|
|
12
13
|
$recurrence-end-bgr-padding-right: 16px !default;
|
|
13
14
|
$recurrence-week-position-min-width: 81px !default;
|
|
15
|
+
$recurrence-end-on-date-margin-top: 16px !default;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
/*! recurrence editor theme wise definitions*/
|
|
2
2
|
$recurrence-label-bottom: 8px !default;
|
|
3
|
-
$recurrence-month-label-bottom:
|
|
3
|
+
$recurrence-month-label-bottom: -2px !default;
|
|
4
|
+
$recurrence-month-label-bottom-bgr: -1px !default;
|
|
4
5
|
$recurrence-week-label-bottom: 10px !default;
|
|
5
6
|
$recurrence-label-font-weight: $font-weight-normal !default;
|
|
6
|
-
$recurrence-label-font-nrml-size: $text-
|
|
7
|
+
$recurrence-label-font-nrml-size: $text-xs !default;
|
|
7
8
|
$recurrence-label-font-bgr-size: $text-xs !default;
|
|
8
9
|
$recurrence-left-padding: 0 8px 16px 0 !default;
|
|
9
10
|
$recurrence-week-position-bgr-min-width: 130px !default;
|
|
@@ -11,3 +12,4 @@ $recurrence-day-position-bgr-min-width: 190px !default;
|
|
|
11
12
|
$recurrence-day-position-bgr-padding-left: 54px !default;
|
|
12
13
|
$recurrence-end-bgr-padding-right: 16px !default;
|
|
13
14
|
$recurrence-week-position-min-width: 98px !default;
|
|
15
|
+
$recurrence-end-on-date-margin-top: 16px !default;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
/*! recurrence editor theme wise definitions*/
|
|
2
2
|
$recurrence-label-bottom: 7px !default;
|
|
3
|
-
$recurrence-month-label-bottom:
|
|
3
|
+
$recurrence-month-label-bottom: 6px !default;
|
|
4
|
+
$recurrence-month-label-bottom-bgr: 0 !default;
|
|
4
5
|
$recurrence-week-label-bottom: 10px !default;
|
|
5
|
-
$recurrence-label-font-weight: $font-weight-
|
|
6
|
-
$recurrence-label-font-nrml-size:
|
|
6
|
+
$recurrence-label-font-weight: $font-weight-medium !default;
|
|
7
|
+
$recurrence-label-font-nrml-size: 12px !default;
|
|
7
8
|
$recurrence-label-font-bgr-size: 16px !default;
|
|
8
9
|
$recurrence-left-padding: 0 8px 16px 0 !default;
|
|
9
10
|
$recurrence-week-position-bgr-min-width: 130px !default;
|
|
@@ -11,3 +12,4 @@ $recurrence-day-position-bgr-min-width: 197px !default;
|
|
|
11
12
|
$recurrence-day-position-bgr-padding-left: 54px !default;
|
|
12
13
|
$recurrence-end-bgr-padding-right: 2px !default;
|
|
13
14
|
$recurrence-week-position-min-width: 94px !default;
|
|
15
|
+
$recurrence-end-on-date-margin-top: 24px !default;
|
|
@@ -163,6 +163,7 @@
|
|
|
163
163
|
.e-recurrenceeditor .e-input-wrapper.e-end-on-date,
|
|
164
164
|
.e-recurrenceeditor .e-input-wrapper.e-end-on-count {
|
|
165
165
|
padding-right: 0;
|
|
166
|
+
margin-top: 24px;
|
|
166
167
|
}
|
|
167
168
|
.e-recurrenceeditor.e-rtl .e-end-on > div,
|
|
168
169
|
.e-recurrenceeditor.e-rtl .e-month-expander > div > div {
|
|
@@ -237,13 +238,6 @@
|
|
|
237
238
|
padding: 16px 20px 0;
|
|
238
239
|
width: 50%;
|
|
239
240
|
}
|
|
240
|
-
.e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
241
|
-
float: none;
|
|
242
|
-
font-size: 12px;
|
|
243
|
-
font-weight: bold;
|
|
244
|
-
margin-bottom: 7px;
|
|
245
|
-
padding-right: 16px;
|
|
246
|
-
}
|
|
247
241
|
.e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
248
242
|
padding-right: 16px;
|
|
249
243
|
}
|
|
@@ -253,7 +247,7 @@
|
|
|
253
247
|
.e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
254
248
|
font-size: 12px;
|
|
255
249
|
font-weight: bold;
|
|
256
|
-
margin-bottom:
|
|
250
|
+
margin-bottom: 9px;
|
|
257
251
|
padding-right: 16px;
|
|
258
252
|
}
|
|
259
253
|
.e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
|
|
@@ -295,7 +289,8 @@
|
|
|
295
289
|
}
|
|
296
290
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
297
291
|
font-size: 12px;
|
|
298
|
-
margin-bottom:
|
|
292
|
+
margin-bottom: 9px;
|
|
293
|
+
font-weight: bold;
|
|
299
294
|
}
|
|
300
295
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
301
296
|
padding-right: 8px;
|
|
@@ -461,7 +456,7 @@
|
|
|
461
456
|
}
|
|
462
457
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
|
|
463
458
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
464
|
-
margin-bottom:
|
|
459
|
+
margin-bottom: 9px;
|
|
465
460
|
}
|
|
466
461
|
.e-recurrenceeditor .e-editor > div {
|
|
467
462
|
margin-top: 20px;
|
|
@@ -163,6 +163,7 @@
|
|
|
163
163
|
.e-recurrenceeditor .e-input-wrapper.e-end-on-date,
|
|
164
164
|
.e-recurrenceeditor .e-input-wrapper.e-end-on-count {
|
|
165
165
|
padding-right: 0;
|
|
166
|
+
margin-top: 24px;
|
|
166
167
|
}
|
|
167
168
|
.e-recurrenceeditor.e-rtl .e-end-on > div,
|
|
168
169
|
.e-recurrenceeditor.e-rtl .e-month-expander > div > div {
|
|
@@ -237,13 +238,6 @@
|
|
|
237
238
|
padding: 16px 20px 0;
|
|
238
239
|
width: 50%;
|
|
239
240
|
}
|
|
240
|
-
.e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
241
|
-
float: none;
|
|
242
|
-
font-size: 12px;
|
|
243
|
-
font-weight: bold;
|
|
244
|
-
margin-bottom: 7px;
|
|
245
|
-
padding-right: 16px;
|
|
246
|
-
}
|
|
247
241
|
.e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
248
242
|
padding-right: 16px;
|
|
249
243
|
}
|
|
@@ -253,7 +247,7 @@
|
|
|
253
247
|
.e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
254
248
|
font-size: 12px;
|
|
255
249
|
font-weight: bold;
|
|
256
|
-
margin-bottom:
|
|
250
|
+
margin-bottom: 9px;
|
|
257
251
|
padding-right: 16px;
|
|
258
252
|
}
|
|
259
253
|
.e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
|
|
@@ -295,7 +289,8 @@
|
|
|
295
289
|
}
|
|
296
290
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
297
291
|
font-size: 12px;
|
|
298
|
-
margin-bottom:
|
|
292
|
+
margin-bottom: 9px;
|
|
293
|
+
font-weight: bold;
|
|
299
294
|
}
|
|
300
295
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
301
296
|
padding-right: 8px;
|
|
@@ -461,7 +456,7 @@
|
|
|
461
456
|
}
|
|
462
457
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
|
|
463
458
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
464
|
-
margin-bottom:
|
|
459
|
+
margin-bottom: 9px;
|
|
465
460
|
}
|
|
466
461
|
.e-recurrenceeditor .e-editor > div {
|
|
467
462
|
margin-top: 20px;
|
|
@@ -208,6 +208,7 @@
|
|
|
208
208
|
.e-recurrenceeditor .e-input-wrapper.e-end-on-date,
|
|
209
209
|
.e-recurrenceeditor .e-input-wrapper.e-end-on-count {
|
|
210
210
|
padding-right: 0;
|
|
211
|
+
margin-top: 24px;
|
|
211
212
|
}
|
|
212
213
|
.e-recurrenceeditor.e-rtl .e-end-on > div,
|
|
213
214
|
.e-recurrenceeditor.e-rtl .e-month-expander > div > div {
|
|
@@ -282,13 +283,6 @@
|
|
|
282
283
|
padding: 16px 20px 0;
|
|
283
284
|
width: 50%;
|
|
284
285
|
}
|
|
285
|
-
.e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
286
|
-
float: none;
|
|
287
|
-
font-size: 14px;
|
|
288
|
-
font-weight: 400;
|
|
289
|
-
margin-bottom: 7px;
|
|
290
|
-
padding-right: 16px;
|
|
291
|
-
}
|
|
292
286
|
.e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
293
287
|
padding-right: 16px;
|
|
294
288
|
}
|
|
@@ -298,7 +292,7 @@
|
|
|
298
292
|
.e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
299
293
|
font-size: 14px;
|
|
300
294
|
font-weight: 400;
|
|
301
|
-
margin-bottom:
|
|
295
|
+
margin-bottom: 3px;
|
|
302
296
|
padding-right: 16px;
|
|
303
297
|
}
|
|
304
298
|
.e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
|
|
@@ -341,6 +335,7 @@
|
|
|
341
335
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
342
336
|
font-size: 16px;
|
|
343
337
|
margin-bottom: 0;
|
|
338
|
+
font-weight: 400;
|
|
344
339
|
}
|
|
345
340
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
346
341
|
padding-right: 16px;
|
|
@@ -506,7 +501,7 @@
|
|
|
506
501
|
}
|
|
507
502
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
|
|
508
503
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
509
|
-
margin-bottom:
|
|
504
|
+
margin-bottom: 3px;
|
|
510
505
|
}
|
|
511
506
|
.e-recurrenceeditor .e-editor > div {
|
|
512
507
|
margin-top: 20px;
|
|
@@ -204,6 +204,7 @@
|
|
|
204
204
|
.e-recurrenceeditor .e-input-wrapper.e-end-on-date,
|
|
205
205
|
.e-recurrenceeditor .e-input-wrapper.e-end-on-count {
|
|
206
206
|
padding-right: 0;
|
|
207
|
+
margin-top: 24px;
|
|
207
208
|
}
|
|
208
209
|
.e-recurrenceeditor.e-rtl .e-end-on > div,
|
|
209
210
|
.e-recurrenceeditor.e-rtl .e-month-expander > div > div {
|
|
@@ -243,8 +244,8 @@
|
|
|
243
244
|
width: 30px;
|
|
244
245
|
}
|
|
245
246
|
.e-recurrenceeditor .e-days .e-week-expander-label {
|
|
246
|
-
font-size:
|
|
247
|
-
font-weight:
|
|
247
|
+
font-size: 12px;
|
|
248
|
+
font-weight: 500;
|
|
248
249
|
margin-bottom: 8px;
|
|
249
250
|
}
|
|
250
251
|
.e-recurrenceeditor .e-days button {
|
|
@@ -278,13 +279,6 @@
|
|
|
278
279
|
padding: 16px 20px 0;
|
|
279
280
|
width: 50%;
|
|
280
281
|
}
|
|
281
|
-
.e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
282
|
-
float: none;
|
|
283
|
-
font-size: 14px;
|
|
284
|
-
font-weight: 400;
|
|
285
|
-
margin-bottom: 7px;
|
|
286
|
-
padding-right: 16px;
|
|
287
|
-
}
|
|
288
282
|
.e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
289
283
|
padding-right: 16px;
|
|
290
284
|
}
|
|
@@ -292,9 +286,9 @@
|
|
|
292
286
|
margin: 0;
|
|
293
287
|
}
|
|
294
288
|
.e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
295
|
-
font-size:
|
|
296
|
-
font-weight:
|
|
297
|
-
margin-bottom:
|
|
289
|
+
font-size: 12px;
|
|
290
|
+
font-weight: 500;
|
|
291
|
+
margin-bottom: 5px;
|
|
298
292
|
padding-right: 16px;
|
|
299
293
|
}
|
|
300
294
|
.e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
|
|
@@ -337,6 +331,7 @@
|
|
|
337
331
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
338
332
|
font-size: 16px;
|
|
339
333
|
margin-bottom: 0;
|
|
334
|
+
font-weight: 500;
|
|
340
335
|
}
|
|
341
336
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
342
337
|
padding-right: 16px;
|
|
@@ -434,7 +429,7 @@
|
|
|
434
429
|
.e-device .e-recurrenceeditor.e-end-on .e-end-on-label {
|
|
435
430
|
float: none;
|
|
436
431
|
font-size: 12px;
|
|
437
|
-
font-weight:
|
|
432
|
+
font-weight: 500;
|
|
438
433
|
margin-bottom: 7px;
|
|
439
434
|
}
|
|
440
435
|
.e-device .e-recurrenceeditor.e-end-on .e-end-on-left {
|
|
@@ -502,7 +497,7 @@
|
|
|
502
497
|
}
|
|
503
498
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
|
|
504
499
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
505
|
-
margin-bottom:
|
|
500
|
+
margin-bottom: 5px;
|
|
506
501
|
}
|
|
507
502
|
.e-recurrenceeditor .e-editor > div {
|
|
508
503
|
margin-top: 20px;
|