@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.
- package/CHANGELOG.md +16 -0
- package/dist/ej2-schedule.min.js +2 -2
- package/dist/ej2-schedule.umd.min.js +2 -2
- package/dist/ej2-schedule.umd.min.js.map +1 -1
- package/dist/es6/ej2-schedule.es2015.js +131 -59
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +131 -58
- package/dist/es6/ej2-schedule.es5.js.map +1 -1
- package/dist/global/ej2-schedule.min.js +2 -2
- package/dist/global/ej2-schedule.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +16 -16
- package/src/schedule/actions/crud.js +6 -0
- package/src/schedule/actions/drag.js +3 -3
- package/src/schedule/actions/keyboard.d.ts +1 -0
- package/src/schedule/actions/keyboard.js +11 -4
- package/src/schedule/actions/resize.js +22 -21
- package/src/schedule/actions/virtual-scroll.js +4 -0
- package/src/schedule/base/interface.d.ts +1 -0
- package/src/schedule/base/schedule.d.ts +4 -1
- package/src/schedule/base/schedule.js +16 -1
- 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/popups/quick-popups.js +11 -0
- package/src/schedule/renderer/renderer.js +11 -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 +51 -2
- package/styles/bootstrap.css +51 -2
- package/styles/bootstrap4.css +48 -3
- package/styles/bootstrap5-dark.css +48 -3
- package/styles/bootstrap5.css +48 -3
- package/styles/fabric-dark.css +47 -2
- package/styles/fabric.css +47 -2
- package/styles/fluent-dark.css +52 -2
- package/styles/fluent.css +52 -2
- package/styles/highcontrast-light.css +47 -2
- package/styles/highcontrast.css +47 -2
- package/styles/material-dark.css +47 -2
- package/styles/material.css +47 -2
- package/styles/material3-dark.css +48 -3
- package/styles/material3.css +48 -3
- package/styles/recurrence-editor/_bds-definition.scss +15 -0
- package/styles/schedule/_bds-definition.scss +287 -0
- package/styles/schedule/_bootstrap-dark-definition.scss +1 -0
- package/styles/schedule/_bootstrap-definition.scss +1 -0
- package/styles/schedule/_bootstrap4-definition.scss +2 -1
- package/styles/schedule/_bootstrap5-definition.scss +2 -1
- 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 +2 -1
- package/styles/schedule/_highcontrast-definition.scss +1 -0
- package/styles/schedule/_highcontrast-light-definition.scss +1 -0
- package/styles/schedule/_layout.scss +60 -1
- package/styles/schedule/_material-dark-definition.scss +1 -0
- package/styles/schedule/_material-definition.scss +1 -0
- package/styles/schedule/_material3-definition.scss +2 -1
- package/styles/schedule/_tailwind-definition.scss +2 -1
- package/styles/schedule/bootstrap-dark.css +51 -2
- package/styles/schedule/bootstrap.css +51 -2
- package/styles/schedule/bootstrap4.css +48 -3
- package/styles/schedule/bootstrap5-dark.css +48 -3
- package/styles/schedule/bootstrap5.css +48 -3
- package/styles/schedule/fabric-dark.css +47 -2
- package/styles/schedule/fabric.css +47 -2
- package/styles/schedule/fluent-dark.css +52 -2
- package/styles/schedule/fluent.css +52 -2
- package/styles/schedule/highcontrast-light.css +47 -2
- package/styles/schedule/highcontrast.css +47 -2
- package/styles/schedule/icons/_bds.scss +235 -0
- package/styles/schedule/material-dark.css +47 -2
- package/styles/schedule/material.css +47 -2
- package/styles/schedule/material3-dark.css +48 -3
- package/styles/schedule/material3.css +48 -3
- package/styles/schedule/tailwind-dark.css +48 -3
- package/styles/schedule/tailwind.css +48 -3
- package/styles/tailwind-dark.css +48 -3
- package/styles/tailwind.css +48 -3
- package/.github/PULL_REQUEST_TEMPLATE/Bug.md +0 -63
- package/.github/PULL_REQUEST_TEMPLATE/Feature.md +0 -39
|
@@ -51,15 +51,21 @@ var Render = /** @class */ (function () {
|
|
|
51
51
|
break;
|
|
52
52
|
case 'TimelineDay':
|
|
53
53
|
this.parent.activeView = this.parent.timelineViewsModule;
|
|
54
|
-
this.parent.activeView
|
|
54
|
+
if (!isNullOrUndefined(this.parent.activeView)) {
|
|
55
|
+
this.parent.activeView.viewClass = 'e-timeline-day-view';
|
|
56
|
+
}
|
|
55
57
|
break;
|
|
56
58
|
case 'TimelineWorkWeek':
|
|
57
59
|
this.parent.activeView = this.parent.timelineViewsModule;
|
|
58
|
-
this.parent.activeView
|
|
60
|
+
if (!isNullOrUndefined(this.parent.activeView)) {
|
|
61
|
+
this.parent.activeView.viewClass = 'e-timeline-work-week-view';
|
|
62
|
+
}
|
|
59
63
|
break;
|
|
60
64
|
case 'TimelineWeek':
|
|
61
65
|
this.parent.activeView = this.parent.timelineViewsModule;
|
|
62
|
-
this.parent.activeView
|
|
66
|
+
if (!isNullOrUndefined(this.parent.activeView)) {
|
|
67
|
+
this.parent.activeView.viewClass = 'e-timeline-week-view';
|
|
68
|
+
}
|
|
63
69
|
break;
|
|
64
70
|
case 'TimelineMonth':
|
|
65
71
|
this.parent.activeView = this.parent.timelineMonthModule;
|
|
@@ -76,6 +82,8 @@ var Render = /** @class */ (function () {
|
|
|
76
82
|
this.parent.headerModule.updateActiveView();
|
|
77
83
|
this.parent.headerModule.setCalendarView();
|
|
78
84
|
}
|
|
85
|
+
console.warn('[WARNING] :: Module "' + viewName + '" is not available in Schedule component!' +
|
|
86
|
+
' You either misspelled the module name or forgot to load it.');
|
|
79
87
|
return this.initializeLayout(firstView);
|
|
80
88
|
}
|
|
81
89
|
throw Error('Inject required modules');
|
|
@@ -16,7 +16,6 @@ export declare class TimelineViews extends VerticalView {
|
|
|
16
16
|
private generateTimeSlots;
|
|
17
17
|
changeCurrentTimePosition(): void;
|
|
18
18
|
private getLeftFromDateTime;
|
|
19
|
-
private getWorkCellWidth;
|
|
20
19
|
renderHeader(): void;
|
|
21
20
|
createAllDayRow(table: Element, tdData: TdData[]): void;
|
|
22
21
|
getCurrentTimeIndicatorIndex(): number[];
|
|
@@ -72,7 +72,7 @@ var TimelineViews = /** @class */ (function (_super) {
|
|
|
72
72
|
}
|
|
73
73
|
var scrollLeft;
|
|
74
74
|
if (isNullOrUndefined(hour) || !this.parent.activeViewOptions.timeScale.enable) {
|
|
75
|
-
scrollLeft = index * this.
|
|
75
|
+
scrollLeft = index * util.getElementWidth(this.element.querySelector('.e-work-cells'));
|
|
76
76
|
}
|
|
77
77
|
else {
|
|
78
78
|
scrollLeft = isNullOrUndefined(scrollDate) ? this.getLeftFromDateTime(null, date) :
|
|
@@ -159,7 +159,7 @@ var TimelineViews = /** @class */ (function (_super) {
|
|
|
159
159
|
if (this.parent.activeView.colLevels[parseInt(index.toString(), 10)] &&
|
|
160
160
|
this.parent.activeView.colLevels[parseInt(index.toString(), 10)][0].colSpan) {
|
|
161
161
|
diffInDates = currentDateIndex[0] * this.parent.activeView.colLevels[parseInt(index.toString(), 10)][0].colSpan *
|
|
162
|
-
this.
|
|
162
|
+
util.getElementWidth(this.element.querySelector('.e-work-cells'));
|
|
163
163
|
}
|
|
164
164
|
else {
|
|
165
165
|
var endHour = this.getEndHour();
|
|
@@ -169,12 +169,9 @@ var TimelineViews = /** @class */ (function (_super) {
|
|
|
169
169
|
}
|
|
170
170
|
}
|
|
171
171
|
}
|
|
172
|
-
return diffInDates + ((diffInMinutes * this.
|
|
172
|
+
return diffInDates + ((diffInMinutes * util.getElementWidth(this.element.querySelector('.e-work-cells')) * this.parent.activeViewOptions.timeScale.slotCount) /
|
|
173
173
|
this.parent.activeViewOptions.timeScale.interval);
|
|
174
174
|
};
|
|
175
|
-
TimelineViews.prototype.getWorkCellWidth = function () {
|
|
176
|
-
return this.element.querySelector('.e-work-cells').getBoundingClientRect().width;
|
|
177
|
-
};
|
|
178
175
|
TimelineViews.prototype.renderHeader = function () {
|
|
179
176
|
var tr = createElement('tr');
|
|
180
177
|
if (this.parent.activeViewOptions.group.resources.length > 0 && !this.parent.uiStateValues.isGroupAdaptive) {
|
|
@@ -371,7 +371,7 @@ var VerticalView = /** @class */ (function (_super) {
|
|
|
371
371
|
this.parent.activeViewOptions.timeScale.interval;
|
|
372
372
|
};
|
|
373
373
|
VerticalView.prototype.getWorkCellHeight = function () {
|
|
374
|
-
return parseFloat(this.element.querySelector('.' + cls.WORK_CELLS_CLASS)
|
|
374
|
+
return parseFloat(util.getElementHeight(this.element.querySelector('.' + cls.WORK_CELLS_CLASS)).toFixed(2));
|
|
375
375
|
};
|
|
376
376
|
VerticalView.prototype.getTdContent = function (date, type, groupIndex) {
|
|
377
377
|
var cntEle;
|
|
@@ -449,7 +449,7 @@ var ViewBase = /** @class */ (function () {
|
|
|
449
449
|
if (this.isTimelineView()) {
|
|
450
450
|
var colElements = this.getColElements();
|
|
451
451
|
var contentBody = this.element.querySelector('.' + cls.CONTENT_TABLE_CLASS + ' tbody');
|
|
452
|
-
var colWidth_1 = (
|
|
452
|
+
var colWidth_1 = (util.getElementWidth(contentBody) / (colElements.length / 2));
|
|
453
453
|
if (content.offsetHeight !== content.clientHeight) {
|
|
454
454
|
var resourceColumn = this.parent.element.querySelector('.' + cls.RESOURCE_COLUMN_WRAP_CLASS);
|
|
455
455
|
if (!isNullOrUndefined(resourceColumn)) {
|
|
@@ -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
|
}
|
package/styles/bootstrap.css
CHANGED
|
@@ -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
|
}
|
package/styles/bootstrap4.css
CHANGED
|
@@ -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:
|
|
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:
|
|
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
|
}
|
package/styles/bootstrap5.css
CHANGED
|
@@ -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:
|
|
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
|
}
|
package/styles/fabric-dark.css
CHANGED
|
@@ -290,6 +290,9 @@
|
|
|
290
290
|
font-size: 14px;
|
|
291
291
|
text-transform: initial;
|
|
292
292
|
}
|
|
293
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
294
|
+
height: 43px;
|
|
295
|
+
}
|
|
293
296
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
294
297
|
height: 43px;
|
|
295
298
|
min-height: 43px;
|
|
@@ -362,6 +365,9 @@
|
|
|
362
365
|
.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 {
|
|
363
366
|
height: calc(100% - 20px);
|
|
364
367
|
}
|
|
368
|
+
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items {
|
|
369
|
+
height: 56px;
|
|
370
|
+
}
|
|
365
371
|
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
366
372
|
height: 56px;
|
|
367
373
|
min-height: 56px;
|
|
@@ -388,6 +394,20 @@
|
|
|
388
394
|
.e-schedule.e-device .e-content-wrap.e-scroll-hidden {
|
|
389
395
|
overflow: hidden;
|
|
390
396
|
}
|
|
397
|
+
@media screen and (max-width: 320px) {
|
|
398
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop {
|
|
399
|
+
width: 100%;
|
|
400
|
+
}
|
|
401
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
|
|
402
|
+
padding-left: 7px;
|
|
403
|
+
}
|
|
404
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop.e-rtl .e-toolbar-item .e-tbar-btn.e-btn {
|
|
405
|
+
padding-right: 7px;
|
|
406
|
+
}
|
|
407
|
+
.e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
|
|
408
|
+
font-size: 8px;
|
|
409
|
+
}
|
|
410
|
+
}
|
|
391
411
|
.e-schedule .e-schedule-resource-toolbar {
|
|
392
412
|
background: #201f1f;
|
|
393
413
|
border-bottom: 1px solid #414040;
|
|
@@ -2435,8 +2455,8 @@
|
|
|
2435
2455
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2436
2456
|
min-height: 56px;
|
|
2437
2457
|
}
|
|
2438
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2439
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2458
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2459
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2440
2460
|
min-width: 34px;
|
|
2441
2461
|
}
|
|
2442
2462
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|
|
@@ -2756,6 +2776,19 @@
|
|
|
2756
2776
|
float: right;
|
|
2757
2777
|
}
|
|
2758
2778
|
|
|
2779
|
+
/*! schedule event window for smaller viewports*/
|
|
2780
|
+
@media screen and (max-width: 320px) {
|
|
2781
|
+
.e-schedule-dialog.e-popup.e-popup-open {
|
|
2782
|
+
max-height: 350px;
|
|
2783
|
+
min-width: 100%;
|
|
2784
|
+
}
|
|
2785
|
+
.e-schedule-dialog .e-all-day-container {
|
|
2786
|
+
padding-bottom: 10px;
|
|
2787
|
+
}
|
|
2788
|
+
.e-schedule-dialog .e-all-day-time-zone-row {
|
|
2789
|
+
display: block;
|
|
2790
|
+
}
|
|
2791
|
+
}
|
|
2759
2792
|
.e-ddl.e-popup .e-resource-template {
|
|
2760
2793
|
display: -ms-flexbox;
|
|
2761
2794
|
display: flex;
|
|
@@ -3345,6 +3378,18 @@
|
|
|
3345
3378
|
margin-right: 0;
|
|
3346
3379
|
}
|
|
3347
3380
|
|
|
3381
|
+
/*! schedule quick popup for smaller viewports */
|
|
3382
|
+
@media screen and (max-width: 320px) {
|
|
3383
|
+
.e-quick-popup-wrapper {
|
|
3384
|
+
min-width: 100%;
|
|
3385
|
+
}
|
|
3386
|
+
.e-quick-popup-wrapper .e-popup-footer {
|
|
3387
|
+
padding-left: 5px;
|
|
3388
|
+
}
|
|
3389
|
+
.e-quick-popup-wrapper.e-rtl .e-popup-footer {
|
|
3390
|
+
padding-right: 5px;
|
|
3391
|
+
}
|
|
3392
|
+
}
|
|
3348
3393
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
3349
3394
|
font-size: 24px;
|
|
3350
3395
|
}
|