@syncfusion/ej2-schedule 23.2.4 → 24.1.41
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 +16 -0
- 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 +278 -35
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +341 -65
- 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 +17 -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 +5 -11
- 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/material.css
CHANGED
|
@@ -1173,7 +1173,7 @@
|
|
|
1173
1173
|
text-decoration: none;
|
|
1174
1174
|
}
|
|
1175
1175
|
.e-schedule.e-device .e-vertical-view .e-left-indent {
|
|
1176
|
-
width:
|
|
1176
|
+
width: 60px;
|
|
1177
1177
|
}
|
|
1178
1178
|
.e-schedule.e-device .e-vertical-view .e-clone-time-indicator,
|
|
1179
1179
|
.e-schedule.e-device .e-vertical-view .e-current-time {
|
|
@@ -1181,7 +1181,7 @@
|
|
|
1181
1181
|
}
|
|
1182
1182
|
.e-schedule.e-device .e-vertical-view .e-time-cells-wrap {
|
|
1183
1183
|
float: left;
|
|
1184
|
-
width:
|
|
1184
|
+
width: 60px;
|
|
1185
1185
|
}
|
|
1186
1186
|
.e-schedule.e-device .e-vertical-view .e-time-cells-wrap table td {
|
|
1187
1187
|
font-size: 11px;
|
|
@@ -1219,7 +1219,7 @@
|
|
|
1219
1219
|
}
|
|
1220
1220
|
@media screen and (max-width: 480px) {
|
|
1221
1221
|
.e-schedule .e-vertical-view .e-left-indent {
|
|
1222
|
-
width:
|
|
1222
|
+
width: 60px;
|
|
1223
1223
|
}
|
|
1224
1224
|
}
|
|
1225
1225
|
.e-schedule .e-month-view .e-left-indent,
|
|
@@ -3369,8 +3369,8 @@
|
|
|
3369
3369
|
background: transparent;
|
|
3370
3370
|
border: 0;
|
|
3371
3371
|
color: rgba(0, 0, 0, 0.87);
|
|
3372
|
-
height:
|
|
3373
|
-
width:
|
|
3372
|
+
height: 35px;
|
|
3373
|
+
width: 35px;
|
|
3374
3374
|
}
|
|
3375
3375
|
.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,
|
|
3376
3376
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit:focus,
|
|
@@ -3382,10 +3382,10 @@
|
|
|
3382
3382
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-subject {
|
|
3383
3383
|
font-size: 15px;
|
|
3384
3384
|
font-weight: 500;
|
|
3385
|
-
height:
|
|
3385
|
+
height: 35px;
|
|
3386
3386
|
line-height: 2.25;
|
|
3387
|
-
padding:
|
|
3388
|
-
width: calc(100% -
|
|
3387
|
+
padding: 2px 5px;
|
|
3388
|
+
width: calc(100% - 105px);
|
|
3389
3389
|
}
|
|
3390
3390
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close-icon,
|
|
3391
3391
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit-icon,
|
|
@@ -3419,9 +3419,13 @@
|
|
|
3419
3419
|
.e-bigger .e-quick-popup-wrapper.e-rtl .e-event-popup .e-date-time-icon {
|
|
3420
3420
|
padding-right: 13px;
|
|
3421
3421
|
}
|
|
3422
|
-
.e-bigger .e-quick-popup-wrapper .e-
|
|
3423
|
-
|
|
3424
|
-
|
|
3422
|
+
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-close.e-btn.e-small.e-round {
|
|
3423
|
+
height: 2.8572em;
|
|
3424
|
+
width: 2.8572em;
|
|
3425
|
+
}
|
|
3426
|
+
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-edit.e-btn.e-small.e-round,
|
|
3427
|
+
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-delete.e-btn.e-small.e-round,
|
|
3428
|
+
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-close.e-btn.e-small.e-round {
|
|
3425
3429
|
height: 2.8572em;
|
|
3426
3430
|
width: 2.8572em;
|
|
3427
3431
|
}
|
|
@@ -3435,8 +3439,13 @@
|
|
|
3435
3439
|
.e-bigger .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete-icon {
|
|
3436
3440
|
font-size: 14px;
|
|
3437
3441
|
}
|
|
3442
|
+
.e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit.e-btn.e-small.e-round,
|
|
3443
|
+
.e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-delete.e-btn.e-small.e-round,
|
|
3444
|
+
.e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close.e-btn.e-small.e-round {
|
|
3445
|
+
height: 35px;
|
|
3446
|
+
}
|
|
3438
3447
|
.e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-subject {
|
|
3439
|
-
padding:
|
|
3448
|
+
padding: 3px 5px;
|
|
3440
3449
|
}
|
|
3441
3450
|
|
|
3442
3451
|
.e-bigger .e-agenda-view .e-appointment {
|
|
@@ -4218,6 +4227,7 @@
|
|
|
4218
4227
|
.e-recurrenceeditor .e-input-wrapper.e-end-on-date,
|
|
4219
4228
|
.e-recurrenceeditor .e-input-wrapper.e-end-on-count {
|
|
4220
4229
|
padding-right: 0;
|
|
4230
|
+
margin-top: 16px;
|
|
4221
4231
|
}
|
|
4222
4232
|
.e-recurrenceeditor.e-rtl .e-end-on > div,
|
|
4223
4233
|
.e-recurrenceeditor.e-rtl .e-month-expander > div > div {
|
|
@@ -4257,7 +4267,7 @@
|
|
|
4257
4267
|
width: 30px;
|
|
4258
4268
|
}
|
|
4259
4269
|
.e-recurrenceeditor .e-days .e-week-expander-label {
|
|
4260
|
-
font-size:
|
|
4270
|
+
font-size: 13px;
|
|
4261
4271
|
font-weight: 400;
|
|
4262
4272
|
margin-bottom: 8px;
|
|
4263
4273
|
}
|
|
@@ -4292,13 +4302,6 @@
|
|
|
4292
4302
|
padding: 16px 20px 0;
|
|
4293
4303
|
width: 50%;
|
|
4294
4304
|
}
|
|
4295
|
-
.e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
4296
|
-
float: none;
|
|
4297
|
-
font-size: 12px;
|
|
4298
|
-
font-weight: 400;
|
|
4299
|
-
margin-bottom: 1px;
|
|
4300
|
-
padding-right: 16px;
|
|
4301
|
-
}
|
|
4302
4305
|
.e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4303
4306
|
padding-right: 16px;
|
|
4304
4307
|
}
|
|
@@ -4306,7 +4309,7 @@
|
|
|
4306
4309
|
margin: 0;
|
|
4307
4310
|
}
|
|
4308
4311
|
.e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
4309
|
-
font-size:
|
|
4312
|
+
font-size: 13px;
|
|
4310
4313
|
font-weight: 400;
|
|
4311
4314
|
margin-bottom: 1px;
|
|
4312
4315
|
padding-right: 16px;
|
|
@@ -4350,7 +4353,8 @@
|
|
|
4350
4353
|
}
|
|
4351
4354
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
4352
4355
|
font-size: 12px;
|
|
4353
|
-
margin-bottom:
|
|
4356
|
+
margin-bottom: 3px;
|
|
4357
|
+
font-weight: 400;
|
|
4354
4358
|
}
|
|
4355
4359
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4356
4360
|
padding-right: 16px;
|
|
@@ -1240,7 +1240,7 @@
|
|
|
1240
1240
|
text-decoration: none;
|
|
1241
1241
|
}
|
|
1242
1242
|
.e-schedule.e-device .e-vertical-view .e-left-indent {
|
|
1243
|
-
width:
|
|
1243
|
+
width: 60px;
|
|
1244
1244
|
}
|
|
1245
1245
|
.e-schedule.e-device .e-vertical-view .e-clone-time-indicator,
|
|
1246
1246
|
.e-schedule.e-device .e-vertical-view .e-current-time {
|
|
@@ -1248,7 +1248,7 @@
|
|
|
1248
1248
|
}
|
|
1249
1249
|
.e-schedule.e-device .e-vertical-view .e-time-cells-wrap {
|
|
1250
1250
|
float: left;
|
|
1251
|
-
width:
|
|
1251
|
+
width: 60px;
|
|
1252
1252
|
}
|
|
1253
1253
|
.e-schedule.e-device .e-vertical-view .e-time-cells-wrap table td {
|
|
1254
1254
|
font-size: 14px;
|
|
@@ -1286,7 +1286,7 @@
|
|
|
1286
1286
|
}
|
|
1287
1287
|
@media screen and (max-width: 480px) {
|
|
1288
1288
|
.e-schedule .e-vertical-view .e-left-indent {
|
|
1289
|
-
width:
|
|
1289
|
+
width: 60px;
|
|
1290
1290
|
}
|
|
1291
1291
|
}
|
|
1292
1292
|
.e-schedule .e-month-view .e-left-indent,
|
|
@@ -3436,8 +3436,8 @@
|
|
|
3436
3436
|
background: transparent;
|
|
3437
3437
|
border: 0;
|
|
3438
3438
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
3439
|
-
height:
|
|
3440
|
-
width:
|
|
3439
|
+
height: 35px;
|
|
3440
|
+
width: 35px;
|
|
3441
3441
|
}
|
|
3442
3442
|
.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,
|
|
3443
3443
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit:focus,
|
|
@@ -3449,15 +3449,15 @@
|
|
|
3449
3449
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-subject {
|
|
3450
3450
|
font-size: 15px;
|
|
3451
3451
|
font-weight: 500;
|
|
3452
|
-
height:
|
|
3452
|
+
height: 35px;
|
|
3453
3453
|
line-height: 2.25;
|
|
3454
|
-
padding:
|
|
3455
|
-
width: calc(100% -
|
|
3454
|
+
padding: 2px 5px;
|
|
3455
|
+
width: calc(100% - 105px);
|
|
3456
3456
|
}
|
|
3457
3457
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close-icon,
|
|
3458
3458
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit-icon,
|
|
3459
3459
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-delete-icon {
|
|
3460
|
-
font-size:
|
|
3460
|
+
font-size: 16px;
|
|
3461
3461
|
}
|
|
3462
3462
|
.e-quick-popup-wrapper.e-device.e-rtl .e-event-popup .e-popup-header .e-close {
|
|
3463
3463
|
margin-left: auto;
|
|
@@ -3486,9 +3486,13 @@
|
|
|
3486
3486
|
.e-bigger .e-quick-popup-wrapper.e-rtl .e-event-popup .e-date-time-icon {
|
|
3487
3487
|
padding-right: 13px;
|
|
3488
3488
|
}
|
|
3489
|
-
.e-bigger .e-quick-popup-wrapper .e-
|
|
3490
|
-
|
|
3491
|
-
|
|
3489
|
+
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-close.e-btn.e-small.e-round {
|
|
3490
|
+
height: 30px;
|
|
3491
|
+
width: 30px;
|
|
3492
|
+
}
|
|
3493
|
+
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-edit.e-btn.e-small.e-round,
|
|
3494
|
+
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-delete.e-btn.e-small.e-round,
|
|
3495
|
+
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-close.e-btn.e-small.e-round {
|
|
3492
3496
|
height: 30px;
|
|
3493
3497
|
width: 30px;
|
|
3494
3498
|
}
|
|
@@ -3502,8 +3506,13 @@
|
|
|
3502
3506
|
.e-bigger .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete-icon {
|
|
3503
3507
|
font-size: 14px;
|
|
3504
3508
|
}
|
|
3509
|
+
.e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit.e-btn.e-small.e-round,
|
|
3510
|
+
.e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-delete.e-btn.e-small.e-round,
|
|
3511
|
+
.e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close.e-btn.e-small.e-round {
|
|
3512
|
+
height: 35px;
|
|
3513
|
+
}
|
|
3505
3514
|
.e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-subject {
|
|
3506
|
-
padding:
|
|
3515
|
+
padding: 2px 5px;
|
|
3507
3516
|
}
|
|
3508
3517
|
|
|
3509
3518
|
.e-bigger .e-agenda-view .e-appointment {
|
|
@@ -4285,6 +4294,7 @@
|
|
|
4285
4294
|
.e-recurrenceeditor .e-input-wrapper.e-end-on-date,
|
|
4286
4295
|
.e-recurrenceeditor .e-input-wrapper.e-end-on-count {
|
|
4287
4296
|
padding-right: 0;
|
|
4297
|
+
margin-top: 16px;
|
|
4288
4298
|
}
|
|
4289
4299
|
.e-recurrenceeditor.e-rtl .e-end-on > div,
|
|
4290
4300
|
.e-recurrenceeditor.e-rtl .e-month-expander > div > div {
|
|
@@ -4324,7 +4334,7 @@
|
|
|
4324
4334
|
width: 30px;
|
|
4325
4335
|
}
|
|
4326
4336
|
.e-recurrenceeditor .e-days .e-week-expander-label {
|
|
4327
|
-
font-size:
|
|
4337
|
+
font-size: 12px;
|
|
4328
4338
|
font-weight: 400;
|
|
4329
4339
|
margin-bottom: 8px;
|
|
4330
4340
|
}
|
|
@@ -4359,13 +4369,6 @@
|
|
|
4359
4369
|
padding: 16px 20px 0;
|
|
4360
4370
|
width: 50%;
|
|
4361
4371
|
}
|
|
4362
|
-
.e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
4363
|
-
float: none;
|
|
4364
|
-
font-size: 10px;
|
|
4365
|
-
font-weight: 400;
|
|
4366
|
-
margin-bottom: 8px;
|
|
4367
|
-
padding-right: 16px;
|
|
4368
|
-
}
|
|
4369
4372
|
.e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4370
4373
|
padding-right: 16px;
|
|
4371
4374
|
}
|
|
@@ -4373,9 +4376,9 @@
|
|
|
4373
4376
|
margin: 0;
|
|
4374
4377
|
}
|
|
4375
4378
|
.e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
4376
|
-
font-size:
|
|
4379
|
+
font-size: 12px;
|
|
4377
4380
|
font-weight: 400;
|
|
4378
|
-
margin-bottom:
|
|
4381
|
+
margin-bottom: -2px;
|
|
4379
4382
|
padding-right: 16px;
|
|
4380
4383
|
}
|
|
4381
4384
|
.e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
|
|
@@ -4417,7 +4420,8 @@
|
|
|
4417
4420
|
}
|
|
4418
4421
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
4419
4422
|
font-size: 12px;
|
|
4420
|
-
margin-bottom:
|
|
4423
|
+
margin-bottom: -1px;
|
|
4424
|
+
font-weight: 400;
|
|
4421
4425
|
}
|
|
4422
4426
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4423
4427
|
padding-right: 16px;
|
|
@@ -4583,7 +4587,7 @@
|
|
|
4583
4587
|
}
|
|
4584
4588
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
|
|
4585
4589
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
4586
|
-
margin-bottom:
|
|
4590
|
+
margin-bottom: -2px;
|
|
4587
4591
|
}
|
|
4588
4592
|
.e-recurrenceeditor .e-editor > div {
|
|
4589
4593
|
margin-top: 20px;
|
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;
|