@syncfusion/ej2-schedule 24.2.4 → 25.1.35

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 (90) hide show
  1. package/CHANGELOG.md +16 -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 +131 -59
  6. package/dist/es6/ej2-schedule.es2015.js.map +1 -1
  7. package/dist/es6/ej2-schedule.es5.js +131 -58
  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/schedule/actions/crud.js +6 -0
  14. package/src/schedule/actions/drag.js +3 -3
  15. package/src/schedule/actions/keyboard.d.ts +1 -0
  16. package/src/schedule/actions/keyboard.js +11 -4
  17. package/src/schedule/actions/resize.js +22 -21
  18. package/src/schedule/actions/virtual-scroll.js +4 -0
  19. package/src/schedule/base/interface.d.ts +1 -0
  20. package/src/schedule/base/schedule.d.ts +4 -1
  21. package/src/schedule/base/schedule.js +16 -1
  22. package/src/schedule/base/util.d.ts +21 -0
  23. package/src/schedule/base/util.js +29 -2
  24. package/src/schedule/event-renderer/event-base.d.ts +0 -1
  25. package/src/schedule/event-renderer/event-base.js +0 -3
  26. package/src/schedule/event-renderer/inline-edit.js +1 -1
  27. package/src/schedule/event-renderer/month.js +2 -2
  28. package/src/schedule/event-renderer/timeline-view.js +5 -5
  29. package/src/schedule/event-renderer/vertical-view.js +1 -1
  30. package/src/schedule/event-renderer/year.js +3 -3
  31. package/src/schedule/popups/quick-popups.js +11 -0
  32. package/src/schedule/renderer/renderer.js +11 -3
  33. package/src/schedule/renderer/timeline-view.d.ts +0 -1
  34. package/src/schedule/renderer/timeline-view.js +3 -6
  35. package/src/schedule/renderer/vertical-view.js +1 -1
  36. package/src/schedule/renderer/view-base.js +1 -1
  37. package/styles/bootstrap-dark.css +51 -2
  38. package/styles/bootstrap.css +51 -2
  39. package/styles/bootstrap4.css +48 -3
  40. package/styles/bootstrap5-dark.css +48 -3
  41. package/styles/bootstrap5.css +48 -3
  42. package/styles/fabric-dark.css +47 -2
  43. package/styles/fabric.css +47 -2
  44. package/styles/fluent-dark.css +52 -2
  45. package/styles/fluent.css +52 -2
  46. package/styles/highcontrast-light.css +47 -2
  47. package/styles/highcontrast.css +47 -2
  48. package/styles/material-dark.css +47 -2
  49. package/styles/material.css +47 -2
  50. package/styles/material3-dark.css +48 -3
  51. package/styles/material3.css +48 -3
  52. package/styles/recurrence-editor/_bds-definition.scss +15 -0
  53. package/styles/schedule/_bds-definition.scss +287 -0
  54. package/styles/schedule/_bootstrap-dark-definition.scss +1 -0
  55. package/styles/schedule/_bootstrap-definition.scss +1 -0
  56. package/styles/schedule/_bootstrap4-definition.scss +2 -1
  57. package/styles/schedule/_bootstrap5-definition.scss +2 -1
  58. package/styles/schedule/_fabric-dark-definition.scss +1 -0
  59. package/styles/schedule/_fabric-definition.scss +1 -0
  60. package/styles/schedule/_fluent-definition.scss +1 -0
  61. package/styles/schedule/_fusionnew-definition.scss +2 -1
  62. package/styles/schedule/_highcontrast-definition.scss +1 -0
  63. package/styles/schedule/_highcontrast-light-definition.scss +1 -0
  64. package/styles/schedule/_layout.scss +60 -1
  65. package/styles/schedule/_material-dark-definition.scss +1 -0
  66. package/styles/schedule/_material-definition.scss +1 -0
  67. package/styles/schedule/_material3-definition.scss +2 -1
  68. package/styles/schedule/_tailwind-definition.scss +2 -1
  69. package/styles/schedule/bootstrap-dark.css +51 -2
  70. package/styles/schedule/bootstrap.css +51 -2
  71. package/styles/schedule/bootstrap4.css +48 -3
  72. package/styles/schedule/bootstrap5-dark.css +48 -3
  73. package/styles/schedule/bootstrap5.css +48 -3
  74. package/styles/schedule/fabric-dark.css +47 -2
  75. package/styles/schedule/fabric.css +47 -2
  76. package/styles/schedule/fluent-dark.css +52 -2
  77. package/styles/schedule/fluent.css +52 -2
  78. package/styles/schedule/highcontrast-light.css +47 -2
  79. package/styles/schedule/highcontrast.css +47 -2
  80. package/styles/schedule/icons/_bds.scss +235 -0
  81. package/styles/schedule/material-dark.css +47 -2
  82. package/styles/schedule/material.css +47 -2
  83. package/styles/schedule/material3-dark.css +48 -3
  84. package/styles/schedule/material3.css +48 -3
  85. package/styles/schedule/tailwind-dark.css +48 -3
  86. package/styles/schedule/tailwind.css +48 -3
  87. package/styles/tailwind-dark.css +48 -3
  88. package/styles/tailwind.css +48 -3
  89. package/.github/PULL_REQUEST_TEMPLATE/Bug.md +0 -63
  90. package/.github/PULL_REQUEST_TEMPLATE/Feature.md +0 -39
@@ -32,6 +32,7 @@
32
32
  }
33
33
 
34
34
  .e-toolbar-items {
35
+ height: $schedule-tbar-min-height;
35
36
 
36
37
  &.e-tbar-pos {
37
38
  height: $schedule-tbar-min-height;
@@ -173,6 +174,8 @@
173
174
  }
174
175
 
175
176
  .e-toolbar-items {
177
+ height: $schedule-tbar-bgr-size;
178
+
176
179
  &.e-tbar-pos {
177
180
  height: $schedule-tbar-bgr-size;
178
181
  min-height: $schedule-tbar-bgr-size;
@@ -210,6 +213,28 @@
210
213
  }
211
214
  }
212
215
 
216
+ @media screen and (max-width: 320px) {
217
+ .e-schedule-toolbar {
218
+ .e-toolbar-pop {
219
+ width: 100%;
220
+
221
+ .e-toolbar-item .e-tbar-btn.e-btn {
222
+ padding-left: 7px;
223
+ }
224
+
225
+ &.e-rtl {
226
+ .e-toolbar-item .e-tbar-btn.e-btn {
227
+ padding-right: 7px;
228
+ }
229
+ }
230
+ }
231
+
232
+ .e-tbar-btn .e-tbar-btn-text {
233
+ font-size: $schedule-device-font-size;
234
+ }
235
+ }
236
+ }
237
+
213
238
  .e-schedule-resource-toolbar {
214
239
  background: $schedule-tbar-default-bg;
215
240
  border-bottom: $schedule-tbar-border-bottom-size;
@@ -2701,7 +2726,7 @@
2701
2726
  .e-toolbar-item {
2702
2727
  min-height: $schedule-tbar-bgr-items-size;
2703
2728
 
2704
- &:not(.e-separator) {
2729
+ &:not(.e-separator):not(.e-spacer) {
2705
2730
  min-width: $schedule-tbar-bgr-item-size;
2706
2731
  }
2707
2732
 
@@ -3103,7 +3128,24 @@
3103
3128
  }
3104
3129
  }
3105
3130
  }
3131
+
3132
+ /*! schedule event window for smaller viewports*/
3133
+ @media screen and (max-width: 320px) {
3134
+ .e-schedule-dialog.e-popup.e-popup-open {
3135
+ max-height: 350px;
3136
+ min-width: 100%;
3137
+ }
3106
3138
 
3139
+ .e-schedule-dialog {
3140
+ .e-all-day-container {
3141
+ padding-bottom: 10px;
3142
+ }
3143
+
3144
+ .e-all-day-time-zone-row {
3145
+ display: block;
3146
+ }
3147
+ }
3148
+ }
3107
3149
  .e-ddl.e-popup {
3108
3150
  .e-resource-template {
3109
3151
  display: flex;
@@ -3787,6 +3829,23 @@
3787
3829
  }
3788
3830
  }
3789
3831
 
3832
+ /*! schedule quick popup for smaller viewports */
3833
+ @media screen and (max-width: 320px) {
3834
+ .e-quick-popup-wrapper {
3835
+ min-width: 100%;
3836
+
3837
+ .e-popup-footer {
3838
+ padding-left: 5px;
3839
+ }
3840
+
3841
+ &.e-rtl {
3842
+ .e-popup-footer {
3843
+ padding-right: 5px;
3844
+ }
3845
+ }
3846
+ }
3847
+ }
3848
+
3790
3849
  .e-bigger .e-quick-popup-wrapper {
3791
3850
  .e-cell-popup .e-popup-content .e-popup-table .e-subject {
3792
3851
  font-size: 24px;
@@ -148,6 +148,7 @@ $schedule-tbar-right-items-btn-border-radius: 0 !default;
148
148
  $schedule-tbar-right-active-items-btn-border: none !default;
149
149
  $schedule-device-tbar-right-items-btn-border-radius: 0 !default;
150
150
  $schedule-device-tbar-right-items-btn-border: none !default;
151
+ $schedule-device-font-size: 8px !default;
151
152
 
152
153
  $schedule-content-nrml-font-text-transform: uppercase !default;
153
154
  $schedule-header-hover-border-radius: 0% !default;
@@ -145,6 +145,7 @@ $schedule-tbar-right-items-btn-border-radius: 0 !default;
145
145
  $schedule-tbar-right-active-items-btn-border: none !default;
146
146
  $schedule-device-tbar-right-items-btn-border-radius: 0 !default;
147
147
  $schedule-device-tbar-right-items-btn-border: none !default;
148
+ $schedule-device-font-size: 8px !default;
148
149
 
149
150
  $schedule-content-nrml-font-text-transform: uppercase !default;
150
151
  $schedule-header-hover-border-radius: 100% !default;
@@ -165,6 +165,7 @@ $schedule-tbar-right-items-btn-border-radius: 20px !default;
165
165
  $schedule-tbar-right-active-items-btn-border: 1px solid rgba($primary) !default;
166
166
  $schedule-device-tbar-right-items-btn-border-radius: 0 !default;
167
167
  $schedule-device-tbar-right-items-btn-border: none !default;
168
+ $schedule-device-font-size: 8px !default;
168
169
 
169
170
  // view definitions
170
171
  $schedule-timeline-header-cells-height: 40px !default;
@@ -222,7 +223,7 @@ $schedule-header-day-line-height: 20px !default;
222
223
  $schedule-header-day-padding-bottom: 4px !default;
223
224
  $schedule-month-header-cells-nrml-height: 34px !default;
224
225
  $schedule-month-header-cells-bgr-height: 38px !default;
225
- $schedule-month-header-cells-padding: 8px !default;
226
+ $schedule-month-header-cells-padding: 3px !default;
226
227
  $schedule-allday-cells-height: 0 !default;
227
228
  $schedule-work-cells-height: 36px !default;
228
229
  $schedule-work-cells-width: 36px !default;
@@ -35,7 +35,7 @@ $schedule-header-cells-height: 60px !default;
35
35
  $schedule-header-cells-width: 36px !default;
36
36
  $schedule-month-header-cells-nrml-height: 34px !default;
37
37
  $schedule-month-header-cells-bgr-height: 38px !default;
38
- $schedule-month-header-cells-padding: 8px !default;
38
+ $schedule-month-header-cells-padding: 3px !default;
39
39
  $schedule-allday-cells-height: 0 !default;
40
40
  $schedule-work-cells-height: 36px !default;
41
41
  $schedule-work-cells-width: 36px !default;
@@ -150,6 +150,7 @@ $schedule-tbar-right-items-btn-border-radius: 0 !default;
150
150
  $schedule-tbar-right-active-items-btn-border: none !default;
151
151
  $schedule-device-tbar-right-items-btn-border-radius: 0 !default;
152
152
  $schedule-device-tbar-right-items-btn-border: none !default;
153
+ $schedule-device-font-size: 8px !default;
153
154
 
154
155
  $schedule-content-nrml-font-text-transform: none !default;
155
156
  $schedule-header-hover-border-radius: 100% !default;
@@ -138,6 +138,10 @@
138
138
  color: #fff;
139
139
  }
140
140
 
141
+ .e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
142
+ margin-top: -3.2em;
143
+ }
144
+
141
145
  /*! recurrence editor theme wise definitions*/ /*! Schedule component's bootstrap theme definitions and variables */
142
146
  .e-schedule .e-schedule-toolbar .e-icon-prev::before {
143
147
  content: "\e990";
@@ -323,6 +327,9 @@
323
327
  font-size: 14px;
324
328
  text-transform: initial;
325
329
  }
330
+ .e-schedule .e-schedule-toolbar .e-toolbar-items {
331
+ height: 43px;
332
+ }
326
333
  .e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
327
334
  height: 43px;
328
335
  min-height: 43px;
@@ -395,6 +402,9 @@
395
402
  .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:hover, .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:focus {
396
403
  height: calc(100% - 20px);
397
404
  }
405
+ .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items {
406
+ height: 56px;
407
+ }
398
408
  .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
399
409
  height: 56px;
400
410
  min-height: 56px;
@@ -421,6 +431,20 @@
421
431
  .e-schedule.e-device .e-content-wrap.e-scroll-hidden {
422
432
  overflow: hidden;
423
433
  }
434
+ @media screen and (max-width: 320px) {
435
+ .e-schedule .e-schedule-toolbar .e-toolbar-pop {
436
+ width: 100%;
437
+ }
438
+ .e-schedule .e-schedule-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
439
+ padding-left: 7px;
440
+ }
441
+ .e-schedule .e-schedule-toolbar .e-toolbar-pop.e-rtl .e-toolbar-item .e-tbar-btn.e-btn {
442
+ padding-right: 7px;
443
+ }
444
+ .e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
445
+ font-size: 8px;
446
+ }
447
+ }
424
448
  .e-schedule .e-schedule-resource-toolbar {
425
449
  background: #131313;
426
450
  border-bottom: 1px solid #505050;
@@ -2468,8 +2492,8 @@
2468
2492
  .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
2469
2493
  min-height: 56px;
2470
2494
  }
2471
- .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
2472
- .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
2495
+ .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
2496
+ .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
2473
2497
  min-width: 34px;
2474
2498
  }
2475
2499
  .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
@@ -2789,6 +2813,19 @@
2789
2813
  float: right;
2790
2814
  }
2791
2815
 
2816
+ /*! schedule event window for smaller viewports*/
2817
+ @media screen and (max-width: 320px) {
2818
+ .e-schedule-dialog.e-popup.e-popup-open {
2819
+ max-height: 350px;
2820
+ min-width: 100%;
2821
+ }
2822
+ .e-schedule-dialog .e-all-day-container {
2823
+ padding-bottom: 10px;
2824
+ }
2825
+ .e-schedule-dialog .e-all-day-time-zone-row {
2826
+ display: block;
2827
+ }
2828
+ }
2792
2829
  .e-ddl.e-popup .e-resource-template {
2793
2830
  display: -ms-flexbox;
2794
2831
  display: flex;
@@ -3378,6 +3415,18 @@
3378
3415
  margin-right: 0;
3379
3416
  }
3380
3417
 
3418
+ /*! schedule quick popup for smaller viewports */
3419
+ @media screen and (max-width: 320px) {
3420
+ .e-quick-popup-wrapper {
3421
+ min-width: 100%;
3422
+ }
3423
+ .e-quick-popup-wrapper .e-popup-footer {
3424
+ padding-left: 5px;
3425
+ }
3426
+ .e-quick-popup-wrapper.e-rtl .e-popup-footer {
3427
+ padding-right: 5px;
3428
+ }
3429
+ }
3381
3430
  .e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
3382
3431
  font-size: 24px;
3383
3432
  }
@@ -133,6 +133,10 @@
133
133
  width: 40px;
134
134
  }
135
135
 
136
+ .e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
137
+ margin-top: -3.2em;
138
+ }
139
+
136
140
  /*! recurrence editor theme wise definitions*/ /*! Schedule component's bootstrap theme definitions and variables */
137
141
  .e-schedule .e-schedule-toolbar .e-icon-prev::before {
138
142
  content: "\e990";
@@ -318,6 +322,9 @@
318
322
  font-size: 14px;
319
323
  text-transform: initial;
320
324
  }
325
+ .e-schedule .e-schedule-toolbar .e-toolbar-items {
326
+ height: 43px;
327
+ }
321
328
  .e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
322
329
  height: 43px;
323
330
  min-height: 43px;
@@ -390,6 +397,9 @@
390
397
  .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:hover, .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:focus {
391
398
  height: calc(100% - 20px);
392
399
  }
400
+ .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items {
401
+ height: 56px;
402
+ }
393
403
  .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
394
404
  height: 56px;
395
405
  min-height: 56px;
@@ -416,6 +426,20 @@
416
426
  .e-schedule.e-device .e-content-wrap.e-scroll-hidden {
417
427
  overflow: hidden;
418
428
  }
429
+ @media screen and (max-width: 320px) {
430
+ .e-schedule .e-schedule-toolbar .e-toolbar-pop {
431
+ width: 100%;
432
+ }
433
+ .e-schedule .e-schedule-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
434
+ padding-left: 7px;
435
+ }
436
+ .e-schedule .e-schedule-toolbar .e-toolbar-pop.e-rtl .e-toolbar-item .e-tbar-btn.e-btn {
437
+ padding-right: 7px;
438
+ }
439
+ .e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
440
+ font-size: 8px;
441
+ }
442
+ }
419
443
  .e-schedule .e-schedule-resource-toolbar {
420
444
  background: #f8f8f8;
421
445
  border-bottom: 1px solid #ddd;
@@ -2463,8 +2487,8 @@
2463
2487
  .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
2464
2488
  min-height: 56px;
2465
2489
  }
2466
- .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
2467
- .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
2490
+ .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
2491
+ .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
2468
2492
  min-width: 34px;
2469
2493
  }
2470
2494
  .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
@@ -2784,6 +2808,19 @@
2784
2808
  float: right;
2785
2809
  }
2786
2810
 
2811
+ /*! schedule event window for smaller viewports*/
2812
+ @media screen and (max-width: 320px) {
2813
+ .e-schedule-dialog.e-popup.e-popup-open {
2814
+ max-height: 350px;
2815
+ min-width: 100%;
2816
+ }
2817
+ .e-schedule-dialog .e-all-day-container {
2818
+ padding-bottom: 10px;
2819
+ }
2820
+ .e-schedule-dialog .e-all-day-time-zone-row {
2821
+ display: block;
2822
+ }
2823
+ }
2787
2824
  .e-ddl.e-popup .e-resource-template {
2788
2825
  display: -ms-flexbox;
2789
2826
  display: flex;
@@ -3373,6 +3410,18 @@
3373
3410
  margin-right: 0;
3374
3411
  }
3375
3412
 
3413
+ /*! schedule quick popup for smaller viewports */
3414
+ @media screen and (max-width: 320px) {
3415
+ .e-quick-popup-wrapper {
3416
+ min-width: 100%;
3417
+ }
3418
+ .e-quick-popup-wrapper .e-popup-footer {
3419
+ padding-left: 5px;
3420
+ }
3421
+ .e-quick-popup-wrapper.e-rtl .e-popup-footer {
3422
+ padding-right: 5px;
3423
+ }
3424
+ }
3376
3425
  .e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
3377
3426
  font-size: 24px;
3378
3427
  }
@@ -427,6 +427,9 @@
427
427
  font-size: 14px;
428
428
  text-transform: initial;
429
429
  }
430
+ .e-schedule .e-schedule-toolbar .e-toolbar-items {
431
+ height: 46px;
432
+ }
430
433
  .e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
431
434
  height: 46px;
432
435
  min-height: 46px;
@@ -499,6 +502,9 @@
499
502
  .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:hover, .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:focus {
500
503
  height: calc(100% - 20px);
501
504
  }
505
+ .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items {
506
+ height: 54px;
507
+ }
502
508
  .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
503
509
  height: 54px;
504
510
  min-height: 54px;
@@ -525,6 +531,20 @@
525
531
  .e-schedule.e-device .e-content-wrap.e-scroll-hidden {
526
532
  overflow: hidden;
527
533
  }
534
+ @media screen and (max-width: 320px) {
535
+ .e-schedule .e-schedule-toolbar .e-toolbar-pop {
536
+ width: 100%;
537
+ }
538
+ .e-schedule .e-schedule-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
539
+ padding-left: 7px;
540
+ }
541
+ .e-schedule .e-schedule-toolbar .e-toolbar-pop.e-rtl .e-toolbar-item .e-tbar-btn.e-btn {
542
+ padding-right: 7px;
543
+ }
544
+ .e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
545
+ font-size: 8px;
546
+ }
547
+ }
528
548
  .e-schedule .e-schedule-resource-toolbar {
529
549
  background: #f8f9fa;
530
550
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
@@ -1358,7 +1378,7 @@
1358
1378
  cursor: default;
1359
1379
  font-weight: normal;
1360
1380
  height: 35px;
1361
- padding: 8px;
1381
+ padding: 3px;
1362
1382
  }
1363
1383
  .e-schedule .e-month-view .e-content-table {
1364
1384
  height: 100%;
@@ -2572,8 +2592,8 @@
2572
2592
  .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
2573
2593
  min-height: 54px;
2574
2594
  }
2575
- .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
2576
- .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
2595
+ .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
2596
+ .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
2577
2597
  min-width: 34px;
2578
2598
  }
2579
2599
  .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
@@ -2893,6 +2913,19 @@
2893
2913
  float: right;
2894
2914
  }
2895
2915
 
2916
+ /*! schedule event window for smaller viewports*/
2917
+ @media screen and (max-width: 320px) {
2918
+ .e-schedule-dialog.e-popup.e-popup-open {
2919
+ max-height: 350px;
2920
+ min-width: 100%;
2921
+ }
2922
+ .e-schedule-dialog .e-all-day-container {
2923
+ padding-bottom: 10px;
2924
+ }
2925
+ .e-schedule-dialog .e-all-day-time-zone-row {
2926
+ display: block;
2927
+ }
2928
+ }
2896
2929
  .e-ddl.e-popup .e-resource-template {
2897
2930
  display: -ms-flexbox;
2898
2931
  display: flex;
@@ -3482,6 +3515,18 @@
3482
3515
  margin-right: 0;
3483
3516
  }
3484
3517
 
3518
+ /*! schedule quick popup for smaller viewports */
3519
+ @media screen and (max-width: 320px) {
3520
+ .e-quick-popup-wrapper {
3521
+ min-width: 100%;
3522
+ }
3523
+ .e-quick-popup-wrapper .e-popup-footer {
3524
+ padding-left: 5px;
3525
+ }
3526
+ .e-quick-popup-wrapper.e-rtl .e-popup-footer {
3527
+ padding-right: 5px;
3528
+ }
3529
+ }
3485
3530
  .e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
3486
3531
  font-size: 24px;
3487
3532
  }
@@ -372,6 +372,9 @@
372
372
  font-size: 14px;
373
373
  text-transform: none;
374
374
  }
375
+ .e-schedule .e-schedule-toolbar .e-toolbar-items {
376
+ height: 38px;
377
+ }
375
378
  .e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
376
379
  height: 38px;
377
380
  min-height: 38px;
@@ -444,6 +447,9 @@
444
447
  .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:hover, .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:focus {
445
448
  height: calc(100% - 20px);
446
449
  }
450
+ .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items {
451
+ height: 54px;
452
+ }
447
453
  .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
448
454
  height: 54px;
449
455
  min-height: 54px;
@@ -470,6 +476,20 @@
470
476
  .e-schedule.e-device .e-content-wrap.e-scroll-hidden {
471
477
  overflow: hidden;
472
478
  }
479
+ @media screen and (max-width: 320px) {
480
+ .e-schedule .e-schedule-toolbar .e-toolbar-pop {
481
+ width: 100%;
482
+ }
483
+ .e-schedule .e-schedule-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
484
+ padding-left: 7px;
485
+ }
486
+ .e-schedule .e-schedule-toolbar .e-toolbar-pop.e-rtl .e-toolbar-item .e-tbar-btn.e-btn {
487
+ padding-right: 7px;
488
+ }
489
+ .e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
490
+ font-size: 8px;
491
+ }
492
+ }
473
493
  .e-schedule .e-schedule-resource-toolbar {
474
494
  background: #282d31;
475
495
  border-bottom: 0;
@@ -1303,7 +1323,7 @@
1303
1323
  cursor: default;
1304
1324
  font-weight: normal;
1305
1325
  height: 34px;
1306
- padding: 8px;
1326
+ padding: 3px;
1307
1327
  }
1308
1328
  .e-schedule .e-month-view .e-content-table {
1309
1329
  height: 100%;
@@ -2517,8 +2537,8 @@
2517
2537
  .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
2518
2538
  min-height: 54px;
2519
2539
  }
2520
- .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
2521
- .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
2540
+ .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
2541
+ .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
2522
2542
  min-width: 34px;
2523
2543
  }
2524
2544
  .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
@@ -2838,6 +2858,19 @@
2838
2858
  float: right;
2839
2859
  }
2840
2860
 
2861
+ /*! schedule event window for smaller viewports*/
2862
+ @media screen and (max-width: 320px) {
2863
+ .e-schedule-dialog.e-popup.e-popup-open {
2864
+ max-height: 350px;
2865
+ min-width: 100%;
2866
+ }
2867
+ .e-schedule-dialog .e-all-day-container {
2868
+ padding-bottom: 10px;
2869
+ }
2870
+ .e-schedule-dialog .e-all-day-time-zone-row {
2871
+ display: block;
2872
+ }
2873
+ }
2841
2874
  .e-ddl.e-popup .e-resource-template {
2842
2875
  display: -ms-flexbox;
2843
2876
  display: flex;
@@ -3427,6 +3460,18 @@
3427
3460
  margin-right: 0;
3428
3461
  }
3429
3462
 
3463
+ /*! schedule quick popup for smaller viewports */
3464
+ @media screen and (max-width: 320px) {
3465
+ .e-quick-popup-wrapper {
3466
+ min-width: 100%;
3467
+ }
3468
+ .e-quick-popup-wrapper .e-popup-footer {
3469
+ padding-left: 5px;
3470
+ }
3471
+ .e-quick-popup-wrapper.e-rtl .e-popup-footer {
3472
+ padding-right: 5px;
3473
+ }
3474
+ }
3430
3475
  .e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
3431
3476
  font-size: 24px;
3432
3477
  }
@@ -372,6 +372,9 @@
372
372
  font-size: 14px;
373
373
  text-transform: none;
374
374
  }
375
+ .e-schedule .e-schedule-toolbar .e-toolbar-items {
376
+ height: 38px;
377
+ }
375
378
  .e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
376
379
  height: 38px;
377
380
  min-height: 38px;
@@ -444,6 +447,9 @@
444
447
  .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:hover, .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:focus {
445
448
  height: calc(100% - 20px);
446
449
  }
450
+ .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items {
451
+ height: 54px;
452
+ }
447
453
  .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
448
454
  height: 54px;
449
455
  min-height: 54px;
@@ -470,6 +476,20 @@
470
476
  .e-schedule.e-device .e-content-wrap.e-scroll-hidden {
471
477
  overflow: hidden;
472
478
  }
479
+ @media screen and (max-width: 320px) {
480
+ .e-schedule .e-schedule-toolbar .e-toolbar-pop {
481
+ width: 100%;
482
+ }
483
+ .e-schedule .e-schedule-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
484
+ padding-left: 7px;
485
+ }
486
+ .e-schedule .e-schedule-toolbar .e-toolbar-pop.e-rtl .e-toolbar-item .e-tbar-btn.e-btn {
487
+ padding-right: 7px;
488
+ }
489
+ .e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
490
+ font-size: 8px;
491
+ }
492
+ }
473
493
  .e-schedule .e-schedule-resource-toolbar {
474
494
  background: #f8f9fa;
475
495
  border-bottom: 0;
@@ -1303,7 +1323,7 @@
1303
1323
  cursor: default;
1304
1324
  font-weight: normal;
1305
1325
  height: 34px;
1306
- padding: 8px;
1326
+ padding: 3px;
1307
1327
  }
1308
1328
  .e-schedule .e-month-view .e-content-table {
1309
1329
  height: 100%;
@@ -2517,8 +2537,8 @@
2517
2537
  .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
2518
2538
  min-height: 54px;
2519
2539
  }
2520
- .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
2521
- .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
2540
+ .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
2541
+ .e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
2522
2542
  min-width: 34px;
2523
2543
  }
2524
2544
  .e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
@@ -2838,6 +2858,19 @@
2838
2858
  float: right;
2839
2859
  }
2840
2860
 
2861
+ /*! schedule event window for smaller viewports*/
2862
+ @media screen and (max-width: 320px) {
2863
+ .e-schedule-dialog.e-popup.e-popup-open {
2864
+ max-height: 350px;
2865
+ min-width: 100%;
2866
+ }
2867
+ .e-schedule-dialog .e-all-day-container {
2868
+ padding-bottom: 10px;
2869
+ }
2870
+ .e-schedule-dialog .e-all-day-time-zone-row {
2871
+ display: block;
2872
+ }
2873
+ }
2841
2874
  .e-ddl.e-popup .e-resource-template {
2842
2875
  display: -ms-flexbox;
2843
2876
  display: flex;
@@ -3427,6 +3460,18 @@
3427
3460
  margin-right: 0;
3428
3461
  }
3429
3462
 
3463
+ /*! schedule quick popup for smaller viewports */
3464
+ @media screen and (max-width: 320px) {
3465
+ .e-quick-popup-wrapper {
3466
+ min-width: 100%;
3467
+ }
3468
+ .e-quick-popup-wrapper .e-popup-footer {
3469
+ padding-left: 5px;
3470
+ }
3471
+ .e-quick-popup-wrapper.e-rtl .e-popup-footer {
3472
+ padding-right: 5px;
3473
+ }
3474
+ }
3430
3475
  .e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
3431
3476
  font-size: 24px;
3432
3477
  }