@syncfusion/ej2-schedule 23.2.7 → 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.
Files changed (119) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist/ej2-schedule.min.js +2 -2
  3. package/dist/ej2-schedule.umd.min.js +2 -2
  4. package/dist/ej2-schedule.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-schedule.es2015.js +272 -34
  6. package/dist/es6/ej2-schedule.es2015.js.map +1 -1
  7. package/dist/es6/ej2-schedule.es5.js +335 -64
  8. package/dist/es6/ej2-schedule.es5.js.map +1 -1
  9. package/dist/global/ej2-schedule.min.js +2 -2
  10. package/dist/global/ej2-schedule.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +16 -16
  13. package/src/recurrence-editor/recurrence-editor.js +4 -2
  14. package/src/schedule/actions/drag.js +4 -4
  15. package/src/schedule/base/schedule-model.d.ts +15 -1
  16. package/src/schedule/base/schedule.d.ts +14 -1
  17. package/src/schedule/base/schedule.js +5 -0
  18. package/src/schedule/base/type.d.ts +12 -0
  19. package/src/schedule/event-renderer/agenda-base.js +1 -1
  20. package/src/schedule/event-renderer/event-base.d.ts +1 -0
  21. package/src/schedule/event-renderer/event-base.js +25 -1
  22. package/src/schedule/event-renderer/month.js +9 -1
  23. package/src/schedule/event-renderer/timeline-view.js +8 -2
  24. package/src/schedule/event-renderer/year.js +12 -3
  25. package/src/schedule/models/models.d.ts +1 -0
  26. package/src/schedule/models/toolbar-model.d.ts +196 -0
  27. package/src/schedule/models/toolbar.d.ts +176 -0
  28. package/src/schedule/models/toolbar.js +85 -0
  29. package/src/schedule/models/views-model.d.ts +9 -0
  30. package/src/schedule/models/views.d.ts +8 -0
  31. package/src/schedule/models/views.js +3 -0
  32. package/src/schedule/popups/event-window.js +4 -10
  33. package/src/schedule/popups/quick-popups.js +2 -2
  34. package/src/schedule/renderer/header-renderer.d.ts +2 -0
  35. package/src/schedule/renderer/header-renderer.js +142 -4
  36. package/src/schedule/renderer/renderer.js +1 -1
  37. package/src/schedule/renderer/vertical-view.js +3 -3
  38. package/src/schedule/renderer/year.js +3 -0
  39. package/styles/bootstrap-dark.css +26 -22
  40. package/styles/bootstrap.css +26 -22
  41. package/styles/bootstrap4.css +25 -21
  42. package/styles/bootstrap5-dark.css +30 -26
  43. package/styles/bootstrap5.css +30 -26
  44. package/styles/fabric-dark.css +28 -24
  45. package/styles/fabric.css +28 -24
  46. package/styles/fluent-dark.css +28 -24
  47. package/styles/fluent.css +28 -24
  48. package/styles/highcontrast-light.css +26 -22
  49. package/styles/highcontrast.css +26 -22
  50. package/styles/material-dark.css +26 -22
  51. package/styles/material.css +26 -22
  52. package/styles/material3-dark.css +29 -25
  53. package/styles/material3.css +29 -25
  54. package/styles/recurrence-editor/_bootstrap-dark-definition.scss +3 -1
  55. package/styles/recurrence-editor/_bootstrap-definition.scss +3 -1
  56. package/styles/recurrence-editor/_bootstrap4-definition.scss +3 -1
  57. package/styles/recurrence-editor/_bootstrap5-definition.scss +5 -3
  58. package/styles/recurrence-editor/_fabric-dark-definition.scss +4 -2
  59. package/styles/recurrence-editor/_fabric-definition.scss +4 -2
  60. package/styles/recurrence-editor/_fluent-definition.scss +4 -2
  61. package/styles/recurrence-editor/_fusionnew-definition.scss +4 -2
  62. package/styles/recurrence-editor/_highcontrast-definition.scss +3 -1
  63. package/styles/recurrence-editor/_highcontrast-light-definition.scss +3 -1
  64. package/styles/recurrence-editor/_layout.scss +3 -10
  65. package/styles/recurrence-editor/_material-dark-definition.scss +3 -1
  66. package/styles/recurrence-editor/_material-definition.scss +3 -1
  67. package/styles/recurrence-editor/_material3-definition.scss +4 -2
  68. package/styles/recurrence-editor/_tailwind-definition.scss +5 -3
  69. package/styles/recurrence-editor/bootstrap-dark.css +5 -10
  70. package/styles/recurrence-editor/bootstrap.css +5 -10
  71. package/styles/recurrence-editor/bootstrap4.css +4 -9
  72. package/styles/recurrence-editor/bootstrap5-dark.css +9 -14
  73. package/styles/recurrence-editor/bootstrap5.css +9 -14
  74. package/styles/recurrence-editor/fabric-dark.css +7 -12
  75. package/styles/recurrence-editor/fabric.css +7 -12
  76. package/styles/recurrence-editor/fluent-dark.css +7 -12
  77. package/styles/recurrence-editor/fluent.css +7 -12
  78. package/styles/recurrence-editor/highcontrast-light.css +5 -10
  79. package/styles/recurrence-editor/highcontrast.css +5 -10
  80. package/styles/recurrence-editor/material-dark.css +5 -10
  81. package/styles/recurrence-editor/material.css +5 -10
  82. package/styles/recurrence-editor/material3-dark.css +7 -12
  83. package/styles/recurrence-editor/material3.css +7 -12
  84. package/styles/recurrence-editor/tailwind-dark.css +9 -14
  85. package/styles/recurrence-editor/tailwind.css +9 -14
  86. package/styles/schedule/_bootstrap-dark-definition.scss +6 -2
  87. package/styles/schedule/_bootstrap-definition.scss +6 -2
  88. package/styles/schedule/_bootstrap4-definition.scss +6 -2
  89. package/styles/schedule/_bootstrap5-definition.scss +6 -2
  90. package/styles/schedule/_fabric-dark-definition.scss +6 -2
  91. package/styles/schedule/_fabric-definition.scss +6 -2
  92. package/styles/schedule/_fluent-definition.scss +6 -2
  93. package/styles/schedule/_fusionnew-definition.scss +6 -2
  94. package/styles/schedule/_highcontrast-definition.scss +6 -2
  95. package/styles/schedule/_highcontrast-light-definition.scss +6 -2
  96. package/styles/schedule/_layout.scss +23 -10
  97. package/styles/schedule/_material-dark-definition.scss +6 -2
  98. package/styles/schedule/_material-definition.scss +6 -2
  99. package/styles/schedule/_material3-definition.scss +6 -2
  100. package/styles/schedule/_tailwind-definition.scss +6 -2
  101. package/styles/schedule/bootstrap-dark.css +21 -12
  102. package/styles/schedule/bootstrap.css +21 -12
  103. package/styles/schedule/bootstrap4.css +21 -12
  104. package/styles/schedule/bootstrap5-dark.css +21 -12
  105. package/styles/schedule/bootstrap5.css +21 -12
  106. package/styles/schedule/fabric-dark.css +21 -12
  107. package/styles/schedule/fabric.css +21 -12
  108. package/styles/schedule/fluent-dark.css +21 -12
  109. package/styles/schedule/fluent.css +21 -12
  110. package/styles/schedule/highcontrast-light.css +21 -12
  111. package/styles/schedule/highcontrast.css +21 -12
  112. package/styles/schedule/material-dark.css +21 -12
  113. package/styles/schedule/material.css +21 -12
  114. package/styles/schedule/material3-dark.css +22 -13
  115. package/styles/schedule/material3.css +22 -13
  116. package/styles/schedule/tailwind-dark.css +22 -13
  117. package/styles/schedule/tailwind.css +22 -13
  118. package/styles/tailwind-dark.css +31 -27
  119. package/styles/tailwind.css +31 -27
@@ -1193,7 +1193,7 @@
1193
1193
  text-decoration: none;
1194
1194
  }
1195
1195
  .e-schedule.e-device .e-vertical-view .e-left-indent {
1196
- width: 35px;
1196
+ width: 60px;
1197
1197
  }
1198
1198
  .e-schedule.e-device .e-vertical-view .e-clone-time-indicator,
1199
1199
  .e-schedule.e-device .e-vertical-view .e-current-time {
@@ -1201,7 +1201,7 @@
1201
1201
  }
1202
1202
  .e-schedule.e-device .e-vertical-view .e-time-cells-wrap {
1203
1203
  float: left;
1204
- width: 35px;
1204
+ width: 60px;
1205
1205
  }
1206
1206
  .e-schedule.e-device .e-vertical-view .e-time-cells-wrap table td {
1207
1207
  font-size: 11px;
@@ -1239,7 +1239,7 @@
1239
1239
  }
1240
1240
  @media screen and (max-width: 480px) {
1241
1241
  .e-schedule .e-vertical-view .e-left-indent {
1242
- width: 35px;
1242
+ width: 60px;
1243
1243
  }
1244
1244
  }
1245
1245
  .e-schedule .e-month-view .e-left-indent,
@@ -3389,8 +3389,8 @@
3389
3389
  background: transparent;
3390
3390
  border: 0;
3391
3391
  color: #000;
3392
- height: 40px;
3393
- width: 40px;
3392
+ height: 35px;
3393
+ width: 35px;
3394
3394
  }
3395
3395
  .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,
3396
3396
  .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit:focus,
@@ -3402,10 +3402,10 @@
3402
3402
  .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-subject {
3403
3403
  font-size: 15px;
3404
3404
  font-weight: 500;
3405
- height: 40px;
3405
+ height: 35px;
3406
3406
  line-height: 2.25;
3407
- padding: 4px 5px;
3408
- width: calc(100% - 95px);
3407
+ padding: 1px 5px;
3408
+ width: calc(100% - 105px);
3409
3409
  }
3410
3410
  .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close-icon,
3411
3411
  .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit-icon,
@@ -3439,9 +3439,13 @@
3439
3439
  .e-bigger .e-quick-popup-wrapper.e-rtl .e-event-popup .e-date-time-icon {
3440
3440
  padding-right: 13px;
3441
3441
  }
3442
- .e-bigger .e-quick-popup-wrapper .e-edit.e-btn.e-small.e-round,
3443
- .e-bigger .e-quick-popup-wrapper .e-delete.e-btn.e-small.e-round,
3444
- .e-bigger .e-quick-popup-wrapper .e-close.e-btn.e-small.e-round {
3442
+ .e-bigger .e-quick-popup-wrapper .e-cell-popup .e-close.e-btn.e-small.e-round {
3443
+ height: 2em;
3444
+ width: 2em;
3445
+ }
3446
+ .e-bigger .e-quick-popup-wrapper .e-event-popup .e-edit.e-btn.e-small.e-round,
3447
+ .e-bigger .e-quick-popup-wrapper .e-event-popup .e-delete.e-btn.e-small.e-round,
3448
+ .e-bigger .e-quick-popup-wrapper .e-event-popup .e-close.e-btn.e-small.e-round {
3445
3449
  height: 2em;
3446
3450
  width: 2em;
3447
3451
  }
@@ -3455,8 +3459,13 @@
3455
3459
  .e-bigger .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete-icon {
3456
3460
  font-size: 14px;
3457
3461
  }
3462
+ .e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit.e-btn.e-small.e-round,
3463
+ .e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-delete.e-btn.e-small.e-round,
3464
+ .e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close.e-btn.e-small.e-round {
3465
+ height: 35px;
3466
+ }
3458
3467
  .e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-subject {
3459
- padding: 0 5px 0 8px;
3468
+ padding: 0 5px;
3460
3469
  }
3461
3470
 
3462
3471
  .e-bigger .e-agenda-view .e-appointment {
@@ -4238,6 +4247,7 @@
4238
4247
  .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
4239
4248
  .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
4240
4249
  padding-right: 0;
4250
+ margin-top: 28px;
4241
4251
  }
4242
4252
  .e-recurrenceeditor.e-rtl .e-end-on > div,
4243
4253
  .e-recurrenceeditor.e-rtl .e-month-expander > div > div {
@@ -4312,13 +4322,6 @@
4312
4322
  padding: 16px 20px 0;
4313
4323
  width: 50%;
4314
4324
  }
4315
- .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
4316
- float: none;
4317
- font-size: 12px;
4318
- font-weight: 400;
4319
- margin-bottom: 7px;
4320
- padding-right: 16px;
4321
- }
4322
4325
  .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
4323
4326
  padding-right: 16px;
4324
4327
  }
@@ -4328,7 +4331,7 @@
4328
4331
  .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
4329
4332
  font-size: 12px;
4330
4333
  font-weight: 400;
4331
- margin-bottom: 7px;
4334
+ margin-bottom: 10px;
4332
4335
  padding-right: 16px;
4333
4336
  }
4334
4337
  .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
@@ -4370,7 +4373,8 @@
4370
4373
  }
4371
4374
  .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
4372
4375
  font-size: 12px;
4373
- margin-bottom: 0;
4376
+ margin-bottom: 10px;
4377
+ font-weight: 400;
4374
4378
  }
4375
4379
  .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
4376
4380
  padding-right: 5px;
@@ -4536,7 +4540,7 @@
4536
4540
  }
4537
4541
  .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
4538
4542
  .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
4539
- margin-bottom: 7px;
4543
+ margin-bottom: 10px;
4540
4544
  }
4541
4545
  .e-recurrenceeditor .e-editor > div {
4542
4546
  margin-top: 20px;
@@ -1202,7 +1202,7 @@
1202
1202
  text-decoration: none;
1203
1203
  }
1204
1204
  .e-schedule.e-device .e-vertical-view .e-left-indent {
1205
- width: 35px;
1205
+ width: 60px;
1206
1206
  }
1207
1207
  .e-schedule.e-device .e-vertical-view .e-clone-time-indicator,
1208
1208
  .e-schedule.e-device .e-vertical-view .e-current-time {
@@ -1210,7 +1210,7 @@
1210
1210
  }
1211
1211
  .e-schedule.e-device .e-vertical-view .e-time-cells-wrap {
1212
1212
  float: left;
1213
- width: 35px;
1213
+ width: 60px;
1214
1214
  }
1215
1215
  .e-schedule.e-device .e-vertical-view .e-time-cells-wrap table td {
1216
1216
  font-size: 11px;
@@ -1248,7 +1248,7 @@
1248
1248
  }
1249
1249
  @media screen and (max-width: 480px) {
1250
1250
  .e-schedule .e-vertical-view .e-left-indent {
1251
- width: 35px;
1251
+ width: 60px;
1252
1252
  }
1253
1253
  }
1254
1254
  .e-schedule .e-month-view .e-left-indent,
@@ -3398,8 +3398,8 @@
3398
3398
  background: transparent;
3399
3399
  border: 0;
3400
3400
  color: #fff;
3401
- height: 40px;
3402
- width: 40px;
3401
+ height: 35px;
3402
+ width: 35px;
3403
3403
  }
3404
3404
  .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,
3405
3405
  .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit:focus,
@@ -3411,10 +3411,10 @@
3411
3411
  .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-subject {
3412
3412
  font-size: 15px;
3413
3413
  font-weight: 500;
3414
- height: 40px;
3414
+ height: 35px;
3415
3415
  line-height: 2.25;
3416
- padding: 4px 5px;
3417
- width: calc(100% - 95px);
3416
+ padding: 1px 5px;
3417
+ width: calc(100% - 105px);
3418
3418
  }
3419
3419
  .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close-icon,
3420
3420
  .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit-icon,
@@ -3448,9 +3448,13 @@
3448
3448
  .e-bigger .e-quick-popup-wrapper.e-rtl .e-event-popup .e-date-time-icon {
3449
3449
  padding-right: 13px;
3450
3450
  }
3451
- .e-bigger .e-quick-popup-wrapper .e-edit.e-btn.e-small.e-round,
3452
- .e-bigger .e-quick-popup-wrapper .e-delete.e-btn.e-small.e-round,
3453
- .e-bigger .e-quick-popup-wrapper .e-close.e-btn.e-small.e-round {
3451
+ .e-bigger .e-quick-popup-wrapper .e-cell-popup .e-close.e-btn.e-small.e-round {
3452
+ height: 2em;
3453
+ width: 2em;
3454
+ }
3455
+ .e-bigger .e-quick-popup-wrapper .e-event-popup .e-edit.e-btn.e-small.e-round,
3456
+ .e-bigger .e-quick-popup-wrapper .e-event-popup .e-delete.e-btn.e-small.e-round,
3457
+ .e-bigger .e-quick-popup-wrapper .e-event-popup .e-close.e-btn.e-small.e-round {
3454
3458
  height: 2em;
3455
3459
  width: 2em;
3456
3460
  }
@@ -3464,8 +3468,13 @@
3464
3468
  .e-bigger .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete-icon {
3465
3469
  font-size: 14px;
3466
3470
  }
3471
+ .e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit.e-btn.e-small.e-round,
3472
+ .e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-delete.e-btn.e-small.e-round,
3473
+ .e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close.e-btn.e-small.e-round {
3474
+ height: 35px;
3475
+ }
3467
3476
  .e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-subject {
3468
- padding: 0 5px 0 8px;
3477
+ padding: 0 5px;
3469
3478
  }
3470
3479
 
3471
3480
  .e-bigger .e-agenda-view .e-appointment {
@@ -4247,6 +4256,7 @@
4247
4256
  .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
4248
4257
  .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
4249
4258
  padding-right: 0;
4259
+ margin-top: 28px;
4250
4260
  }
4251
4261
  .e-recurrenceeditor.e-rtl .e-end-on > div,
4252
4262
  .e-recurrenceeditor.e-rtl .e-month-expander > div > div {
@@ -4321,13 +4331,6 @@
4321
4331
  padding: 16px 20px 0;
4322
4332
  width: 50%;
4323
4333
  }
4324
- .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
4325
- float: none;
4326
- font-size: 12px;
4327
- font-weight: 400;
4328
- margin-bottom: 7px;
4329
- padding-right: 16px;
4330
- }
4331
4334
  .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
4332
4335
  padding-right: 16px;
4333
4336
  }
@@ -4337,7 +4340,7 @@
4337
4340
  .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
4338
4341
  font-size: 12px;
4339
4342
  font-weight: 400;
4340
- margin-bottom: 7px;
4343
+ margin-bottom: 10px;
4341
4344
  padding-right: 16px;
4342
4345
  }
4343
4346
  .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
@@ -4379,7 +4382,8 @@
4379
4382
  }
4380
4383
  .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
4381
4384
  font-size: 12px;
4382
- margin-bottom: 0;
4385
+ margin-bottom: 10px;
4386
+ font-weight: 400;
4383
4387
  }
4384
4388
  .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
4385
4389
  padding-right: 5px;
@@ -4545,7 +4549,7 @@
4545
4549
  }
4546
4550
  .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
4547
4551
  .e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
4548
- margin-bottom: 7px;
4552
+ margin-bottom: 10px;
4549
4553
  }
4550
4554
  .e-recurrenceeditor .e-editor > div {
4551
4555
  margin-top: 20px;
@@ -1137,7 +1137,7 @@
1137
1137
  text-decoration: none;
1138
1138
  }
1139
1139
  .e-schedule.e-device .e-vertical-view .e-left-indent {
1140
- width: 35px;
1140
+ width: 60px;
1141
1141
  }
1142
1142
  .e-schedule.e-device .e-vertical-view .e-clone-time-indicator,
1143
1143
  .e-schedule.e-device .e-vertical-view .e-current-time {
@@ -1145,7 +1145,7 @@
1145
1145
  }
1146
1146
  .e-schedule.e-device .e-vertical-view .e-time-cells-wrap {
1147
1147
  float: left;
1148
- width: 35px;
1148
+ width: 60px;
1149
1149
  }
1150
1150
  .e-schedule.e-device .e-vertical-view .e-time-cells-wrap table td {
1151
1151
  font-size: 11px;
@@ -1183,7 +1183,7 @@
1183
1183
  }
1184
1184
  @media screen and (max-width: 480px) {
1185
1185
  .e-schedule .e-vertical-view .e-left-indent {
1186
- width: 35px;
1186
+ width: 60px;
1187
1187
  }
1188
1188
  }
1189
1189
  .e-schedule .e-month-view .e-left-indent,
@@ -3333,8 +3333,8 @@
3333
3333
  background: transparent;
3334
3334
  border: 0;
3335
3335
  color: #fff;
3336
- height: 40px;
3337
- width: 40px;
3336
+ height: 35px;
3337
+ width: 35px;
3338
3338
  }
3339
3339
  .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,
3340
3340
  .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit:focus,
@@ -3346,10 +3346,10 @@
3346
3346
  .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-subject {
3347
3347
  font-size: 15px;
3348
3348
  font-weight: 500;
3349
- height: 40px;
3349
+ height: 35px;
3350
3350
  line-height: 2.25;
3351
- padding: 4px 5px;
3352
- width: calc(100% - 95px);
3351
+ padding: 2px 5px;
3352
+ width: calc(100% - 105px);
3353
3353
  }
3354
3354
  .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close-icon,
3355
3355
  .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit-icon,
@@ -3383,9 +3383,13 @@
3383
3383
  .e-bigger .e-quick-popup-wrapper.e-rtl .e-event-popup .e-date-time-icon {
3384
3384
  padding-right: 13px;
3385
3385
  }
3386
- .e-bigger .e-quick-popup-wrapper .e-edit.e-btn.e-small.e-round,
3387
- .e-bigger .e-quick-popup-wrapper .e-delete.e-btn.e-small.e-round,
3388
- .e-bigger .e-quick-popup-wrapper .e-close.e-btn.e-small.e-round {
3386
+ .e-bigger .e-quick-popup-wrapper .e-cell-popup .e-close.e-btn.e-small.e-round {
3387
+ height: 2.8572em;
3388
+ width: 2.8572em;
3389
+ }
3390
+ .e-bigger .e-quick-popup-wrapper .e-event-popup .e-edit.e-btn.e-small.e-round,
3391
+ .e-bigger .e-quick-popup-wrapper .e-event-popup .e-delete.e-btn.e-small.e-round,
3392
+ .e-bigger .e-quick-popup-wrapper .e-event-popup .e-close.e-btn.e-small.e-round {
3389
3393
  height: 2.8572em;
3390
3394
  width: 2.8572em;
3391
3395
  }
@@ -3399,8 +3403,13 @@
3399
3403
  .e-bigger .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete-icon {
3400
3404
  font-size: 14px;
3401
3405
  }
3406
+ .e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit.e-btn.e-small.e-round,
3407
+ .e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-delete.e-btn.e-small.e-round,
3408
+ .e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close.e-btn.e-small.e-round {
3409
+ height: 35px;
3410
+ }
3402
3411
  .e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-subject {
3403
- padding: 5px 5px 0 8px;
3412
+ padding: 3px 5px;
3404
3413
  }
3405
3414
 
3406
3415
  .e-bigger .e-agenda-view .e-appointment {
@@ -4182,6 +4191,7 @@
4182
4191
  .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
4183
4192
  .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
4184
4193
  padding-right: 0;
4194
+ margin-top: 16px;
4185
4195
  }
4186
4196
  .e-recurrenceeditor.e-rtl .e-end-on > div,
4187
4197
  .e-recurrenceeditor.e-rtl .e-month-expander > div > div {
@@ -4221,7 +4231,7 @@
4221
4231
  width: 30px;
4222
4232
  }
4223
4233
  .e-recurrenceeditor .e-days .e-week-expander-label {
4224
- font-size: 12px;
4234
+ font-size: 13px;
4225
4235
  font-weight: 400;
4226
4236
  margin-bottom: 8px;
4227
4237
  }
@@ -4256,13 +4266,6 @@
4256
4266
  padding: 16px 20px 0;
4257
4267
  width: 50%;
4258
4268
  }
4259
- .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
4260
- float: none;
4261
- font-size: 12px;
4262
- font-weight: 400;
4263
- margin-bottom: 1px;
4264
- padding-right: 16px;
4265
- }
4266
4269
  .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
4267
4270
  padding-right: 16px;
4268
4271
  }
@@ -4270,7 +4273,7 @@
4270
4273
  margin: 0;
4271
4274
  }
4272
4275
  .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
4273
- font-size: 12px;
4276
+ font-size: 13px;
4274
4277
  font-weight: 400;
4275
4278
  margin-bottom: 1px;
4276
4279
  padding-right: 16px;
@@ -4314,7 +4317,8 @@
4314
4317
  }
4315
4318
  .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
4316
4319
  font-size: 12px;
4317
- margin-bottom: 0;
4320
+ margin-bottom: 3px;
4321
+ font-weight: 400;
4318
4322
  }
4319
4323
  .e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
4320
4324
  padding-right: 16px;
@@ -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: 35px;
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: 35px;
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: 35px;
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: 40px;
3373
- width: 40px;
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: 40px;
3385
+ height: 35px;
3386
3386
  line-height: 2.25;
3387
- padding: 4px 5px;
3388
- width: calc(100% - 95px);
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-edit.e-btn.e-small.e-round,
3423
- .e-bigger .e-quick-popup-wrapper .e-delete.e-btn.e-small.e-round,
3424
- .e-bigger .e-quick-popup-wrapper .e-close.e-btn.e-small.e-round {
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: 5px 5px 0 8px;
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: 12px;
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: 12px;
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: 0;
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: 44px;
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: 44px;
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: 44px;
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: 40px;
3440
- width: 40px;
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: 40px;
3452
+ height: 35px;
3453
3453
  line-height: 2.25;
3454
- padding: 4px 5px;
3455
- width: calc(100% - 95px);
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: 14px;
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-edit.e-btn.e-small.e-round,
3490
- .e-bigger .e-quick-popup-wrapper .e-delete.e-btn.e-small.e-round,
3491
- .e-bigger .e-quick-popup-wrapper .e-close.e-btn.e-small.e-round {
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: 5px 5px 0 8px;
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: 10px;
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: 10px;
4379
+ font-size: 12px;
4377
4380
  font-weight: 400;
4378
- margin-bottom: 8px;
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: 0;
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: 8px;
4590
+ margin-bottom: -2px;
4587
4591
  }
4588
4592
  .e-recurrenceeditor .e-editor > div {
4589
4593
  margin-top: 20px;