@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
|
@@ -0,0 +1,235 @@
|
|
|
1
|
+
@include export-module('schedule-bds-icons') {
|
|
2
|
+
.e-schedule {
|
|
3
|
+
.e-schedule-toolbar {
|
|
4
|
+
& .e-icon-prev::before {
|
|
5
|
+
content: '\e765';
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
& .e-icon-next::before {
|
|
9
|
+
content: '\e748';
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
& .e-icon-add::before {
|
|
13
|
+
content: '\e805';
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
& .e-icon-today::before {
|
|
17
|
+
content: '\e778';
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
& .e-icon-down-arrow::before {
|
|
21
|
+
content: '\e729';
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
& .e-icon-day::before {
|
|
25
|
+
content: '\e75e';
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
& .e-icon-week::before {
|
|
29
|
+
content: '\e817';
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
& .e-icon-workweek::before {
|
|
33
|
+
content: '\e817';
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
& .e-icon-month::before {
|
|
37
|
+
content: '\e7c5';
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
& .e-icon-month-agenda::before {
|
|
41
|
+
content: '\e75b';
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
& .e-icon-agenda::before {
|
|
45
|
+
content: '\e74c';
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
& .e-icon-year::before {
|
|
49
|
+
content: '\e7c5';
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
& .e-icon-timeline-year-vertical::before {
|
|
53
|
+
content: '\e876';
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
& .e-icon-timeline-year-horizontal::before {
|
|
57
|
+
content: '\e876';
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
& .e-icon-timeline-day::before {
|
|
61
|
+
content: '\e7da';
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
& .e-icon-timeline-week::before {
|
|
65
|
+
content: '\e81f';
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
& .e-icon-timeline-workweek::before {
|
|
69
|
+
content: '\e720';
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
& .e-icon-timeline-month::before {
|
|
73
|
+
content: '\e876';
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
&.e-toolbar {
|
|
77
|
+
.e-popup-down-icon::before {
|
|
78
|
+
content: '\e770';
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.e-popup-up-icon::before {
|
|
82
|
+
content: '\e770';
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
&.e-rtl {
|
|
87
|
+
& .e-icon-prev::before {
|
|
88
|
+
content: '\e748';
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
& .e-icon-next::before {
|
|
92
|
+
content: '\e765';
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.e-schedule-resource-toolbar {
|
|
98
|
+
& .e-icon-menu::before {
|
|
99
|
+
content: '\e799';
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
& .e-icon-next::before {
|
|
103
|
+
content: '\e748';
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.e-close-icon::before {
|
|
108
|
+
content: '\e7e7';
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.e-block-indicator::before {
|
|
112
|
+
content: '\e839';
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.e-appointment {
|
|
116
|
+
.e-recurrence-icon::before {
|
|
117
|
+
content: '\e772';
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.e-recurrence-edit-icon::before {
|
|
121
|
+
content: '\e789';
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.e-up-icon::before {
|
|
125
|
+
content: '\e822';
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.e-down-icon::before {
|
|
129
|
+
content: '\e7fe';
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.e-left-icon::before {
|
|
133
|
+
content: '\e744';
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.e-right-icon::before {
|
|
137
|
+
content: '\e7a9';
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.e-vertical-view .e-all-day-cells {
|
|
142
|
+
.e-all-day-appointment-section::before {
|
|
143
|
+
content: '\e729';
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
&.e-rtl {
|
|
148
|
+
.e-appointment {
|
|
149
|
+
& .e-left-icon::before {
|
|
150
|
+
content: '\e7a9';
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
& .e-right-icon::before {
|
|
154
|
+
content: '\e744';
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.e-resource-tree-icon::before {
|
|
160
|
+
content: '\e748';
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.e-schedule-dialog.e-device {
|
|
165
|
+
.e-back-icon::before {
|
|
166
|
+
content: '\e773';
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.e-save-icon::before {
|
|
170
|
+
content: '\e7c8';
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.e-delete-icon::before {
|
|
174
|
+
content: '\e820';
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.e-recurrence-container {
|
|
178
|
+
.e-recurrence-edit-button {
|
|
179
|
+
.e-recurrence-edit.e-icons::before {
|
|
180
|
+
content: '\e730';
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.e-schedule-dialog.e-device.e-rtl {
|
|
187
|
+
.e-back-icon::before {
|
|
188
|
+
content: '\e7f9';
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.e-quick-popup-wrapper {
|
|
193
|
+
.e-edit-icon::before {
|
|
194
|
+
content: '\e730';
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.e-delete-icon::before {
|
|
198
|
+
content: '\e820';
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.e-close-icon::before {
|
|
202
|
+
content: '\e7e7';
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.e-time-icon::before {
|
|
206
|
+
content: '\e705';
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.e-location-icon::before {
|
|
210
|
+
content: '\e756';
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.e-time-zone-icon::before {
|
|
214
|
+
content: '\e804';
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.e-description-icon::before {
|
|
218
|
+
content: '\e7c0';
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.e-resource-icon::before {
|
|
222
|
+
content: '\e7b9';
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.e-date-time-icon::before {
|
|
226
|
+
content: '\e7da';
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.e-more-popup-wrapper.e-device {
|
|
231
|
+
.e-close-icon::before {
|
|
232
|
+
content: '\e7e7';
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
}
|
|
@@ -306,6 +306,9 @@
|
|
|
306
306
|
font-size: 13px;
|
|
307
307
|
text-transform: uppercase;
|
|
308
308
|
}
|
|
309
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
310
|
+
height: 42px;
|
|
311
|
+
}
|
|
309
312
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
310
313
|
height: 42px;
|
|
311
314
|
min-height: 42px;
|
|
@@ -378,6 +381,9 @@
|
|
|
378
381
|
.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 {
|
|
379
382
|
height: calc(100% - 20px);
|
|
380
383
|
}
|
|
384
|
+
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items {
|
|
385
|
+
height: 56px;
|
|
386
|
+
}
|
|
381
387
|
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
382
388
|
height: 56px;
|
|
383
389
|
min-height: 56px;
|
|
@@ -404,6 +410,20 @@
|
|
|
404
410
|
.e-schedule.e-device .e-content-wrap.e-scroll-hidden {
|
|
405
411
|
overflow: hidden;
|
|
406
412
|
}
|
|
413
|
+
@media screen and (max-width: 320px) {
|
|
414
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop {
|
|
415
|
+
width: 100%;
|
|
416
|
+
}
|
|
417
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
|
|
418
|
+
padding-left: 7px;
|
|
419
|
+
}
|
|
420
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop.e-rtl .e-toolbar-item .e-tbar-btn.e-btn {
|
|
421
|
+
padding-right: 7px;
|
|
422
|
+
}
|
|
423
|
+
.e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
|
|
424
|
+
font-size: 8px;
|
|
425
|
+
}
|
|
426
|
+
}
|
|
407
427
|
.e-schedule .e-schedule-resource-toolbar {
|
|
408
428
|
background: #212121;
|
|
409
429
|
border-bottom: 0;
|
|
@@ -2451,8 +2471,8 @@
|
|
|
2451
2471
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2452
2472
|
min-height: 56px;
|
|
2453
2473
|
}
|
|
2454
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2455
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2474
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2475
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2456
2476
|
min-width: 34px;
|
|
2457
2477
|
}
|
|
2458
2478
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|
|
@@ -2772,6 +2792,19 @@
|
|
|
2772
2792
|
float: right;
|
|
2773
2793
|
}
|
|
2774
2794
|
|
|
2795
|
+
/*! schedule event window for smaller viewports*/
|
|
2796
|
+
@media screen and (max-width: 320px) {
|
|
2797
|
+
.e-schedule-dialog.e-popup.e-popup-open {
|
|
2798
|
+
max-height: 350px;
|
|
2799
|
+
min-width: 100%;
|
|
2800
|
+
}
|
|
2801
|
+
.e-schedule-dialog .e-all-day-container {
|
|
2802
|
+
padding-bottom: 10px;
|
|
2803
|
+
}
|
|
2804
|
+
.e-schedule-dialog .e-all-day-time-zone-row {
|
|
2805
|
+
display: block;
|
|
2806
|
+
}
|
|
2807
|
+
}
|
|
2775
2808
|
.e-ddl.e-popup .e-resource-template {
|
|
2776
2809
|
display: -ms-flexbox;
|
|
2777
2810
|
display: flex;
|
|
@@ -3361,6 +3394,18 @@
|
|
|
3361
3394
|
margin-right: 0;
|
|
3362
3395
|
}
|
|
3363
3396
|
|
|
3397
|
+
/*! schedule quick popup for smaller viewports */
|
|
3398
|
+
@media screen and (max-width: 320px) {
|
|
3399
|
+
.e-quick-popup-wrapper {
|
|
3400
|
+
min-width: 100%;
|
|
3401
|
+
}
|
|
3402
|
+
.e-quick-popup-wrapper .e-popup-footer {
|
|
3403
|
+
padding-left: 5px;
|
|
3404
|
+
}
|
|
3405
|
+
.e-quick-popup-wrapper.e-rtl .e-popup-footer {
|
|
3406
|
+
padding-right: 5px;
|
|
3407
|
+
}
|
|
3408
|
+
}
|
|
3364
3409
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
3365
3410
|
font-size: 24px;
|
|
3366
3411
|
}
|
|
@@ -342,6 +342,9 @@
|
|
|
342
342
|
font-size: 13px;
|
|
343
343
|
text-transform: uppercase;
|
|
344
344
|
}
|
|
345
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
346
|
+
height: 42px;
|
|
347
|
+
}
|
|
345
348
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
346
349
|
height: 42px;
|
|
347
350
|
min-height: 42px;
|
|
@@ -414,6 +417,9 @@
|
|
|
414
417
|
.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
418
|
height: calc(100% - 20px);
|
|
416
419
|
}
|
|
420
|
+
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items {
|
|
421
|
+
height: 56px;
|
|
422
|
+
}
|
|
417
423
|
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
418
424
|
height: 56px;
|
|
419
425
|
min-height: 56px;
|
|
@@ -440,6 +446,20 @@
|
|
|
440
446
|
.e-schedule.e-device .e-content-wrap.e-scroll-hidden {
|
|
441
447
|
overflow: hidden;
|
|
442
448
|
}
|
|
449
|
+
@media screen and (max-width: 320px) {
|
|
450
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop {
|
|
451
|
+
width: 100%;
|
|
452
|
+
}
|
|
453
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
|
|
454
|
+
padding-left: 7px;
|
|
455
|
+
}
|
|
456
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop.e-rtl .e-toolbar-item .e-tbar-btn.e-btn {
|
|
457
|
+
padding-right: 7px;
|
|
458
|
+
}
|
|
459
|
+
.e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
|
|
460
|
+
font-size: 8px;
|
|
461
|
+
}
|
|
462
|
+
}
|
|
443
463
|
.e-schedule .e-schedule-resource-toolbar {
|
|
444
464
|
background: #fafafa;
|
|
445
465
|
border-bottom: 0;
|
|
@@ -2487,8 +2507,8 @@
|
|
|
2487
2507
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2488
2508
|
min-height: 56px;
|
|
2489
2509
|
}
|
|
2490
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2491
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2510
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2511
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2492
2512
|
min-width: 34px;
|
|
2493
2513
|
}
|
|
2494
2514
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|
|
@@ -2808,6 +2828,19 @@
|
|
|
2808
2828
|
float: right;
|
|
2809
2829
|
}
|
|
2810
2830
|
|
|
2831
|
+
/*! schedule event window for smaller viewports*/
|
|
2832
|
+
@media screen and (max-width: 320px) {
|
|
2833
|
+
.e-schedule-dialog.e-popup.e-popup-open {
|
|
2834
|
+
max-height: 350px;
|
|
2835
|
+
min-width: 100%;
|
|
2836
|
+
}
|
|
2837
|
+
.e-schedule-dialog .e-all-day-container {
|
|
2838
|
+
padding-bottom: 10px;
|
|
2839
|
+
}
|
|
2840
|
+
.e-schedule-dialog .e-all-day-time-zone-row {
|
|
2841
|
+
display: block;
|
|
2842
|
+
}
|
|
2843
|
+
}
|
|
2811
2844
|
.e-ddl.e-popup .e-resource-template {
|
|
2812
2845
|
display: -ms-flexbox;
|
|
2813
2846
|
display: flex;
|
|
@@ -3397,6 +3430,18 @@
|
|
|
3397
3430
|
margin-right: 0;
|
|
3398
3431
|
}
|
|
3399
3432
|
|
|
3433
|
+
/*! schedule quick popup for smaller viewports */
|
|
3434
|
+
@media screen and (max-width: 320px) {
|
|
3435
|
+
.e-quick-popup-wrapper {
|
|
3436
|
+
min-width: 100%;
|
|
3437
|
+
}
|
|
3438
|
+
.e-quick-popup-wrapper .e-popup-footer {
|
|
3439
|
+
padding-left: 5px;
|
|
3440
|
+
}
|
|
3441
|
+
.e-quick-popup-wrapper.e-rtl .e-popup-footer {
|
|
3442
|
+
padding-right: 5px;
|
|
3443
|
+
}
|
|
3444
|
+
}
|
|
3400
3445
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
3401
3446
|
font-size: 24px;
|
|
3402
3447
|
}
|
|
@@ -400,6 +400,9 @@
|
|
|
400
400
|
font-size: 14px;
|
|
401
401
|
text-transform: none;
|
|
402
402
|
}
|
|
403
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
404
|
+
height: 48px;
|
|
405
|
+
}
|
|
403
406
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
404
407
|
height: 48px;
|
|
405
408
|
min-height: 48px;
|
|
@@ -481,6 +484,9 @@
|
|
|
481
484
|
.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
485
|
height: calc(100% - 20px);
|
|
483
486
|
}
|
|
487
|
+
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items {
|
|
488
|
+
height: 56px;
|
|
489
|
+
}
|
|
484
490
|
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
485
491
|
height: 56px;
|
|
486
492
|
min-height: 56px;
|
|
@@ -507,6 +513,20 @@
|
|
|
507
513
|
.e-schedule.e-device .e-content-wrap.e-scroll-hidden {
|
|
508
514
|
overflow: hidden;
|
|
509
515
|
}
|
|
516
|
+
@media screen and (max-width: 320px) {
|
|
517
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop {
|
|
518
|
+
width: 100%;
|
|
519
|
+
}
|
|
520
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
|
|
521
|
+
padding-left: 7px;
|
|
522
|
+
}
|
|
523
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop.e-rtl .e-toolbar-item .e-tbar-btn.e-btn {
|
|
524
|
+
padding-right: 7px;
|
|
525
|
+
}
|
|
526
|
+
.e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
|
|
527
|
+
font-size: 8px;
|
|
528
|
+
}
|
|
529
|
+
}
|
|
510
530
|
.e-schedule .e-schedule-resource-toolbar {
|
|
511
531
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
|
|
512
532
|
border-bottom: 1px solid rgba(var(--color-sf-outline-variant));
|
|
@@ -1340,7 +1360,7 @@
|
|
|
1340
1360
|
cursor: default;
|
|
1341
1361
|
font-weight: normal;
|
|
1342
1362
|
height: 34px;
|
|
1343
|
-
padding:
|
|
1363
|
+
padding: 3px;
|
|
1344
1364
|
}
|
|
1345
1365
|
.e-schedule .e-month-view .e-content-table {
|
|
1346
1366
|
height: 100%;
|
|
@@ -2554,8 +2574,8 @@
|
|
|
2554
2574
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2555
2575
|
min-height: 56px;
|
|
2556
2576
|
}
|
|
2557
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2558
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2577
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2578
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2559
2579
|
min-width: 32px;
|
|
2560
2580
|
}
|
|
2561
2581
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|
|
@@ -2875,6 +2895,19 @@
|
|
|
2875
2895
|
float: right;
|
|
2876
2896
|
}
|
|
2877
2897
|
|
|
2898
|
+
/*! schedule event window for smaller viewports*/
|
|
2899
|
+
@media screen and (max-width: 320px) {
|
|
2900
|
+
.e-schedule-dialog.e-popup.e-popup-open {
|
|
2901
|
+
max-height: 350px;
|
|
2902
|
+
min-width: 100%;
|
|
2903
|
+
}
|
|
2904
|
+
.e-schedule-dialog .e-all-day-container {
|
|
2905
|
+
padding-bottom: 10px;
|
|
2906
|
+
}
|
|
2907
|
+
.e-schedule-dialog .e-all-day-time-zone-row {
|
|
2908
|
+
display: block;
|
|
2909
|
+
}
|
|
2910
|
+
}
|
|
2878
2911
|
.e-ddl.e-popup .e-resource-template {
|
|
2879
2912
|
display: -ms-flexbox;
|
|
2880
2913
|
display: flex;
|
|
@@ -3464,6 +3497,18 @@
|
|
|
3464
3497
|
margin-right: 0;
|
|
3465
3498
|
}
|
|
3466
3499
|
|
|
3500
|
+
/*! schedule quick popup for smaller viewports */
|
|
3501
|
+
@media screen and (max-width: 320px) {
|
|
3502
|
+
.e-quick-popup-wrapper {
|
|
3503
|
+
min-width: 100%;
|
|
3504
|
+
}
|
|
3505
|
+
.e-quick-popup-wrapper .e-popup-footer {
|
|
3506
|
+
padding-left: 5px;
|
|
3507
|
+
}
|
|
3508
|
+
.e-quick-popup-wrapper.e-rtl .e-popup-footer {
|
|
3509
|
+
padding-right: 5px;
|
|
3510
|
+
}
|
|
3511
|
+
}
|
|
3467
3512
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
3468
3513
|
font-size: 24px;
|
|
3469
3514
|
}
|
|
@@ -456,6 +456,9 @@
|
|
|
456
456
|
font-size: 14px;
|
|
457
457
|
text-transform: none;
|
|
458
458
|
}
|
|
459
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
460
|
+
height: 48px;
|
|
461
|
+
}
|
|
459
462
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
460
463
|
height: 48px;
|
|
461
464
|
min-height: 48px;
|
|
@@ -537,6 +540,9 @@
|
|
|
537
540
|
.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
541
|
height: calc(100% - 20px);
|
|
539
542
|
}
|
|
543
|
+
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items {
|
|
544
|
+
height: 56px;
|
|
545
|
+
}
|
|
540
546
|
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
541
547
|
height: 56px;
|
|
542
548
|
min-height: 56px;
|
|
@@ -563,6 +569,20 @@
|
|
|
563
569
|
.e-schedule.e-device .e-content-wrap.e-scroll-hidden {
|
|
564
570
|
overflow: hidden;
|
|
565
571
|
}
|
|
572
|
+
@media screen and (max-width: 320px) {
|
|
573
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop {
|
|
574
|
+
width: 100%;
|
|
575
|
+
}
|
|
576
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
|
|
577
|
+
padding-left: 7px;
|
|
578
|
+
}
|
|
579
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop.e-rtl .e-toolbar-item .e-tbar-btn.e-btn {
|
|
580
|
+
padding-right: 7px;
|
|
581
|
+
}
|
|
582
|
+
.e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
|
|
583
|
+
font-size: 8px;
|
|
584
|
+
}
|
|
585
|
+
}
|
|
566
586
|
.e-schedule .e-schedule-resource-toolbar {
|
|
567
587
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
|
|
568
588
|
border-bottom: 1px solid rgba(var(--color-sf-outline-variant));
|
|
@@ -1396,7 +1416,7 @@
|
|
|
1396
1416
|
cursor: default;
|
|
1397
1417
|
font-weight: normal;
|
|
1398
1418
|
height: 34px;
|
|
1399
|
-
padding:
|
|
1419
|
+
padding: 3px;
|
|
1400
1420
|
}
|
|
1401
1421
|
.e-schedule .e-month-view .e-content-table {
|
|
1402
1422
|
height: 100%;
|
|
@@ -2610,8 +2630,8 @@
|
|
|
2610
2630
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2611
2631
|
min-height: 56px;
|
|
2612
2632
|
}
|
|
2613
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2614
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2633
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2634
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2615
2635
|
min-width: 32px;
|
|
2616
2636
|
}
|
|
2617
2637
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|
|
@@ -2931,6 +2951,19 @@
|
|
|
2931
2951
|
float: right;
|
|
2932
2952
|
}
|
|
2933
2953
|
|
|
2954
|
+
/*! schedule event window for smaller viewports*/
|
|
2955
|
+
@media screen and (max-width: 320px) {
|
|
2956
|
+
.e-schedule-dialog.e-popup.e-popup-open {
|
|
2957
|
+
max-height: 350px;
|
|
2958
|
+
min-width: 100%;
|
|
2959
|
+
}
|
|
2960
|
+
.e-schedule-dialog .e-all-day-container {
|
|
2961
|
+
padding-bottom: 10px;
|
|
2962
|
+
}
|
|
2963
|
+
.e-schedule-dialog .e-all-day-time-zone-row {
|
|
2964
|
+
display: block;
|
|
2965
|
+
}
|
|
2966
|
+
}
|
|
2934
2967
|
.e-ddl.e-popup .e-resource-template {
|
|
2935
2968
|
display: -ms-flexbox;
|
|
2936
2969
|
display: flex;
|
|
@@ -3520,6 +3553,18 @@
|
|
|
3520
3553
|
margin-right: 0;
|
|
3521
3554
|
}
|
|
3522
3555
|
|
|
3556
|
+
/*! schedule quick popup for smaller viewports */
|
|
3557
|
+
@media screen and (max-width: 320px) {
|
|
3558
|
+
.e-quick-popup-wrapper {
|
|
3559
|
+
min-width: 100%;
|
|
3560
|
+
}
|
|
3561
|
+
.e-quick-popup-wrapper .e-popup-footer {
|
|
3562
|
+
padding-left: 5px;
|
|
3563
|
+
}
|
|
3564
|
+
.e-quick-popup-wrapper.e-rtl .e-popup-footer {
|
|
3565
|
+
padding-right: 5px;
|
|
3566
|
+
}
|
|
3567
|
+
}
|
|
3523
3568
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
3524
3569
|
font-size: 24px;
|
|
3525
3570
|
}
|
|
@@ -313,6 +313,9 @@
|
|
|
313
313
|
font-size: 14px;
|
|
314
314
|
text-transform: none;
|
|
315
315
|
}
|
|
316
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
317
|
+
height: 38px;
|
|
318
|
+
}
|
|
316
319
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
317
320
|
height: 38px;
|
|
318
321
|
min-height: 38px;
|
|
@@ -385,6 +388,9 @@
|
|
|
385
388
|
.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 {
|
|
386
389
|
height: calc(100% - 20px);
|
|
387
390
|
}
|
|
391
|
+
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items {
|
|
392
|
+
height: 54px;
|
|
393
|
+
}
|
|
388
394
|
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
389
395
|
height: 54px;
|
|
390
396
|
min-height: 54px;
|
|
@@ -411,6 +417,20 @@
|
|
|
411
417
|
.e-schedule.e-device .e-content-wrap.e-scroll-hidden {
|
|
412
418
|
overflow: hidden;
|
|
413
419
|
}
|
|
420
|
+
@media screen and (max-width: 320px) {
|
|
421
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop {
|
|
422
|
+
width: 100%;
|
|
423
|
+
}
|
|
424
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
|
|
425
|
+
padding-left: 7px;
|
|
426
|
+
}
|
|
427
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-pop.e-rtl .e-toolbar-item .e-tbar-btn.e-btn {
|
|
428
|
+
padding-right: 7px;
|
|
429
|
+
}
|
|
430
|
+
.e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
|
|
431
|
+
font-size: 8px;
|
|
432
|
+
}
|
|
433
|
+
}
|
|
414
434
|
.e-schedule .e-schedule-resource-toolbar {
|
|
415
435
|
background: #374151;
|
|
416
436
|
border-bottom: 0;
|
|
@@ -1244,7 +1264,7 @@
|
|
|
1244
1264
|
cursor: default;
|
|
1245
1265
|
font-weight: normal;
|
|
1246
1266
|
height: 34px;
|
|
1247
|
-
padding:
|
|
1267
|
+
padding: 3px;
|
|
1248
1268
|
}
|
|
1249
1269
|
.e-schedule .e-month-view .e-content-table {
|
|
1250
1270
|
height: 100%;
|
|
@@ -2458,8 +2478,8 @@
|
|
|
2458
2478
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2459
2479
|
min-height: 54px;
|
|
2460
2480
|
}
|
|
2461
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2462
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2481
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2482
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2463
2483
|
min-width: 34px;
|
|
2464
2484
|
}
|
|
2465
2485
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|
|
@@ -2779,6 +2799,19 @@
|
|
|
2779
2799
|
float: right;
|
|
2780
2800
|
}
|
|
2781
2801
|
|
|
2802
|
+
/*! schedule event window for smaller viewports*/
|
|
2803
|
+
@media screen and (max-width: 320px) {
|
|
2804
|
+
.e-schedule-dialog.e-popup.e-popup-open {
|
|
2805
|
+
max-height: 350px;
|
|
2806
|
+
min-width: 100%;
|
|
2807
|
+
}
|
|
2808
|
+
.e-schedule-dialog .e-all-day-container {
|
|
2809
|
+
padding-bottom: 10px;
|
|
2810
|
+
}
|
|
2811
|
+
.e-schedule-dialog .e-all-day-time-zone-row {
|
|
2812
|
+
display: block;
|
|
2813
|
+
}
|
|
2814
|
+
}
|
|
2782
2815
|
.e-ddl.e-popup .e-resource-template {
|
|
2783
2816
|
display: -ms-flexbox;
|
|
2784
2817
|
display: flex;
|
|
@@ -3368,6 +3401,18 @@
|
|
|
3368
3401
|
margin-right: 0;
|
|
3369
3402
|
}
|
|
3370
3403
|
|
|
3404
|
+
/*! schedule quick popup for smaller viewports */
|
|
3405
|
+
@media screen and (max-width: 320px) {
|
|
3406
|
+
.e-quick-popup-wrapper {
|
|
3407
|
+
min-width: 100%;
|
|
3408
|
+
}
|
|
3409
|
+
.e-quick-popup-wrapper .e-popup-footer {
|
|
3410
|
+
padding-left: 5px;
|
|
3411
|
+
}
|
|
3412
|
+
.e-quick-popup-wrapper.e-rtl .e-popup-footer {
|
|
3413
|
+
padding-right: 5px;
|
|
3414
|
+
}
|
|
3415
|
+
}
|
|
3371
3416
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
3372
3417
|
font-size: 24px;
|
|
3373
3418
|
}
|