@syncfusion/ej2-schedule 24.2.4 → 24.2.8
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 +8 -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 +77 -51
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +76 -50
- 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 +13 -13
- package/src/schedule/actions/drag.js +3 -3
- package/src/schedule/actions/resize.js +22 -21
- package/src/schedule/actions/virtual-scroll.js +4 -0
- package/src/schedule/base/util.d.ts +21 -0
- package/src/schedule/base/util.js +29 -2
- package/src/schedule/event-renderer/event-base.d.ts +0 -1
- package/src/schedule/event-renderer/event-base.js +0 -3
- package/src/schedule/event-renderer/inline-edit.js +1 -1
- package/src/schedule/event-renderer/month.js +2 -2
- package/src/schedule/event-renderer/timeline-view.js +5 -5
- package/src/schedule/event-renderer/vertical-view.js +1 -1
- package/src/schedule/event-renderer/year.js +3 -3
- package/src/schedule/renderer/timeline-view.d.ts +0 -1
- package/src/schedule/renderer/timeline-view.js +3 -6
- package/src/schedule/renderer/vertical-view.js +1 -1
- package/src/schedule/renderer/view-base.js +1 -1
- package/styles/bootstrap-dark.css +42 -0
- package/styles/bootstrap.css +42 -0
- package/styles/bootstrap4.css +42 -0
- package/styles/bootstrap5-dark.css +42 -0
- package/styles/bootstrap5.css +42 -0
- package/styles/fabric-dark.css +42 -0
- package/styles/fabric.css +42 -0
- package/styles/fluent-dark.css +42 -0
- package/styles/fluent.css +42 -0
- package/styles/highcontrast-light.css +42 -0
- package/styles/highcontrast.css +42 -0
- package/styles/material-dark.css +42 -0
- package/styles/material.css +42 -0
- package/styles/material3-dark.css +42 -0
- package/styles/material3.css +42 -0
- package/styles/schedule/_bootstrap-dark-definition.scss +1 -0
- package/styles/schedule/_bootstrap-definition.scss +1 -0
- package/styles/schedule/_bootstrap4-definition.scss +1 -0
- package/styles/schedule/_bootstrap5-definition.scss +1 -0
- package/styles/schedule/_fabric-dark-definition.scss +1 -0
- package/styles/schedule/_fabric-definition.scss +1 -0
- package/styles/schedule/_fluent-definition.scss +1 -0
- package/styles/schedule/_fusionnew-definition.scss +1 -0
- package/styles/schedule/_highcontrast-definition.scss +1 -0
- package/styles/schedule/_highcontrast-light-definition.scss +1 -0
- package/styles/schedule/_layout.scss +58 -0
- package/styles/schedule/_material-dark-definition.scss +1 -0
- package/styles/schedule/_material-definition.scss +1 -0
- package/styles/schedule/_material3-definition.scss +1 -0
- package/styles/schedule/_tailwind-definition.scss +1 -0
- package/styles/schedule/bootstrap-dark.css +42 -0
- package/styles/schedule/bootstrap.css +42 -0
- package/styles/schedule/bootstrap4.css +42 -0
- package/styles/schedule/bootstrap5-dark.css +42 -0
- package/styles/schedule/bootstrap5.css +42 -0
- package/styles/schedule/fabric-dark.css +42 -0
- package/styles/schedule/fabric.css +42 -0
- package/styles/schedule/fluent-dark.css +42 -0
- package/styles/schedule/fluent.css +42 -0
- package/styles/schedule/highcontrast-light.css +42 -0
- package/styles/schedule/highcontrast.css +42 -0
- package/styles/schedule/material-dark.css +42 -0
- package/styles/schedule/material.css +42 -0
- package/styles/schedule/material3-dark.css +42 -0
- package/styles/schedule/material3.css +42 -0
- package/styles/schedule/tailwind-dark.css +42 -0
- package/styles/schedule/tailwind.css +42 -0
- package/styles/tailwind-dark.css +42 -0
- package/styles/tailwind.css +42 -0
- package/.github/PULL_REQUEST_TEMPLATE/Bug.md +0 -63
- package/.github/PULL_REQUEST_TEMPLATE/Feature.md +0 -39
package/styles/material.css
CHANGED
|
@@ -414,6 +414,9 @@
|
|
|
414
414
|
.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 {
|
|
415
415
|
height: calc(100% - 20px);
|
|
416
416
|
}
|
|
417
|
+
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items {
|
|
418
|
+
height: 56px;
|
|
419
|
+
}
|
|
417
420
|
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
418
421
|
height: 56px;
|
|
419
422
|
min-height: 56px;
|
|
@@ -440,6 +443,20 @@
|
|
|
440
443
|
.e-schedule.e-device .e-content-wrap.e-scroll-hidden {
|
|
441
444
|
overflow: hidden;
|
|
442
445
|
}
|
|
446
|
+
@media screen and (max-width: 320px) {
|
|
447
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop {
|
|
448
|
+
width: 100%;
|
|
449
|
+
}
|
|
450
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
|
|
451
|
+
padding-left: 7px;
|
|
452
|
+
}
|
|
453
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop.e-rtl .e-toolbar-item .e-tbar-btn.e-btn {
|
|
454
|
+
padding-right: 7px;
|
|
455
|
+
}
|
|
456
|
+
.e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
|
|
457
|
+
font-size: 8px;
|
|
458
|
+
}
|
|
459
|
+
}
|
|
443
460
|
.e-schedule .e-schedule-resource-toolbar {
|
|
444
461
|
background: #fafafa;
|
|
445
462
|
border-bottom: 0;
|
|
@@ -2808,6 +2825,19 @@
|
|
|
2808
2825
|
float: right;
|
|
2809
2826
|
}
|
|
2810
2827
|
|
|
2828
|
+
/*! schedule event window for smaller viewports*/
|
|
2829
|
+
@media screen and (max-width: 320px) {
|
|
2830
|
+
.e-schedule-dialog.e-popup.e-popup-open {
|
|
2831
|
+
max-height: 350px;
|
|
2832
|
+
min-width: 100%;
|
|
2833
|
+
}
|
|
2834
|
+
.e-schedule-dialog .e-all-day-container {
|
|
2835
|
+
padding-bottom: 10px;
|
|
2836
|
+
}
|
|
2837
|
+
.e-schedule-dialog .e-all-day-time-zone-row {
|
|
2838
|
+
display: block;
|
|
2839
|
+
}
|
|
2840
|
+
}
|
|
2811
2841
|
.e-ddl.e-popup .e-resource-template {
|
|
2812
2842
|
display: -ms-flexbox;
|
|
2813
2843
|
display: flex;
|
|
@@ -3397,6 +3427,18 @@
|
|
|
3397
3427
|
margin-right: 0;
|
|
3398
3428
|
}
|
|
3399
3429
|
|
|
3430
|
+
/*! schedule quick popup for smaller viewports */
|
|
3431
|
+
@media screen and (max-width: 320px) {
|
|
3432
|
+
.e-quick-popup-wrapper {
|
|
3433
|
+
min-width: 100%;
|
|
3434
|
+
}
|
|
3435
|
+
.e-quick-popup-wrapper .e-popup-footer {
|
|
3436
|
+
padding-left: 5px;
|
|
3437
|
+
}
|
|
3438
|
+
.e-quick-popup-wrapper.e-rtl .e-popup-footer {
|
|
3439
|
+
padding-right: 5px;
|
|
3440
|
+
}
|
|
3441
|
+
}
|
|
3400
3442
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
3401
3443
|
font-size: 24px;
|
|
3402
3444
|
}
|
|
@@ -481,6 +481,9 @@
|
|
|
481
481
|
.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 {
|
|
482
482
|
height: calc(100% - 20px);
|
|
483
483
|
}
|
|
484
|
+
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items {
|
|
485
|
+
height: 56px;
|
|
486
|
+
}
|
|
484
487
|
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
485
488
|
height: 56px;
|
|
486
489
|
min-height: 56px;
|
|
@@ -507,6 +510,20 @@
|
|
|
507
510
|
.e-schedule.e-device .e-content-wrap.e-scroll-hidden {
|
|
508
511
|
overflow: hidden;
|
|
509
512
|
}
|
|
513
|
+
@media screen and (max-width: 320px) {
|
|
514
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop {
|
|
515
|
+
width: 100%;
|
|
516
|
+
}
|
|
517
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
|
|
518
|
+
padding-left: 7px;
|
|
519
|
+
}
|
|
520
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop.e-rtl .e-toolbar-item .e-tbar-btn.e-btn {
|
|
521
|
+
padding-right: 7px;
|
|
522
|
+
}
|
|
523
|
+
.e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
|
|
524
|
+
font-size: 8px;
|
|
525
|
+
}
|
|
526
|
+
}
|
|
510
527
|
.e-schedule .e-schedule-resource-toolbar {
|
|
511
528
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
|
|
512
529
|
border-bottom: 1px solid rgba(var(--color-sf-outline-variant));
|
|
@@ -2875,6 +2892,19 @@
|
|
|
2875
2892
|
float: right;
|
|
2876
2893
|
}
|
|
2877
2894
|
|
|
2895
|
+
/*! schedule event window for smaller viewports*/
|
|
2896
|
+
@media screen and (max-width: 320px) {
|
|
2897
|
+
.e-schedule-dialog.e-popup.e-popup-open {
|
|
2898
|
+
max-height: 350px;
|
|
2899
|
+
min-width: 100%;
|
|
2900
|
+
}
|
|
2901
|
+
.e-schedule-dialog .e-all-day-container {
|
|
2902
|
+
padding-bottom: 10px;
|
|
2903
|
+
}
|
|
2904
|
+
.e-schedule-dialog .e-all-day-time-zone-row {
|
|
2905
|
+
display: block;
|
|
2906
|
+
}
|
|
2907
|
+
}
|
|
2878
2908
|
.e-ddl.e-popup .e-resource-template {
|
|
2879
2909
|
display: -ms-flexbox;
|
|
2880
2910
|
display: flex;
|
|
@@ -3464,6 +3494,18 @@
|
|
|
3464
3494
|
margin-right: 0;
|
|
3465
3495
|
}
|
|
3466
3496
|
|
|
3497
|
+
/*! schedule quick popup for smaller viewports */
|
|
3498
|
+
@media screen and (max-width: 320px) {
|
|
3499
|
+
.e-quick-popup-wrapper {
|
|
3500
|
+
min-width: 100%;
|
|
3501
|
+
}
|
|
3502
|
+
.e-quick-popup-wrapper .e-popup-footer {
|
|
3503
|
+
padding-left: 5px;
|
|
3504
|
+
}
|
|
3505
|
+
.e-quick-popup-wrapper.e-rtl .e-popup-footer {
|
|
3506
|
+
padding-right: 5px;
|
|
3507
|
+
}
|
|
3508
|
+
}
|
|
3467
3509
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
3468
3510
|
font-size: 24px;
|
|
3469
3511
|
}
|
package/styles/material3.css
CHANGED
|
@@ -537,6 +537,9 @@
|
|
|
537
537
|
.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 {
|
|
538
538
|
height: calc(100% - 20px);
|
|
539
539
|
}
|
|
540
|
+
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items {
|
|
541
|
+
height: 56px;
|
|
542
|
+
}
|
|
540
543
|
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
541
544
|
height: 56px;
|
|
542
545
|
min-height: 56px;
|
|
@@ -563,6 +566,20 @@
|
|
|
563
566
|
.e-schedule.e-device .e-content-wrap.e-scroll-hidden {
|
|
564
567
|
overflow: hidden;
|
|
565
568
|
}
|
|
569
|
+
@media screen and (max-width: 320px) {
|
|
570
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop {
|
|
571
|
+
width: 100%;
|
|
572
|
+
}
|
|
573
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
|
|
574
|
+
padding-left: 7px;
|
|
575
|
+
}
|
|
576
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop.e-rtl .e-toolbar-item .e-tbar-btn.e-btn {
|
|
577
|
+
padding-right: 7px;
|
|
578
|
+
}
|
|
579
|
+
.e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
|
|
580
|
+
font-size: 8px;
|
|
581
|
+
}
|
|
582
|
+
}
|
|
566
583
|
.e-schedule .e-schedule-resource-toolbar {
|
|
567
584
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
|
|
568
585
|
border-bottom: 1px solid rgba(var(--color-sf-outline-variant));
|
|
@@ -2931,6 +2948,19 @@
|
|
|
2931
2948
|
float: right;
|
|
2932
2949
|
}
|
|
2933
2950
|
|
|
2951
|
+
/*! schedule event window for smaller viewports*/
|
|
2952
|
+
@media screen and (max-width: 320px) {
|
|
2953
|
+
.e-schedule-dialog.e-popup.e-popup-open {
|
|
2954
|
+
max-height: 350px;
|
|
2955
|
+
min-width: 100%;
|
|
2956
|
+
}
|
|
2957
|
+
.e-schedule-dialog .e-all-day-container {
|
|
2958
|
+
padding-bottom: 10px;
|
|
2959
|
+
}
|
|
2960
|
+
.e-schedule-dialog .e-all-day-time-zone-row {
|
|
2961
|
+
display: block;
|
|
2962
|
+
}
|
|
2963
|
+
}
|
|
2934
2964
|
.e-ddl.e-popup .e-resource-template {
|
|
2935
2965
|
display: -ms-flexbox;
|
|
2936
2966
|
display: flex;
|
|
@@ -3520,6 +3550,18 @@
|
|
|
3520
3550
|
margin-right: 0;
|
|
3521
3551
|
}
|
|
3522
3552
|
|
|
3553
|
+
/*! schedule quick popup for smaller viewports */
|
|
3554
|
+
@media screen and (max-width: 320px) {
|
|
3555
|
+
.e-quick-popup-wrapper {
|
|
3556
|
+
min-width: 100%;
|
|
3557
|
+
}
|
|
3558
|
+
.e-quick-popup-wrapper .e-popup-footer {
|
|
3559
|
+
padding-left: 5px;
|
|
3560
|
+
}
|
|
3561
|
+
.e-quick-popup-wrapper.e-rtl .e-popup-footer {
|
|
3562
|
+
padding-right: 5px;
|
|
3563
|
+
}
|
|
3564
|
+
}
|
|
3523
3565
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
3524
3566
|
font-size: 24px;
|
|
3525
3567
|
}
|
|
@@ -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: initial !default;
|
|
153
154
|
$schedule-header-hover-border-radius: 4px !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-timezone-enable-nrml-height: 60px !default;
|
|
150
151
|
$schedule-timezone-enable-bgr-height: 70px !default;
|
|
@@ -153,6 +153,7 @@ $schedule-tbar-right-items-btn-border-radius: 0 !default;
|
|
|
153
153
|
$schedule-tbar-right-active-items-btn-border: none !default;
|
|
154
154
|
$schedule-device-tbar-right-items-btn-border-radius: 0 !default;
|
|
155
155
|
$schedule-device-tbar-right-items-btn-border: none !default;
|
|
156
|
+
$schedule-device-font-size: 8px !default;
|
|
156
157
|
|
|
157
158
|
$schedule-content-nrml-font-text-transform: initial !default;
|
|
158
159
|
$schedule-header-hover-border-radius: 4px !default;
|
|
@@ -161,6 +161,7 @@ $schedule-tbar-right-items-btn-border-radius: 0 !default;
|
|
|
161
161
|
$schedule-tbar-right-active-items-btn-border: none !default;
|
|
162
162
|
$schedule-device-tbar-right-items-btn-border-radius: 0 !default;
|
|
163
163
|
$schedule-device-tbar-right-items-btn-border: none !default;
|
|
164
|
+
$schedule-device-font-size: 8px !default;
|
|
164
165
|
|
|
165
166
|
// view definitions
|
|
166
167
|
$schedule-timeline-header-time-slots-bg: $schedule-tbar-default-bg !default;
|
|
@@ -149,6 +149,7 @@ $schedule-tbar-right-items-btn-border-radius: 0 !default;
|
|
|
149
149
|
$schedule-tbar-right-active-items-btn-border: none !default;
|
|
150
150
|
$schedule-device-tbar-right-items-btn-border-radius: 0 !default;
|
|
151
151
|
$schedule-device-tbar-right-items-btn-border: none !default;
|
|
152
|
+
$schedule-device-font-size: 8px !default;
|
|
152
153
|
|
|
153
154
|
$schedule-content-nrml-font-text-transform: initial !default;
|
|
154
155
|
$schedule-header-hover-border-radius: 0% !default;
|
|
@@ -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: initial !default;
|
|
153
154
|
$schedule-header-hover-border-radius: 0% !default;
|
|
@@ -151,6 +151,7 @@ $schedule-tbar-right-items-btn-border-radius: 0 !default;
|
|
|
151
151
|
$schedule-tbar-right-active-items-btn-border: none !default;
|
|
152
152
|
$schedule-device-tbar-right-items-btn-border-radius: 0 !default;
|
|
153
153
|
$schedule-device-tbar-right-items-btn-border: none !default;
|
|
154
|
+
$schedule-device-font-size: 8px !default;
|
|
154
155
|
|
|
155
156
|
$schedule-content-nrml-font-text-transform: none !default;
|
|
156
157
|
$schedule-header-hover-border-radius: 4px !default;
|
|
@@ -161,6 +161,7 @@ $schedule-tbar-right-items-btn-border-radius: 0 !default;
|
|
|
161
161
|
$schedule-tbar-right-active-items-btn-border: none !default;
|
|
162
162
|
$schedule-device-tbar-right-items-btn-border-radius: 0 !default;
|
|
163
163
|
$schedule-device-tbar-right-items-btn-border: none !default;
|
|
164
|
+
$schedule-device-font-size: 8px !default;
|
|
164
165
|
|
|
165
166
|
// view definitions
|
|
166
167
|
$schedule-timeline-header-cells-height: 36px !default;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -173,6 +173,8 @@
|
|
|
173
173
|
}
|
|
174
174
|
|
|
175
175
|
.e-toolbar-items {
|
|
176
|
+
height: $schedule-tbar-bgr-size;
|
|
177
|
+
|
|
176
178
|
&.e-tbar-pos {
|
|
177
179
|
height: $schedule-tbar-bgr-size;
|
|
178
180
|
min-height: $schedule-tbar-bgr-size;
|
|
@@ -210,6 +212,28 @@
|
|
|
210
212
|
}
|
|
211
213
|
}
|
|
212
214
|
|
|
215
|
+
@media screen and (max-width: 320px) {
|
|
216
|
+
.e-schedule-toolbar {
|
|
217
|
+
.e-toolbar-pop {
|
|
218
|
+
width: 100%;
|
|
219
|
+
|
|
220
|
+
.e-toolbar-item .e-tbar-btn.e-btn {
|
|
221
|
+
padding-left: 7px;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
&.e-rtl {
|
|
225
|
+
.e-toolbar-item .e-tbar-btn.e-btn {
|
|
226
|
+
padding-right: 7px;
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.e-tbar-btn .e-tbar-btn-text {
|
|
232
|
+
font-size: $schedule-device-font-size;
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
|
|
213
237
|
.e-schedule-resource-toolbar {
|
|
214
238
|
background: $schedule-tbar-default-bg;
|
|
215
239
|
border-bottom: $schedule-tbar-border-bottom-size;
|
|
@@ -3103,7 +3127,24 @@
|
|
|
3103
3127
|
}
|
|
3104
3128
|
}
|
|
3105
3129
|
}
|
|
3130
|
+
|
|
3131
|
+
/*! schedule event window for smaller viewports*/
|
|
3132
|
+
@media screen and (max-width: 320px) {
|
|
3133
|
+
.e-schedule-dialog.e-popup.e-popup-open {
|
|
3134
|
+
max-height: 350px;
|
|
3135
|
+
min-width: 100%;
|
|
3136
|
+
}
|
|
3106
3137
|
|
|
3138
|
+
.e-schedule-dialog {
|
|
3139
|
+
.e-all-day-container {
|
|
3140
|
+
padding-bottom: 10px;
|
|
3141
|
+
}
|
|
3142
|
+
|
|
3143
|
+
.e-all-day-time-zone-row {
|
|
3144
|
+
display: block;
|
|
3145
|
+
}
|
|
3146
|
+
}
|
|
3147
|
+
}
|
|
3107
3148
|
.e-ddl.e-popup {
|
|
3108
3149
|
.e-resource-template {
|
|
3109
3150
|
display: flex;
|
|
@@ -3787,6 +3828,23 @@
|
|
|
3787
3828
|
}
|
|
3788
3829
|
}
|
|
3789
3830
|
|
|
3831
|
+
/*! schedule quick popup for smaller viewports */
|
|
3832
|
+
@media screen and (max-width: 320px) {
|
|
3833
|
+
.e-quick-popup-wrapper {
|
|
3834
|
+
min-width: 100%;
|
|
3835
|
+
|
|
3836
|
+
.e-popup-footer {
|
|
3837
|
+
padding-left: 5px;
|
|
3838
|
+
}
|
|
3839
|
+
|
|
3840
|
+
&.e-rtl {
|
|
3841
|
+
.e-popup-footer {
|
|
3842
|
+
padding-right: 5px;
|
|
3843
|
+
}
|
|
3844
|
+
}
|
|
3845
|
+
}
|
|
3846
|
+
}
|
|
3847
|
+
|
|
3790
3848
|
.e-bigger .e-quick-popup-wrapper {
|
|
3791
3849
|
.e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
3792
3850
|
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;
|
|
@@ -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;
|
|
@@ -395,6 +395,9 @@
|
|
|
395
395
|
.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
396
|
height: calc(100% - 20px);
|
|
397
397
|
}
|
|
398
|
+
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items {
|
|
399
|
+
height: 56px;
|
|
400
|
+
}
|
|
398
401
|
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
399
402
|
height: 56px;
|
|
400
403
|
min-height: 56px;
|
|
@@ -421,6 +424,20 @@
|
|
|
421
424
|
.e-schedule.e-device .e-content-wrap.e-scroll-hidden {
|
|
422
425
|
overflow: hidden;
|
|
423
426
|
}
|
|
427
|
+
@media screen and (max-width: 320px) {
|
|
428
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop {
|
|
429
|
+
width: 100%;
|
|
430
|
+
}
|
|
431
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
|
|
432
|
+
padding-left: 7px;
|
|
433
|
+
}
|
|
434
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop.e-rtl .e-toolbar-item .e-tbar-btn.e-btn {
|
|
435
|
+
padding-right: 7px;
|
|
436
|
+
}
|
|
437
|
+
.e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
|
|
438
|
+
font-size: 8px;
|
|
439
|
+
}
|
|
440
|
+
}
|
|
424
441
|
.e-schedule .e-schedule-resource-toolbar {
|
|
425
442
|
background: #131313;
|
|
426
443
|
border-bottom: 1px solid #505050;
|
|
@@ -2789,6 +2806,19 @@
|
|
|
2789
2806
|
float: right;
|
|
2790
2807
|
}
|
|
2791
2808
|
|
|
2809
|
+
/*! schedule event window for smaller viewports*/
|
|
2810
|
+
@media screen and (max-width: 320px) {
|
|
2811
|
+
.e-schedule-dialog.e-popup.e-popup-open {
|
|
2812
|
+
max-height: 350px;
|
|
2813
|
+
min-width: 100%;
|
|
2814
|
+
}
|
|
2815
|
+
.e-schedule-dialog .e-all-day-container {
|
|
2816
|
+
padding-bottom: 10px;
|
|
2817
|
+
}
|
|
2818
|
+
.e-schedule-dialog .e-all-day-time-zone-row {
|
|
2819
|
+
display: block;
|
|
2820
|
+
}
|
|
2821
|
+
}
|
|
2792
2822
|
.e-ddl.e-popup .e-resource-template {
|
|
2793
2823
|
display: -ms-flexbox;
|
|
2794
2824
|
display: flex;
|
|
@@ -3378,6 +3408,18 @@
|
|
|
3378
3408
|
margin-right: 0;
|
|
3379
3409
|
}
|
|
3380
3410
|
|
|
3411
|
+
/*! schedule quick popup for smaller viewports */
|
|
3412
|
+
@media screen and (max-width: 320px) {
|
|
3413
|
+
.e-quick-popup-wrapper {
|
|
3414
|
+
min-width: 100%;
|
|
3415
|
+
}
|
|
3416
|
+
.e-quick-popup-wrapper .e-popup-footer {
|
|
3417
|
+
padding-left: 5px;
|
|
3418
|
+
}
|
|
3419
|
+
.e-quick-popup-wrapper.e-rtl .e-popup-footer {
|
|
3420
|
+
padding-right: 5px;
|
|
3421
|
+
}
|
|
3422
|
+
}
|
|
3381
3423
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
3382
3424
|
font-size: 24px;
|
|
3383
3425
|
}
|
|
@@ -390,6 +390,9 @@
|
|
|
390
390
|
.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
391
|
height: calc(100% - 20px);
|
|
392
392
|
}
|
|
393
|
+
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items {
|
|
394
|
+
height: 56px;
|
|
395
|
+
}
|
|
393
396
|
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
394
397
|
height: 56px;
|
|
395
398
|
min-height: 56px;
|
|
@@ -416,6 +419,20 @@
|
|
|
416
419
|
.e-schedule.e-device .e-content-wrap.e-scroll-hidden {
|
|
417
420
|
overflow: hidden;
|
|
418
421
|
}
|
|
422
|
+
@media screen and (max-width: 320px) {
|
|
423
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop {
|
|
424
|
+
width: 100%;
|
|
425
|
+
}
|
|
426
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
|
|
427
|
+
padding-left: 7px;
|
|
428
|
+
}
|
|
429
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop.e-rtl .e-toolbar-item .e-tbar-btn.e-btn {
|
|
430
|
+
padding-right: 7px;
|
|
431
|
+
}
|
|
432
|
+
.e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
|
|
433
|
+
font-size: 8px;
|
|
434
|
+
}
|
|
435
|
+
}
|
|
419
436
|
.e-schedule .e-schedule-resource-toolbar {
|
|
420
437
|
background: #f8f8f8;
|
|
421
438
|
border-bottom: 1px solid #ddd;
|
|
@@ -2784,6 +2801,19 @@
|
|
|
2784
2801
|
float: right;
|
|
2785
2802
|
}
|
|
2786
2803
|
|
|
2804
|
+
/*! schedule event window for smaller viewports*/
|
|
2805
|
+
@media screen and (max-width: 320px) {
|
|
2806
|
+
.e-schedule-dialog.e-popup.e-popup-open {
|
|
2807
|
+
max-height: 350px;
|
|
2808
|
+
min-width: 100%;
|
|
2809
|
+
}
|
|
2810
|
+
.e-schedule-dialog .e-all-day-container {
|
|
2811
|
+
padding-bottom: 10px;
|
|
2812
|
+
}
|
|
2813
|
+
.e-schedule-dialog .e-all-day-time-zone-row {
|
|
2814
|
+
display: block;
|
|
2815
|
+
}
|
|
2816
|
+
}
|
|
2787
2817
|
.e-ddl.e-popup .e-resource-template {
|
|
2788
2818
|
display: -ms-flexbox;
|
|
2789
2819
|
display: flex;
|
|
@@ -3373,6 +3403,18 @@
|
|
|
3373
3403
|
margin-right: 0;
|
|
3374
3404
|
}
|
|
3375
3405
|
|
|
3406
|
+
/*! schedule quick popup for smaller viewports */
|
|
3407
|
+
@media screen and (max-width: 320px) {
|
|
3408
|
+
.e-quick-popup-wrapper {
|
|
3409
|
+
min-width: 100%;
|
|
3410
|
+
}
|
|
3411
|
+
.e-quick-popup-wrapper .e-popup-footer {
|
|
3412
|
+
padding-left: 5px;
|
|
3413
|
+
}
|
|
3414
|
+
.e-quick-popup-wrapper.e-rtl .e-popup-footer {
|
|
3415
|
+
padding-right: 5px;
|
|
3416
|
+
}
|
|
3417
|
+
}
|
|
3376
3418
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
3377
3419
|
font-size: 24px;
|
|
3378
3420
|
}
|
|
@@ -499,6 +499,9 @@
|
|
|
499
499
|
.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
500
|
height: calc(100% - 20px);
|
|
501
501
|
}
|
|
502
|
+
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items {
|
|
503
|
+
height: 54px;
|
|
504
|
+
}
|
|
502
505
|
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
503
506
|
height: 54px;
|
|
504
507
|
min-height: 54px;
|
|
@@ -525,6 +528,20 @@
|
|
|
525
528
|
.e-schedule.e-device .e-content-wrap.e-scroll-hidden {
|
|
526
529
|
overflow: hidden;
|
|
527
530
|
}
|
|
531
|
+
@media screen and (max-width: 320px) {
|
|
532
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop {
|
|
533
|
+
width: 100%;
|
|
534
|
+
}
|
|
535
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
|
|
536
|
+
padding-left: 7px;
|
|
537
|
+
}
|
|
538
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop.e-rtl .e-toolbar-item .e-tbar-btn.e-btn {
|
|
539
|
+
padding-right: 7px;
|
|
540
|
+
}
|
|
541
|
+
.e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
|
|
542
|
+
font-size: 8px;
|
|
543
|
+
}
|
|
544
|
+
}
|
|
528
545
|
.e-schedule .e-schedule-resource-toolbar {
|
|
529
546
|
background: #f8f9fa;
|
|
530
547
|
border-bottom: 1px solid rgba(0, 0, 0, 0.15);
|
|
@@ -2893,6 +2910,19 @@
|
|
|
2893
2910
|
float: right;
|
|
2894
2911
|
}
|
|
2895
2912
|
|
|
2913
|
+
/*! schedule event window for smaller viewports*/
|
|
2914
|
+
@media screen and (max-width: 320px) {
|
|
2915
|
+
.e-schedule-dialog.e-popup.e-popup-open {
|
|
2916
|
+
max-height: 350px;
|
|
2917
|
+
min-width: 100%;
|
|
2918
|
+
}
|
|
2919
|
+
.e-schedule-dialog .e-all-day-container {
|
|
2920
|
+
padding-bottom: 10px;
|
|
2921
|
+
}
|
|
2922
|
+
.e-schedule-dialog .e-all-day-time-zone-row {
|
|
2923
|
+
display: block;
|
|
2924
|
+
}
|
|
2925
|
+
}
|
|
2896
2926
|
.e-ddl.e-popup .e-resource-template {
|
|
2897
2927
|
display: -ms-flexbox;
|
|
2898
2928
|
display: flex;
|
|
@@ -3482,6 +3512,18 @@
|
|
|
3482
3512
|
margin-right: 0;
|
|
3483
3513
|
}
|
|
3484
3514
|
|
|
3515
|
+
/*! schedule quick popup for smaller viewports */
|
|
3516
|
+
@media screen and (max-width: 320px) {
|
|
3517
|
+
.e-quick-popup-wrapper {
|
|
3518
|
+
min-width: 100%;
|
|
3519
|
+
}
|
|
3520
|
+
.e-quick-popup-wrapper .e-popup-footer {
|
|
3521
|
+
padding-left: 5px;
|
|
3522
|
+
}
|
|
3523
|
+
.e-quick-popup-wrapper.e-rtl .e-popup-footer {
|
|
3524
|
+
padding-right: 5px;
|
|
3525
|
+
}
|
|
3526
|
+
}
|
|
3485
3527
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
3486
3528
|
font-size: 24px;
|
|
3487
3529
|
}
|