@syncfusion/ej2-schedule 25.2.7 → 26.1.38
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/.eslintrc.json +3 -2
- 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 +436 -376
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +496 -450
- 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 +17 -16
- package/src/recurrence-editor/date-generator.js +1 -0
- package/src/recurrence-editor/recurrence-editor.d.ts +8 -8
- package/src/recurrence-editor/recurrence-editor.js +1 -2
- package/src/schedule/actions/crud.js +3 -1
- package/src/schedule/actions/drag.js +2 -1
- package/src/schedule/actions/keyboard.js +1 -1
- package/src/schedule/actions/resize.js +5 -0
- package/src/schedule/actions/virtual-scroll.js +2 -1
- package/src/schedule/base/interface.js +0 -1
- package/src/schedule/base/schedule-model.d.ts +11 -11
- package/src/schedule/base/schedule.d.ts +11 -11
- package/src/schedule/base/schedule.js +28 -12
- package/src/schedule/base/util.js +1 -1
- package/src/schedule/event-renderer/agenda-base.js +2 -2
- package/src/schedule/event-renderer/event-base.js +6 -4
- package/src/schedule/event-renderer/month.js +2 -1
- package/src/schedule/event-renderer/timeline-view.js +10 -3
- package/src/schedule/event-renderer/vertical-view.js +4 -4
- package/src/schedule/event-renderer/year.js +3 -2
- package/src/schedule/exports/calendar-import.js +1 -2
- package/src/schedule/exports/print.js +10 -7
- package/src/schedule/models/toolbar-model.d.ts +2 -2
- package/src/schedule/popups/event-window.js +1 -1
- package/src/schedule/popups/quick-popups.js +1 -1
- package/src/schedule/renderer/header-renderer.js +7 -5
- package/src/schedule/renderer/month.js +5 -4
- package/src/schedule/renderer/renderer.js +8 -2
- package/src/schedule/renderer/timeline-year.js +3 -3
- package/src/schedule/renderer/vertical-view.d.ts +1 -0
- package/src/schedule/renderer/vertical-view.js +24 -9
- package/src/schedule/renderer/view-base.d.ts +1 -0
- package/src/schedule/renderer/view-base.js +33 -6
- package/src/schedule/renderer/year.js +1 -1
- package/styles/bootstrap-dark.css +236 -147
- package/styles/bootstrap-dark.scss +19 -2
- package/styles/bootstrap.css +237 -148
- package/styles/bootstrap.scss +19 -2
- package/styles/bootstrap4.css +239 -153
- package/styles/bootstrap4.scss +19 -2
- package/styles/bootstrap5-dark.css +229 -144
- package/styles/bootstrap5-dark.scss +19 -2
- package/styles/bootstrap5.css +229 -144
- package/styles/bootstrap5.scss +19 -2
- package/styles/fabric-dark.css +234 -146
- package/styles/fabric-dark.scss +19 -2
- package/styles/fabric.css +234 -146
- package/styles/fabric.scss +19 -2
- package/styles/fluent-dark.css +229 -142
- package/styles/fluent-dark.scss +19 -2
- package/styles/fluent.css +229 -142
- package/styles/fluent.scss +19 -2
- package/styles/fluent2.css +5947 -0
- package/styles/fluent2.scss +19 -0
- package/styles/highcontrast-light.css +229 -138
- package/styles/highcontrast-light.scss +19 -2
- package/styles/highcontrast.css +229 -138
- package/styles/highcontrast.scss +19 -2
- package/styles/material-dark.css +273 -155
- package/styles/material-dark.scss +19 -2
- package/styles/material.css +285 -156
- package/styles/material.scss +19 -2
- package/styles/material3-dark.css +278 -154
- package/styles/material3-dark.scss +19 -2
- package/styles/material3.css +278 -154
- package/styles/material3.scss +19 -2
- package/styles/recurrence-editor/_bds-definition.scss +0 -1
- package/styles/recurrence-editor/_bootstrap-dark-definition.scss +0 -1
- package/styles/recurrence-editor/_bootstrap-definition.scss +0 -1
- package/styles/recurrence-editor/_bootstrap4-definition.scss +0 -1
- package/styles/recurrence-editor/_bootstrap5-definition.scss +0 -1
- package/styles/recurrence-editor/_bootstrap5.3-definition.scss +14 -0
- package/styles/recurrence-editor/_fabric-dark-definition.scss +0 -1
- package/styles/recurrence-editor/_fabric-definition.scss +0 -1
- package/styles/recurrence-editor/_fluent-definition.scss +0 -1
- package/styles/recurrence-editor/_fluent2-definition.scss +14 -0
- package/styles/recurrence-editor/_fusionnew-definition.scss +0 -1
- package/styles/recurrence-editor/_highcontrast-definition.scss +0 -1
- package/styles/recurrence-editor/_highcontrast-light-definition.scss +0 -1
- package/styles/recurrence-editor/_layout.scss +1 -17
- package/styles/recurrence-editor/_material-dark-definition.scss +0 -1
- package/styles/recurrence-editor/_material-definition.scss +0 -1
- package/styles/recurrence-editor/_material3-definition.scss +0 -1
- package/styles/recurrence-editor/_tailwind-definition.scss +0 -1
- package/styles/recurrence-editor/bootstrap-dark.css +21 -23
- package/styles/recurrence-editor/bootstrap.css +21 -23
- package/styles/recurrence-editor/bootstrap4.css +22 -23
- package/styles/recurrence-editor/bootstrap5-dark.css +22 -23
- package/styles/recurrence-editor/bootstrap5.css +22 -23
- package/styles/recurrence-editor/fabric-dark.css +19 -22
- package/styles/recurrence-editor/fabric.css +19 -22
- package/styles/recurrence-editor/fluent-dark.css +22 -23
- package/styles/recurrence-editor/fluent.css +22 -23
- package/styles/recurrence-editor/fluent2.css +1534 -0
- package/styles/recurrence-editor/fluent2.scss +8 -0
- package/styles/recurrence-editor/highcontrast-light.css +19 -22
- package/styles/recurrence-editor/highcontrast.css +19 -22
- package/styles/recurrence-editor/material-dark.css +32 -26
- package/styles/recurrence-editor/material.css +32 -26
- package/styles/recurrence-editor/material3-dark.css +33 -27
- package/styles/recurrence-editor/material3.css +33 -27
- package/styles/recurrence-editor/tailwind-dark.css +32 -26
- package/styles/recurrence-editor/tailwind.css +32 -26
- package/styles/schedule/_bds-definition.scss +0 -15
- package/styles/schedule/_bootstrap-dark-definition.scss +4 -19
- package/styles/schedule/_bootstrap-definition.scss +4 -19
- package/styles/schedule/_bootstrap4-definition.scss +3 -18
- package/styles/schedule/_bootstrap5-definition.scss +1 -22
- package/styles/schedule/_bootstrap5.3-definition.scss +273 -0
- package/styles/schedule/_fabric-dark-definition.scss +4 -17
- package/styles/schedule/_fabric-definition.scss +4 -19
- package/styles/schedule/_fluent-definition.scss +0 -14
- package/styles/schedule/_fluent2-definition.scss +273 -0
- package/styles/schedule/_fusionnew-definition.scss +0 -21
- package/styles/schedule/_highcontrast-definition.scss +1 -16
- package/styles/schedule/_highcontrast-light-definition.scss +1 -16
- package/styles/schedule/_layout.scss +83 -130
- package/styles/schedule/_material-dark-definition.scss +5 -20
- package/styles/schedule/_material-definition.scss +4 -19
- package/styles/schedule/_material3-definition.scss +1 -23
- package/styles/schedule/_tailwind-definition.scss +0 -16
- package/styles/schedule/_theme.scss +18 -2
- package/styles/schedule/bootstrap-dark.css +220 -126
- package/styles/schedule/bootstrap.css +221 -127
- package/styles/schedule/bootstrap4.css +223 -132
- package/styles/schedule/bootstrap5-dark.css +213 -123
- package/styles/schedule/bootstrap5.css +213 -123
- package/styles/schedule/fabric-dark.css +218 -125
- package/styles/schedule/fabric.css +218 -125
- package/styles/schedule/fluent-dark.css +213 -121
- package/styles/schedule/fluent.css +213 -121
- package/styles/schedule/fluent2.css +5551 -0
- package/styles/schedule/fluent2.scss +16 -0
- package/styles/schedule/highcontrast-light.css +213 -117
- package/styles/schedule/highcontrast.css +213 -117
- package/styles/schedule/icons/_bds.scss +6 -21
- package/styles/schedule/icons/_bootstrap-dark.scss +4 -16
- package/styles/schedule/icons/_bootstrap.scss +4 -16
- package/styles/schedule/icons/_bootstrap4.scss +8 -26
- package/styles/schedule/icons/_bootstrap5.3.scss +220 -0
- package/styles/schedule/icons/_bootstrap5.scss +7 -22
- package/styles/schedule/icons/_fabric-dark.scss +5 -17
- package/styles/schedule/icons/_fabric.scss +5 -17
- package/styles/schedule/icons/_fluent.scss +7 -22
- package/styles/schedule/icons/_fluent2.scss +220 -0
- package/styles/schedule/icons/_fusionnew.scss +7 -22
- package/styles/schedule/icons/_highcontrast-light.scss +5 -17
- package/styles/schedule/icons/_highcontrast.scss +5 -17
- package/styles/schedule/icons/_material-dark.scss +5 -17
- package/styles/schedule/icons/_material.scss +5 -17
- package/styles/schedule/icons/_material3.scss +7 -22
- package/styles/schedule/icons/_tailwind.scss +7 -22
- package/styles/schedule/material-dark.css +257 -134
- package/styles/schedule/material.css +269 -135
- package/styles/schedule/material3-dark.css +262 -133
- package/styles/schedule/material3.css +262 -133
- package/styles/schedule/tailwind-dark.css +223 -124
- package/styles/schedule/tailwind.css +223 -124
- package/styles/tailwind-dark.css +239 -145
- package/styles/tailwind-dark.scss +19 -2
- package/styles/tailwind.css +239 -145
- package/styles/tailwind.scss +19 -2
- package/CHANGELOG.md +0 -1932
package/styles/material.css
CHANGED
|
@@ -1,39 +1,79 @@
|
|
|
1
|
-
|
|
1
|
+
@-webkit-keyframes tbar-popup-shadow {
|
|
2
|
+
0% {
|
|
3
|
+
border-color: rgba(255, 255, 255, 0.5);
|
|
4
|
+
-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
|
|
5
|
+
box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
|
|
6
|
+
}
|
|
7
|
+
100% {
|
|
8
|
+
-webkit-box-shadow: 0 0 0 200px rgba(255, 255, 255, 0.12);
|
|
9
|
+
box-shadow: 0 0 0 200px rgba(255, 255, 255, 0.12);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
2
12
|
@keyframes tbar-popup-shadow {
|
|
3
13
|
0% {
|
|
4
14
|
border-color: rgba(255, 255, 255, 0.5);
|
|
5
|
-
box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
|
|
15
|
+
-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
|
|
16
|
+
box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
|
|
6
17
|
}
|
|
7
18
|
100% {
|
|
8
|
-
box-shadow: 0 0 0 200px rgba(255, 255, 255, 0.12);
|
|
19
|
+
-webkit-box-shadow: 0 0 0 200px rgba(255, 255, 255, 0.12);
|
|
20
|
+
box-shadow: 0 0 0 200px rgba(255, 255, 255, 0.12);
|
|
9
21
|
}
|
|
10
22
|
}
|
|
11
23
|
/*! TreeView's material theme wise override definitions and variables */
|
|
12
24
|
/* stylelint-disable */
|
|
13
25
|
/* stylelint-disable property-no-vendor-prefix */
|
|
26
|
+
@-webkit-keyframes e-input-ripple {
|
|
27
|
+
100% {
|
|
28
|
+
opacity: 0;
|
|
29
|
+
-webkit-transform: scale(4);
|
|
30
|
+
transform: scale(4);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
14
33
|
@keyframes e-input-ripple {
|
|
15
34
|
100% {
|
|
16
35
|
opacity: 0;
|
|
17
|
-
transform: scale(4);
|
|
36
|
+
-webkit-transform: scale(4);
|
|
37
|
+
transform: scale(4);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
@-webkit-keyframes slideTopUp {
|
|
41
|
+
from {
|
|
42
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
43
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
44
|
+
}
|
|
45
|
+
to {
|
|
46
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
47
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
18
48
|
}
|
|
19
49
|
}
|
|
20
50
|
@keyframes slideTopUp {
|
|
21
51
|
from {
|
|
22
|
-
transform: translate3d(0, 0, 0) scale(1);
|
|
52
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
53
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
23
54
|
}
|
|
24
55
|
to {
|
|
25
|
-
transform: translate3d(0, 0, 0) scale(1);
|
|
56
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
57
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
26
58
|
}
|
|
27
59
|
}
|
|
28
60
|
/*! calendar material theme variables */
|
|
29
61
|
.e-ddl.e-control-wrapper .e-ddl-icon::before {
|
|
30
|
-
transform: rotate(0deg);
|
|
62
|
+
-webkit-transform: rotate(0deg);
|
|
63
|
+
transform: rotate(0deg);
|
|
64
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
65
|
+
transition: -webkit-transform 300ms ease;
|
|
31
66
|
transition: transform 300ms ease;
|
|
67
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
32
68
|
}
|
|
33
69
|
|
|
34
70
|
.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before {
|
|
35
|
-
transform: rotate(180deg);
|
|
71
|
+
-webkit-transform: rotate(180deg);
|
|
72
|
+
transform: rotate(180deg);
|
|
73
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
74
|
+
transition: -webkit-transform 300ms ease;
|
|
36
75
|
transition: transform 300ms ease;
|
|
76
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
37
77
|
}
|
|
38
78
|
|
|
39
79
|
.e-dropdownbase .e-list-item.e-active.e-hover {
|
|
@@ -50,12 +90,14 @@
|
|
|
50
90
|
}
|
|
51
91
|
|
|
52
92
|
.e-input-group .e-ddl-icon:not(:active)::after {
|
|
53
|
-
animation: none;
|
|
93
|
+
-webkit-animation: none;
|
|
94
|
+
animation: none;
|
|
54
95
|
}
|
|
55
96
|
|
|
56
97
|
.e-ddl.e-popup {
|
|
57
98
|
border: 0;
|
|
58
|
-
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
99
|
+
-webkit-box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
100
|
+
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
59
101
|
margin-top: 2px;
|
|
60
102
|
}
|
|
61
103
|
|
|
@@ -75,7 +117,8 @@
|
|
|
75
117
|
.e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
76
118
|
background: #f5f5f5;
|
|
77
119
|
border-width: 0;
|
|
78
|
-
box-shadow: none;
|
|
120
|
+
-webkit-box-shadow: none;
|
|
121
|
+
box-shadow: none;
|
|
79
122
|
margin-bottom: 0;
|
|
80
123
|
}
|
|
81
124
|
|
|
@@ -166,7 +209,6 @@
|
|
|
166
209
|
padding: 0;
|
|
167
210
|
}
|
|
168
211
|
|
|
169
|
-
/*! recurrence editor theme wise definitions*/ /*! Schedule component's material theme definitions and variables */
|
|
170
212
|
.e-schedule .e-schedule-toolbar .e-icon-prev::before {
|
|
171
213
|
content: "\e937";
|
|
172
214
|
}
|
|
@@ -200,13 +242,7 @@
|
|
|
200
242
|
.e-schedule .e-schedule-toolbar .e-icon-agenda::before {
|
|
201
243
|
content: "\e31d";
|
|
202
244
|
}
|
|
203
|
-
.e-schedule .e-schedule-toolbar .e-icon-year::before {
|
|
204
|
-
content: "\ea8e";
|
|
205
|
-
}
|
|
206
|
-
.e-schedule .e-schedule-toolbar .e-icon-timeline-year-vertical::before {
|
|
207
|
-
content: "\ea8e";
|
|
208
|
-
}
|
|
209
|
-
.e-schedule .e-schedule-toolbar .e-icon-timeline-year-horizontal::before {
|
|
245
|
+
.e-schedule .e-schedule-toolbar .e-icon-year::before, .e-schedule .e-schedule-toolbar .e-icon-timeline-year-vertical::before, .e-schedule .e-schedule-toolbar .e-icon-timeline-year-horizontal::before, .e-schedule .e-schedule-toolbar .e-icon-timeline-month::before {
|
|
210
246
|
content: "\ea8e";
|
|
211
247
|
}
|
|
212
248
|
.e-schedule .e-schedule-toolbar .e-icon-timeline-day::before {
|
|
@@ -218,12 +254,7 @@
|
|
|
218
254
|
.e-schedule .e-schedule-toolbar .e-icon-timeline-workweek::before {
|
|
219
255
|
content: "\ea8b";
|
|
220
256
|
}
|
|
221
|
-
.e-schedule .e-schedule-toolbar .e-
|
|
222
|
-
content: "\ea8e";
|
|
223
|
-
}
|
|
224
|
-
.e-schedule .e-schedule-toolbar.e-toolbar .e-popup-down-icon::before {
|
|
225
|
-
content: "\e984";
|
|
226
|
-
}
|
|
257
|
+
.e-schedule .e-schedule-toolbar.e-toolbar .e-popup-down-icon::before,
|
|
227
258
|
.e-schedule .e-schedule-toolbar.e-toolbar .e-popup-up-icon::before {
|
|
228
259
|
content: "\e984";
|
|
229
260
|
}
|
|
@@ -325,20 +356,21 @@
|
|
|
325
356
|
content: "\e7fc";
|
|
326
357
|
}
|
|
327
358
|
|
|
328
|
-
/*! schedule component layout */
|
|
329
359
|
.e-schedule {
|
|
330
360
|
display: block;
|
|
331
361
|
outline: medium none;
|
|
332
362
|
overflow: hidden;
|
|
333
363
|
position: relative;
|
|
334
364
|
-webkit-user-select: none;
|
|
365
|
+
-moz-user-select: none;
|
|
335
366
|
-ms-user-select: none;
|
|
336
367
|
user-select: none;
|
|
337
368
|
}
|
|
338
369
|
.e-schedule .e-schedule-toolbar {
|
|
339
370
|
border: 0;
|
|
340
371
|
border-bottom: 0;
|
|
341
|
-
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
|
|
372
|
+
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
|
|
373
|
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
|
|
342
374
|
margin-bottom: 3px;
|
|
343
375
|
min-height: 42px;
|
|
344
376
|
}
|
|
@@ -435,6 +467,12 @@
|
|
|
435
467
|
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items {
|
|
436
468
|
height: 56px;
|
|
437
469
|
}
|
|
470
|
+
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-today .e-icon-today + .e-tbar-btn-text {
|
|
471
|
+
display: none;
|
|
472
|
+
}
|
|
473
|
+
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-today .e-icon-today {
|
|
474
|
+
display: block;
|
|
475
|
+
}
|
|
438
476
|
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
439
477
|
height: 56px;
|
|
440
478
|
min-height: 56px;
|
|
@@ -478,7 +516,9 @@
|
|
|
478
516
|
.e-schedule .e-schedule-resource-toolbar {
|
|
479
517
|
background: #fafafa;
|
|
480
518
|
border-bottom: 0;
|
|
481
|
-
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
|
|
519
|
+
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
|
|
520
|
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
|
|
521
|
+
display: -webkit-box;
|
|
482
522
|
display: -ms-flexbox;
|
|
483
523
|
display: flex;
|
|
484
524
|
margin-bottom: 3px;
|
|
@@ -495,6 +535,7 @@
|
|
|
495
535
|
display: none;
|
|
496
536
|
}
|
|
497
537
|
.e-schedule .e-schedule-resource-toolbar .e-resource-level-title {
|
|
538
|
+
display: -webkit-box;
|
|
498
539
|
display: -ms-flexbox;
|
|
499
540
|
display: flex;
|
|
500
541
|
}
|
|
@@ -527,17 +568,22 @@
|
|
|
527
568
|
text-align: center;
|
|
528
569
|
}
|
|
529
570
|
.e-schedule .e-table-container {
|
|
571
|
+
display: -webkit-inline-box;
|
|
530
572
|
display: -ms-inline-flexbox;
|
|
531
573
|
display: inline-flex;
|
|
532
574
|
position: relative;
|
|
533
575
|
vertical-align: top;
|
|
534
576
|
}
|
|
535
577
|
.e-schedule .e-table-container.e-translate {
|
|
578
|
+
-webkit-transition: -webkit-transform 0.1s ease 0s;
|
|
579
|
+
transition: -webkit-transform 0.1s ease 0s;
|
|
536
580
|
transition: transform 0.1s ease 0s;
|
|
581
|
+
transition: transform 0.1s ease 0s, -webkit-transform 0.1s ease 0s;
|
|
537
582
|
}
|
|
538
583
|
.e-schedule .e-resource-tree-popup {
|
|
539
584
|
background: #fff;
|
|
540
|
-
box-shadow: 0 3px 4px 0.2px rgba(0, 0, 0, 0.4);
|
|
585
|
+
-webkit-box-shadow: 0 3px 4px 0.2px rgba(0, 0, 0, 0.4);
|
|
586
|
+
box-shadow: 0 3px 4px 0.2px rgba(0, 0, 0, 0.4);
|
|
541
587
|
height: 100%;
|
|
542
588
|
position: absolute;
|
|
543
589
|
width: 250px;
|
|
@@ -551,7 +597,7 @@
|
|
|
551
597
|
padding: 0 0 0 12px;
|
|
552
598
|
}
|
|
553
599
|
.e-schedule .e-resource-tree-popup-overlay.e-enable {
|
|
554
|
-
background: #
|
|
600
|
+
background: #333;
|
|
555
601
|
height: 100%;
|
|
556
602
|
left: 0;
|
|
557
603
|
opacity: 0.5;
|
|
@@ -591,7 +637,8 @@
|
|
|
591
637
|
}
|
|
592
638
|
.e-schedule .e-schedule-table > tbody > tr > th,
|
|
593
639
|
.e-schedule .e-schedule-table > tbody > tr > td {
|
|
594
|
-
box-sizing: border-box;
|
|
640
|
+
-webkit-box-sizing: border-box;
|
|
641
|
+
box-sizing: border-box;
|
|
595
642
|
font-weight: normal;
|
|
596
643
|
overflow: hidden;
|
|
597
644
|
text-overflow: ellipsis;
|
|
@@ -672,6 +719,7 @@
|
|
|
672
719
|
}
|
|
673
720
|
.e-schedule .e-appointment {
|
|
674
721
|
opacity: 1;
|
|
722
|
+
-webkit-transition: opacity 100ms linear;
|
|
675
723
|
transition: opacity 100ms linear;
|
|
676
724
|
}
|
|
677
725
|
.e-schedule .e-appointment .e-subject.e-disable {
|
|
@@ -723,7 +771,8 @@
|
|
|
723
771
|
height: 10px;
|
|
724
772
|
left: 50%;
|
|
725
773
|
position: absolute;
|
|
726
|
-
transform: translateX(-50%);
|
|
774
|
+
-webkit-transform: translateX(-50%);
|
|
775
|
+
transform: translateX(-50%);
|
|
727
776
|
width: 100%;
|
|
728
777
|
}
|
|
729
778
|
.e-schedule.e-device .e-appointment.e-appointment-border .e-left-right-resize {
|
|
@@ -731,7 +780,8 @@
|
|
|
731
780
|
height: 100%;
|
|
732
781
|
position: absolute;
|
|
733
782
|
top: 50%;
|
|
734
|
-
transform: translateY(-50%);
|
|
783
|
+
-webkit-transform: translateY(-50%);
|
|
784
|
+
transform: translateY(-50%);
|
|
735
785
|
width: 10px;
|
|
736
786
|
}
|
|
737
787
|
.e-schedule.e-device .e-appointment.e-appointment-border .e-top-handler .e-top-bottom-resize {
|
|
@@ -800,24 +850,28 @@
|
|
|
800
850
|
border: 1px solid #e8eaf6;
|
|
801
851
|
border-radius: 2px;
|
|
802
852
|
color: #fff;
|
|
853
|
+
display: -webkit-box;
|
|
803
854
|
display: -ms-flexbox;
|
|
804
855
|
display: flex;
|
|
805
|
-
height: 54px;
|
|
806
|
-
margin-bottom: 2px;
|
|
807
856
|
overflow: hidden;
|
|
808
857
|
position: absolute;
|
|
858
|
+
height: 54px;
|
|
859
|
+
margin-bottom: 2px;
|
|
809
860
|
}
|
|
810
861
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-appointment-details {
|
|
862
|
+
display: -webkit-box;
|
|
811
863
|
display: -ms-flexbox;
|
|
812
864
|
display: flex;
|
|
813
|
-
-
|
|
814
|
-
flex: auto;
|
|
865
|
+
-webkit-box-flex: 1;
|
|
866
|
+
-ms-flex: auto;
|
|
867
|
+
flex: auto;
|
|
815
868
|
padding: 2px 4px 0 2px;
|
|
816
869
|
text-align: left;
|
|
817
870
|
}
|
|
818
871
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-inner-wrap {
|
|
819
|
-
-
|
|
820
|
-
flex: auto;
|
|
872
|
+
-webkit-box-flex: 1;
|
|
873
|
+
-ms-flex: auto;
|
|
874
|
+
flex: auto;
|
|
821
875
|
overflow: hidden;
|
|
822
876
|
}
|
|
823
877
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-subject {
|
|
@@ -854,7 +908,8 @@
|
|
|
854
908
|
}
|
|
855
909
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment.e-appointment-border, .e-schedule .e-vertical-view.e-timescale-disable .e-appointment:focus {
|
|
856
910
|
border: 0;
|
|
857
|
-
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
911
|
+
-webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
912
|
+
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
858
913
|
}
|
|
859
914
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment.e-allow-select {
|
|
860
915
|
pointer-events: none;
|
|
@@ -965,18 +1020,24 @@
|
|
|
965
1020
|
margin: 0 auto;
|
|
966
1021
|
position: absolute;
|
|
967
1022
|
right: 0;
|
|
968
|
-
transform: rotate(0deg);
|
|
1023
|
+
-webkit-transform: rotate(0deg);
|
|
1024
|
+
transform: rotate(0deg);
|
|
1025
|
+
-webkit-transition: -webkit-transform 300ms ease-in-out;
|
|
1026
|
+
transition: -webkit-transform 300ms ease-in-out;
|
|
969
1027
|
transition: transform 300ms ease-in-out;
|
|
1028
|
+
transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
|
|
970
1029
|
width: 25px;
|
|
971
1030
|
}
|
|
972
1031
|
.e-schedule .e-vertical-view .e-all-day-appointment-section.e-disable {
|
|
973
1032
|
display: none;
|
|
974
1033
|
}
|
|
975
1034
|
.e-schedule .e-vertical-view .e-all-day-appointment-section.e-appointment-expand {
|
|
976
|
-
transform: rotate(0deg);
|
|
1035
|
+
-webkit-transform: rotate(0deg);
|
|
1036
|
+
transform: rotate(0deg);
|
|
977
1037
|
}
|
|
978
1038
|
.e-schedule .e-vertical-view .e-all-day-appointment-section.e-appointment-collapse {
|
|
979
|
-
transform: rotate(180deg);
|
|
1039
|
+
-webkit-transform: rotate(180deg);
|
|
1040
|
+
transform: rotate(180deg);
|
|
980
1041
|
}
|
|
981
1042
|
.e-schedule .e-vertical-view .e-all-day-appointment-section:hover, .e-schedule .e-vertical-view .e-all-day-appointment-section:focus {
|
|
982
1043
|
background: #e0e0e0;
|
|
@@ -993,6 +1054,7 @@
|
|
|
993
1054
|
vertical-align: top;
|
|
994
1055
|
}
|
|
995
1056
|
.e-schedule .e-vertical-view .e-all-day-cells:first-child.e-animate {
|
|
1057
|
+
-webkit-transition: 250ms ease-out;
|
|
996
1058
|
transition: 250ms ease-out;
|
|
997
1059
|
}
|
|
998
1060
|
.e-schedule .e-vertical-view .e-time-cells-wrap table td,
|
|
@@ -1012,7 +1074,8 @@
|
|
|
1012
1074
|
}
|
|
1013
1075
|
.e-schedule .e-vertical-view.e-virtual-mask .e-work-cells {
|
|
1014
1076
|
background: rgba(0, 0, 0, 0.08);
|
|
1015
|
-
box-shadow: inset 0 0 0 8px #fafafa;
|
|
1077
|
+
-webkit-box-shadow: inset 0 0 0 8px #fafafa;
|
|
1078
|
+
box-shadow: inset 0 0 0 8px #fafafa;
|
|
1016
1079
|
}
|
|
1017
1080
|
.e-schedule .e-vertical-view.e-virtual-mask .e-work-cells:hover {
|
|
1018
1081
|
background: rgba(0, 0, 0, 0.08);
|
|
@@ -1079,24 +1142,28 @@
|
|
|
1079
1142
|
border: 1px solid #e8eaf6;
|
|
1080
1143
|
border-radius: 2px;
|
|
1081
1144
|
color: #fff;
|
|
1145
|
+
display: -webkit-box;
|
|
1082
1146
|
display: -ms-flexbox;
|
|
1083
1147
|
display: flex;
|
|
1084
|
-
height: 22px;
|
|
1085
1148
|
overflow: hidden;
|
|
1086
1149
|
position: absolute;
|
|
1150
|
+
height: 22px;
|
|
1087
1151
|
}
|
|
1088
1152
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment .e-appointment-details {
|
|
1153
|
+
display: -webkit-box;
|
|
1089
1154
|
display: -ms-flexbox;
|
|
1090
1155
|
display: flex;
|
|
1091
|
-
-
|
|
1092
|
-
flex: auto;
|
|
1156
|
+
-webkit-box-flex: 1;
|
|
1157
|
+
-ms-flex: auto;
|
|
1158
|
+
flex: auto;
|
|
1093
1159
|
line-height: 20px;
|
|
1094
1160
|
overflow: hidden;
|
|
1095
1161
|
padding: 1px 0 1px 4px;
|
|
1096
1162
|
}
|
|
1097
1163
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment .e-appointment-details .e-subject {
|
|
1098
|
-
-
|
|
1099
|
-
flex: auto;
|
|
1164
|
+
-webkit-box-flex: 1;
|
|
1165
|
+
-ms-flex: auto;
|
|
1166
|
+
flex: auto;
|
|
1100
1167
|
font-size: 13px;
|
|
1101
1168
|
font-weight: 500;
|
|
1102
1169
|
overflow: hidden;
|
|
@@ -1119,7 +1186,8 @@
|
|
|
1119
1186
|
}
|
|
1120
1187
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment.e-appointment-border, .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:focus {
|
|
1121
1188
|
border: 0;
|
|
1122
|
-
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
1189
|
+
-webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
1190
|
+
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
1123
1191
|
}
|
|
1124
1192
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment:not(.e-schedule-event-clone) {
|
|
1125
1193
|
cursor: default;
|
|
@@ -1133,8 +1201,9 @@
|
|
|
1133
1201
|
position: absolute;
|
|
1134
1202
|
}
|
|
1135
1203
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-appointment-details {
|
|
1136
|
-
-
|
|
1137
|
-
flex: auto;
|
|
1204
|
+
-webkit-box-flex: 1;
|
|
1205
|
+
-ms-flex: auto;
|
|
1206
|
+
flex: auto;
|
|
1138
1207
|
padding: 0 4px;
|
|
1139
1208
|
text-align: left;
|
|
1140
1209
|
line-height: unset;
|
|
@@ -1193,7 +1262,8 @@
|
|
|
1193
1262
|
}
|
|
1194
1263
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment.e-appointment-border, .e-schedule .e-vertical-view .e-day-wrapper .e-appointment:focus {
|
|
1195
1264
|
border: 0;
|
|
1196
|
-
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
1265
|
+
-webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
1266
|
+
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
1197
1267
|
}
|
|
1198
1268
|
.e-schedule .e-vertical-view.e-day-view .e-header-date {
|
|
1199
1269
|
cursor: default;
|
|
@@ -1339,7 +1409,8 @@
|
|
|
1339
1409
|
}
|
|
1340
1410
|
.e-schedule .e-month-view.e-virtual-mask .e-work-cells {
|
|
1341
1411
|
background: rgba(0, 0, 0, 0.08);
|
|
1342
|
-
box-shadow: inset 0 0 0 8px #fafafa;
|
|
1412
|
+
-webkit-box-shadow: inset 0 0 0 8px #fafafa;
|
|
1413
|
+
box-shadow: inset 0 0 0 8px #fafafa;
|
|
1343
1414
|
}
|
|
1344
1415
|
.e-schedule .e-month-view.e-virtual-mask .e-work-cells:hover {
|
|
1345
1416
|
background: rgba(0, 0, 0, 0.08);
|
|
@@ -1372,27 +1443,31 @@
|
|
|
1372
1443
|
border: 1px solid #e8eaf6;
|
|
1373
1444
|
border-radius: 2px;
|
|
1374
1445
|
color: #fff;
|
|
1375
|
-
|
|
1446
|
+
display: -webkit-box;
|
|
1376
1447
|
display: -ms-flexbox;
|
|
1377
1448
|
display: flex;
|
|
1378
|
-
height: 22px;
|
|
1379
1449
|
overflow: hidden;
|
|
1380
1450
|
position: absolute;
|
|
1451
|
+
cursor: default;
|
|
1452
|
+
height: 22px;
|
|
1381
1453
|
}
|
|
1382
1454
|
.e-schedule .e-month-view .e-appointment .e-disable {
|
|
1383
1455
|
display: none;
|
|
1384
1456
|
}
|
|
1385
1457
|
.e-schedule .e-month-view .e-appointment .e-appointment-details {
|
|
1458
|
+
display: -webkit-box;
|
|
1386
1459
|
display: -ms-flexbox;
|
|
1387
1460
|
display: flex;
|
|
1388
|
-
-
|
|
1389
|
-
flex: auto;
|
|
1461
|
+
-webkit-box-flex: 1;
|
|
1462
|
+
-ms-flex: auto;
|
|
1463
|
+
flex: auto;
|
|
1390
1464
|
line-height: 20px;
|
|
1391
1465
|
overflow: hidden;
|
|
1392
1466
|
}
|
|
1393
1467
|
.e-schedule .e-month-view .e-appointment .e-appointment-details .e-subject {
|
|
1394
|
-
-
|
|
1395
|
-
flex: auto;
|
|
1468
|
+
-webkit-box-flex: 1;
|
|
1469
|
+
-ms-flex: auto;
|
|
1470
|
+
flex: auto;
|
|
1396
1471
|
font-size: 13px;
|
|
1397
1472
|
font-weight: 500;
|
|
1398
1473
|
overflow: hidden;
|
|
@@ -1416,7 +1491,8 @@
|
|
|
1416
1491
|
}
|
|
1417
1492
|
.e-schedule .e-month-view .e-appointment.e-appointment-border, .e-schedule .e-month-view .e-appointment:focus {
|
|
1418
1493
|
border: 0;
|
|
1419
|
-
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
1494
|
+
-webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
1495
|
+
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
1420
1496
|
}
|
|
1421
1497
|
.e-schedule .e-month-view .e-appointment.e-allow-select {
|
|
1422
1498
|
pointer-events: none;
|
|
@@ -1441,26 +1517,26 @@
|
|
|
1441
1517
|
.e-schedule.e-rtl .e-month-view .e-date-header {
|
|
1442
1518
|
margin: 3px 3px 2px;
|
|
1443
1519
|
}
|
|
1444
|
-
.e-schedule.e-rtl .e-month-view .e-left-indent
|
|
1445
|
-
border-left: 1px solid rgba(0, 0, 0, 0.12);
|
|
1446
|
-
border-right-width: 0;
|
|
1447
|
-
}
|
|
1520
|
+
.e-schedule.e-rtl .e-month-view .e-left-indent,
|
|
1448
1521
|
.e-schedule.e-rtl .e-month-view .e-week-number {
|
|
1449
1522
|
border-left: 1px solid rgba(0, 0, 0, 0.12);
|
|
1450
1523
|
border-right-width: 0;
|
|
1451
1524
|
}
|
|
1452
1525
|
.e-schedule .e-year-view .e-calendar-wrapper {
|
|
1526
|
+
display: -webkit-box;
|
|
1453
1527
|
display: -ms-flexbox;
|
|
1454
1528
|
display: flex;
|
|
1455
1529
|
-ms-flex-wrap: wrap;
|
|
1456
1530
|
flex-wrap: wrap;
|
|
1457
|
-
-
|
|
1458
|
-
|
|
1531
|
+
-webkit-box-pack: center;
|
|
1532
|
+
-ms-flex-pack: center;
|
|
1533
|
+
justify-content: center;
|
|
1459
1534
|
}
|
|
1460
1535
|
.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
|
|
1461
1536
|
border: 0;
|
|
1462
|
-
-
|
|
1463
|
-
flex: 0 25%;
|
|
1537
|
+
-webkit-box-flex: 0;
|
|
1538
|
+
-ms-flex: 0 25%;
|
|
1539
|
+
flex: 0 25%;
|
|
1464
1540
|
max-width: 100%;
|
|
1465
1541
|
min-width: 260px;
|
|
1466
1542
|
padding: 10px;
|
|
@@ -1611,7 +1687,8 @@
|
|
|
1611
1687
|
padding: 4px 7px;
|
|
1612
1688
|
}
|
|
1613
1689
|
.e-schedule .e-timeline-year-view .e-resource-collapse {
|
|
1614
|
-
transform: rotate(90deg);
|
|
1690
|
+
-webkit-transform: rotate(90deg);
|
|
1691
|
+
transform: rotate(90deg);
|
|
1615
1692
|
}
|
|
1616
1693
|
.e-schedule .e-timeline-year-view .e-content-table {
|
|
1617
1694
|
height: 100%;
|
|
@@ -1694,27 +1771,31 @@
|
|
|
1694
1771
|
border: 1px solid #e8eaf6;
|
|
1695
1772
|
border-radius: 2px;
|
|
1696
1773
|
color: #fff;
|
|
1697
|
-
|
|
1774
|
+
display: -webkit-box;
|
|
1698
1775
|
display: -ms-flexbox;
|
|
1699
1776
|
display: flex;
|
|
1700
|
-
height: 22px;
|
|
1701
1777
|
overflow: hidden;
|
|
1702
1778
|
position: absolute;
|
|
1779
|
+
cursor: default;
|
|
1780
|
+
height: 22px;
|
|
1703
1781
|
}
|
|
1704
1782
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-hidden {
|
|
1705
1783
|
display: none;
|
|
1706
1784
|
}
|
|
1707
1785
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-appointment-details {
|
|
1786
|
+
display: -webkit-box;
|
|
1708
1787
|
display: -ms-flexbox;
|
|
1709
1788
|
display: flex;
|
|
1710
|
-
-
|
|
1711
|
-
flex: auto;
|
|
1789
|
+
-webkit-box-flex: 1;
|
|
1790
|
+
-ms-flex: auto;
|
|
1791
|
+
flex: auto;
|
|
1712
1792
|
line-height: 20px;
|
|
1713
1793
|
overflow: hidden;
|
|
1714
1794
|
}
|
|
1715
1795
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-subject {
|
|
1716
|
-
-
|
|
1717
|
-
flex: auto;
|
|
1796
|
+
-webkit-box-flex: 1;
|
|
1797
|
+
-ms-flex: auto;
|
|
1798
|
+
flex: auto;
|
|
1718
1799
|
font-size: 13px;
|
|
1719
1800
|
font-weight: 500;
|
|
1720
1801
|
overflow: hidden;
|
|
@@ -1743,7 +1824,8 @@
|
|
|
1743
1824
|
}
|
|
1744
1825
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-appointment-border, .e-schedule .e-timeline-year-view .e-event-table .e-appointment:focus {
|
|
1745
1826
|
border: 0;
|
|
1746
|
-
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
1827
|
+
-webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
1828
|
+
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
1747
1829
|
}
|
|
1748
1830
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-allow-select {
|
|
1749
1831
|
pointer-events: none;
|
|
@@ -1890,7 +1972,8 @@
|
|
|
1890
1972
|
.e-schedule .e-timeline-view.e-virtual-mask .e-work-cells,
|
|
1891
1973
|
.e-schedule .e-timeline-month-view.e-virtual-mask .e-work-cells {
|
|
1892
1974
|
background: rgba(0, 0, 0, 0.08);
|
|
1893
|
-
box-shadow: inset 0 0 0 8px #fafafa;
|
|
1975
|
+
-webkit-box-shadow: inset 0 0 0 8px #fafafa;
|
|
1976
|
+
box-shadow: inset 0 0 0 8px #fafafa;
|
|
1894
1977
|
}
|
|
1895
1978
|
.e-schedule .e-timeline-view .e-resource-tree-icon,
|
|
1896
1979
|
.e-schedule .e-timeline-month-view .e-resource-tree-icon {
|
|
@@ -1903,7 +1986,8 @@
|
|
|
1903
1986
|
}
|
|
1904
1987
|
.e-schedule .e-timeline-view .e-resource-collapse,
|
|
1905
1988
|
.e-schedule .e-timeline-month-view .e-resource-collapse {
|
|
1906
|
-
transform: rotate(90deg);
|
|
1989
|
+
-webkit-transform: rotate(90deg);
|
|
1990
|
+
transform: rotate(90deg);
|
|
1907
1991
|
}
|
|
1908
1992
|
.e-schedule .e-timeline-view .e-child-node,
|
|
1909
1993
|
.e-schedule .e-timeline-month-view .e-child-node {
|
|
@@ -1923,26 +2007,30 @@
|
|
|
1923
2007
|
border: 1px solid #e8eaf6;
|
|
1924
2008
|
border-radius: 2px;
|
|
1925
2009
|
color: #fff;
|
|
1926
|
-
|
|
2010
|
+
display: -webkit-box;
|
|
1927
2011
|
display: -ms-flexbox;
|
|
1928
2012
|
display: flex;
|
|
1929
|
-
height: 38px;
|
|
1930
2013
|
overflow: hidden;
|
|
1931
2014
|
position: absolute;
|
|
2015
|
+
cursor: default;
|
|
2016
|
+
height: 38px;
|
|
1932
2017
|
}
|
|
1933
2018
|
.e-schedule .e-timeline-view .e-appointment .e-appointment-details,
|
|
1934
2019
|
.e-schedule .e-timeline-month-view .e-appointment .e-appointment-details {
|
|
2020
|
+
display: -webkit-box;
|
|
1935
2021
|
display: -ms-flexbox;
|
|
1936
2022
|
display: flex;
|
|
1937
|
-
-
|
|
1938
|
-
flex: auto;
|
|
2023
|
+
-webkit-box-flex: 1;
|
|
2024
|
+
-ms-flex: auto;
|
|
2025
|
+
flex: auto;
|
|
1939
2026
|
overflow: hidden;
|
|
1940
2027
|
padding: 0 4px;
|
|
1941
2028
|
}
|
|
1942
2029
|
.e-schedule .e-timeline-view .e-appointment .e-appointment-details .e-inner-wrap,
|
|
1943
2030
|
.e-schedule .e-timeline-month-view .e-appointment .e-appointment-details .e-inner-wrap {
|
|
1944
|
-
-
|
|
1945
|
-
flex: auto;
|
|
2031
|
+
-webkit-box-flex: 1;
|
|
2032
|
+
-ms-flex: auto;
|
|
2033
|
+
flex: auto;
|
|
1946
2034
|
overflow: hidden;
|
|
1947
2035
|
}
|
|
1948
2036
|
.e-schedule .e-timeline-view .e-appointment .e-subject,
|
|
@@ -2001,7 +2089,8 @@
|
|
|
2001
2089
|
.e-schedule .e-timeline-month-view .e-appointment.e-appointment-border,
|
|
2002
2090
|
.e-schedule .e-timeline-month-view .e-appointment:focus {
|
|
2003
2091
|
border: 0;
|
|
2004
|
-
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
2092
|
+
-webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
2093
|
+
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
2005
2094
|
}
|
|
2006
2095
|
.e-schedule .e-timeline-view .e-appointment.e-allow-select,
|
|
2007
2096
|
.e-schedule .e-timeline-month-view .e-appointment.e-allow-select {
|
|
@@ -2039,10 +2128,12 @@
|
|
|
2039
2128
|
width: 70px;
|
|
2040
2129
|
}
|
|
2041
2130
|
.e-schedule .e-virtual-scroll.e-vertical-view .e-content-table, .e-schedule .e-virtual-scroll.e-month-view .e-content-table {
|
|
2042
|
-
transform: translateX(0);
|
|
2131
|
+
-webkit-transform: translateX(0);
|
|
2132
|
+
transform: translateX(0);
|
|
2043
2133
|
}
|
|
2044
2134
|
.e-schedule .e-virtual-scroll.e-timeline-view .e-content-table, .e-schedule .e-virtual-scroll.e-timeline-month-view .e-content-table, .e-schedule .e-virtual-scroll.e-timeline-year-view.e-vertical .e-content-table {
|
|
2045
|
-
transform: translateY(0);
|
|
2135
|
+
-webkit-transform: translateY(0);
|
|
2136
|
+
transform: translateY(0);
|
|
2046
2137
|
}
|
|
2047
2138
|
.e-schedule .e-virtual-scroll .e-content-table {
|
|
2048
2139
|
position: absolute;
|
|
@@ -2052,6 +2143,7 @@
|
|
|
2052
2143
|
}
|
|
2053
2144
|
.e-schedule .e-virtual-scroll .e-content-wrap.e-transition,
|
|
2054
2145
|
.e-schedule .e-virtual-scroll .e-resource-column-wrap.e-transition {
|
|
2146
|
+
-webkit-transition: all 1000ms linear;
|
|
2055
2147
|
transition: all 1000ms linear;
|
|
2056
2148
|
}
|
|
2057
2149
|
.e-schedule.e-rtl .e-timeline-view .e-appointment .e-left-icon,
|
|
@@ -2132,14 +2224,15 @@
|
|
|
2132
2224
|
.e-schedule .e-month-agenda-view .e-week-number-wrapper .e-schedule-table,
|
|
2133
2225
|
.e-schedule .e-month-agenda-view .e-content-table {
|
|
2134
2226
|
border-bottom: 2px solid rgba(0, 0, 0, 0.12);
|
|
2135
|
-
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
|
|
2227
|
+
-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
|
|
2228
|
+
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
|
|
2136
2229
|
height: 100%;
|
|
2137
2230
|
}
|
|
2138
2231
|
.e-schedule .e-month-agenda-view .e-resource-column {
|
|
2139
2232
|
border-bottom: 1px solid rgba(0, 0, 0, 0.12);
|
|
2140
|
-
border-right: 1px solid rgba(0, 0, 0, 0.12);
|
|
2141
2233
|
vertical-align: top;
|
|
2142
2234
|
width: 75px;
|
|
2235
|
+
border-right: 1px solid rgba(0, 0, 0, 0.12);
|
|
2143
2236
|
}
|
|
2144
2237
|
.e-schedule .e-month-agenda-view .e-resource-name {
|
|
2145
2238
|
color: rgba(0, 0, 0, 0.87);
|
|
@@ -2208,12 +2301,16 @@
|
|
|
2208
2301
|
background: #e0e0e0;
|
|
2209
2302
|
}
|
|
2210
2303
|
.e-schedule .e-month-agenda-view .e-appointment.e-template {
|
|
2304
|
+
display: -webkit-inline-box;
|
|
2211
2305
|
display: -ms-inline-flexbox;
|
|
2212
2306
|
display: inline-flex;
|
|
2213
|
-
-
|
|
2214
|
-
|
|
2307
|
+
-webkit-box-orient: horizontal;
|
|
2308
|
+
-webkit-box-direction: reverse;
|
|
2309
|
+
-ms-flex-direction: row-reverse;
|
|
2310
|
+
flex-direction: row-reverse;
|
|
2215
2311
|
}
|
|
2216
2312
|
.e-schedule .e-month-agenda-view .e-subject-wrap {
|
|
2313
|
+
display: -webkit-box;
|
|
2217
2314
|
display: -ms-flexbox;
|
|
2218
2315
|
display: flex;
|
|
2219
2316
|
}
|
|
@@ -2267,10 +2364,7 @@
|
|
|
2267
2364
|
margin: 1px auto;
|
|
2268
2365
|
width: 6px;
|
|
2269
2366
|
}
|
|
2270
|
-
.e-schedule.e-rtl .e-month-agenda-view .e-left-indent
|
|
2271
|
-
border-left: 1px solid rgba(0, 0, 0, 0.12);
|
|
2272
|
-
border-right-width: 0;
|
|
2273
|
-
}
|
|
2367
|
+
.e-schedule.e-rtl .e-month-agenda-view .e-left-indent,
|
|
2274
2368
|
.e-schedule.e-rtl .e-month-agenda-view .e-week-number {
|
|
2275
2369
|
border-left: 1px solid rgba(0, 0, 0, 0.12);
|
|
2276
2370
|
border-right-width: 0;
|
|
@@ -2308,10 +2402,10 @@
|
|
|
2308
2402
|
}
|
|
2309
2403
|
.e-schedule .e-agenda-view .e-resource-column {
|
|
2310
2404
|
border-bottom: 1px solid rgba(0, 0, 0, 0.12);
|
|
2311
|
-
border-right: 1px solid rgba(0, 0, 0, 0.12);
|
|
2312
|
-
color: rgba(0, 0, 0, 0.87);
|
|
2313
2405
|
vertical-align: top;
|
|
2314
2406
|
width: 75px;
|
|
2407
|
+
color: rgba(0, 0, 0, 0.87);
|
|
2408
|
+
border-right: 1px solid rgba(0, 0, 0, 0.12);
|
|
2315
2409
|
}
|
|
2316
2410
|
.e-schedule .e-agenda-view .e-month-header {
|
|
2317
2411
|
background: #3f51b5;
|
|
@@ -2354,6 +2448,7 @@
|
|
|
2354
2448
|
font-size: 12px;
|
|
2355
2449
|
}
|
|
2356
2450
|
.e-schedule .e-agenda-view .e-subject-wrap {
|
|
2451
|
+
display: -webkit-box;
|
|
2357
2452
|
display: -ms-flexbox;
|
|
2358
2453
|
display: flex;
|
|
2359
2454
|
margin-bottom: 0;
|
|
@@ -2430,10 +2525,13 @@
|
|
|
2430
2525
|
background: #e0e0e0;
|
|
2431
2526
|
}
|
|
2432
2527
|
.e-schedule .e-agenda-view .e-appointment.e-template {
|
|
2528
|
+
display: -webkit-inline-box;
|
|
2433
2529
|
display: -ms-inline-flexbox;
|
|
2434
2530
|
display: inline-flex;
|
|
2435
|
-
-
|
|
2436
|
-
|
|
2531
|
+
-webkit-box-orient: horizontal;
|
|
2532
|
+
-webkit-box-direction: reverse;
|
|
2533
|
+
-ms-flex-direction: row-reverse;
|
|
2534
|
+
flex-direction: row-reverse;
|
|
2437
2535
|
}
|
|
2438
2536
|
.e-schedule .e-agenda-view .e-no-event {
|
|
2439
2537
|
color: rgba(0, 0, 0, 0.54);
|
|
@@ -2465,9 +2563,9 @@
|
|
|
2465
2563
|
border-right: 3px solid #3f51b5;
|
|
2466
2564
|
}
|
|
2467
2565
|
.e-schedule.e-rtl .e-agenda-view .e-resource-column {
|
|
2468
|
-
border-bottom: 1px solid rgba(0, 0, 0, 0.12);
|
|
2469
2566
|
border-left: 1px solid rgba(0, 0, 0, 0.12);
|
|
2470
2567
|
border-right: 0;
|
|
2568
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.12);
|
|
2471
2569
|
vertical-align: top;
|
|
2472
2570
|
width: 75px;
|
|
2473
2571
|
}
|
|
@@ -2692,6 +2790,7 @@
|
|
|
2692
2790
|
|
|
2693
2791
|
.e-dialog.e-quick-dialog {
|
|
2694
2792
|
-webkit-user-select: none;
|
|
2793
|
+
-moz-user-select: none;
|
|
2695
2794
|
-ms-user-select: none;
|
|
2696
2795
|
user-select: none;
|
|
2697
2796
|
width: 320px;
|
|
@@ -2706,7 +2805,8 @@
|
|
|
2706
2805
|
border-top: none;
|
|
2707
2806
|
}
|
|
2708
2807
|
.e-dialog.e-quick-dialog .e-quick-dialog-cancel {
|
|
2709
|
-
box-shadow: none;
|
|
2808
|
+
-webkit-box-shadow: none;
|
|
2809
|
+
box-shadow: none;
|
|
2710
2810
|
}
|
|
2711
2811
|
.e-dialog.e-quick-dialog.e-rtl {
|
|
2712
2812
|
text-align: right;
|
|
@@ -2754,19 +2854,22 @@
|
|
|
2754
2854
|
padding-right: 16px;
|
|
2755
2855
|
}
|
|
2756
2856
|
.e-schedule-dialog .e-time-zone-row {
|
|
2857
|
+
display: -webkit-box;
|
|
2757
2858
|
display: -ms-flexbox;
|
|
2758
2859
|
display: flex;
|
|
2759
2860
|
height: 0;
|
|
2760
2861
|
margin-bottom: 0;
|
|
2761
2862
|
overflow: hidden;
|
|
2762
2863
|
padding-bottom: 0;
|
|
2864
|
+
-webkit-transition: 0.3s ease-in-out;
|
|
2763
2865
|
transition: 0.3s ease-in-out;
|
|
2764
2866
|
width: 100%;
|
|
2765
2867
|
}
|
|
2766
2868
|
.e-schedule-dialog .e-time-zone-row .e-start-time-zone-container,
|
|
2767
2869
|
.e-schedule-dialog .e-time-zone-row .e-end-time-zone-container {
|
|
2768
2870
|
display: none;
|
|
2769
|
-
transform: translateY(-100%);
|
|
2871
|
+
-webkit-transform: translateY(-100%);
|
|
2872
|
+
transform: translateY(-100%);
|
|
2770
2873
|
}
|
|
2771
2874
|
.e-schedule-dialog .e-time-zone-row.e-enable {
|
|
2772
2875
|
height: 50px;
|
|
@@ -2775,12 +2878,14 @@
|
|
|
2775
2878
|
.e-schedule-dialog .e-time-zone-row.e-enable .e-start-time-zone-container,
|
|
2776
2879
|
.e-schedule-dialog .e-time-zone-row.e-enable .e-end-time-zone-container {
|
|
2777
2880
|
display: block;
|
|
2778
|
-
transform: translateY(0);
|
|
2881
|
+
-webkit-transform: translateY(0);
|
|
2882
|
+
transform: translateY(0);
|
|
2779
2883
|
}
|
|
2780
2884
|
.e-schedule-dialog .e-title-location-row,
|
|
2781
2885
|
.e-schedule-dialog .e-start-end-row,
|
|
2782
2886
|
.e-schedule-dialog .e-start-input-container,
|
|
2783
2887
|
.e-schedule-dialog .e-end-input-container {
|
|
2888
|
+
display: -webkit-box;
|
|
2784
2889
|
display: -ms-flexbox;
|
|
2785
2890
|
display: flex;
|
|
2786
2891
|
padding-bottom: 12px;
|
|
@@ -2791,6 +2896,7 @@
|
|
|
2791
2896
|
width: 100%;
|
|
2792
2897
|
}
|
|
2793
2898
|
.e-schedule-dialog .e-all-day-time-zone-row {
|
|
2899
|
+
display: -webkit-box;
|
|
2794
2900
|
display: -ms-flexbox;
|
|
2795
2901
|
display: flex;
|
|
2796
2902
|
padding-bottom: 14px;
|
|
@@ -2861,6 +2967,7 @@
|
|
|
2861
2967
|
}
|
|
2862
2968
|
}
|
|
2863
2969
|
.e-ddl.e-popup .e-resource-template {
|
|
2970
|
+
display: -webkit-box;
|
|
2864
2971
|
display: -ms-flexbox;
|
|
2865
2972
|
display: flex;
|
|
2866
2973
|
padding: 0 10px;
|
|
@@ -2893,7 +3000,8 @@
|
|
|
2893
3000
|
.e-bigger .e-schedule-dialog .e-event-cancel,
|
|
2894
3001
|
.e-bigger .e-schedule-dialog .e-event-delete {
|
|
2895
3002
|
border: none;
|
|
2896
|
-
box-shadow: none;
|
|
3003
|
+
-webkit-box-shadow: none;
|
|
3004
|
+
box-shadow: none;
|
|
2897
3005
|
}
|
|
2898
3006
|
.e-bigger .e-schedule-dialog .e-footer-content .e-btn.e-event-delete {
|
|
2899
3007
|
float: left;
|
|
@@ -2917,6 +3025,7 @@
|
|
|
2917
3025
|
display: none;
|
|
2918
3026
|
}
|
|
2919
3027
|
.e-bigger .e-schedule-dialog .e-time-zone-row.e-enable {
|
|
3028
|
+
display: -webkit-box;
|
|
2920
3029
|
display: -ms-flexbox;
|
|
2921
3030
|
display: flex;
|
|
2922
3031
|
height: 60px;
|
|
@@ -2926,6 +3035,7 @@
|
|
|
2926
3035
|
.e-bigger .e-schedule-dialog .e-start-input-container,
|
|
2927
3036
|
.e-bigger .e-schedule-dialog .e-end-input-container,
|
|
2928
3037
|
.e-bigger .e-schedule-dialog .e-time-zone-row {
|
|
3038
|
+
display: -webkit-box;
|
|
2929
3039
|
display: -ms-flexbox;
|
|
2930
3040
|
display: flex;
|
|
2931
3041
|
padding-bottom: 12px;
|
|
@@ -2936,6 +3046,7 @@
|
|
|
2936
3046
|
width: 100%;
|
|
2937
3047
|
}
|
|
2938
3048
|
.e-bigger .e-schedule-dialog .e-all-day-time-zone-row {
|
|
3049
|
+
display: -webkit-box;
|
|
2939
3050
|
display: -ms-flexbox;
|
|
2940
3051
|
display: flex;
|
|
2941
3052
|
padding-bottom: 20px;
|
|
@@ -3001,7 +3112,8 @@
|
|
|
3001
3112
|
}
|
|
3002
3113
|
.e-schedule-dialog.e-device .e-dlg-header-content {
|
|
3003
3114
|
background: #fafafa;
|
|
3004
|
-
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
|
|
3115
|
+
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
|
|
3116
|
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
|
|
3005
3117
|
margin-bottom: 3px;
|
|
3006
3118
|
}
|
|
3007
3119
|
.e-schedule-dialog.e-device .e-title-location-row,
|
|
@@ -3062,6 +3174,7 @@
|
|
|
3062
3174
|
margin-right: 20px;
|
|
3063
3175
|
}
|
|
3064
3176
|
.e-schedule-dialog.e-device .e-title-header {
|
|
3177
|
+
display: -webkit-box;
|
|
3065
3178
|
display: -ms-flexbox;
|
|
3066
3179
|
display: flex;
|
|
3067
3180
|
width: 100%;
|
|
@@ -3127,7 +3240,8 @@
|
|
|
3127
3240
|
}
|
|
3128
3241
|
.e-schedule-dialog.e-device .e-recurrence-container .e-recurrence-edit-button {
|
|
3129
3242
|
border: 0;
|
|
3130
|
-
box-shadow: none;
|
|
3243
|
+
-webkit-box-shadow: none;
|
|
3244
|
+
box-shadow: none;
|
|
3131
3245
|
margin: -3px 5px;
|
|
3132
3246
|
position: absolute;
|
|
3133
3247
|
}
|
|
@@ -3141,16 +3255,18 @@
|
|
|
3141
3255
|
.e-quick-popup-wrapper {
|
|
3142
3256
|
background: #fff;
|
|
3143
3257
|
border-radius: 2px;
|
|
3144
|
-
box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
|
|
3258
|
+
-webkit-box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
|
|
3259
|
+
box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
|
|
3145
3260
|
color: rgba(0, 0, 0, 0.87);
|
|
3146
3261
|
max-width: 365px;
|
|
3147
3262
|
min-width: 320px;
|
|
3148
3263
|
opacity: 1;
|
|
3149
3264
|
-webkit-user-select: none;
|
|
3265
|
+
-moz-user-select: none;
|
|
3150
3266
|
-ms-user-select: none;
|
|
3151
3267
|
user-select: none;
|
|
3152
3268
|
width: 100%;
|
|
3153
|
-
border: 1px solid #
|
|
3269
|
+
border: 1px solid #eee;
|
|
3154
3270
|
}
|
|
3155
3271
|
.e-quick-popup-wrapper .e-hidden {
|
|
3156
3272
|
display: none;
|
|
@@ -3254,10 +3370,12 @@
|
|
|
3254
3370
|
}
|
|
3255
3371
|
.e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper,
|
|
3256
3372
|
.e-quick-popup-wrapper .e-event-popup .e-header-icon-wrapper {
|
|
3373
|
+
display: -webkit-box;
|
|
3257
3374
|
display: -ms-flexbox;
|
|
3258
3375
|
display: flex;
|
|
3259
|
-
-
|
|
3260
|
-
|
|
3376
|
+
-webkit-box-pack: end;
|
|
3377
|
+
-ms-flex-pack: end;
|
|
3378
|
+
justify-content: flex-end;
|
|
3261
3379
|
}
|
|
3262
3380
|
.e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper .e-edit,
|
|
3263
3381
|
.e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper .e-delete,
|
|
@@ -3279,6 +3397,7 @@
|
|
|
3279
3397
|
.e-quick-popup-wrapper .e-event-popup .e-description,
|
|
3280
3398
|
.e-quick-popup-wrapper .e-event-popup .e-resource {
|
|
3281
3399
|
color: rgba(0, 0, 0, 0.87);
|
|
3400
|
+
display: -webkit-box;
|
|
3282
3401
|
display: -ms-flexbox;
|
|
3283
3402
|
display: flex;
|
|
3284
3403
|
padding-top: 16px;
|
|
@@ -3401,8 +3520,9 @@
|
|
|
3401
3520
|
.e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-close {
|
|
3402
3521
|
margin-left: 0;
|
|
3403
3522
|
margin-right: auto;
|
|
3404
|
-
-
|
|
3405
|
-
order: -1;
|
|
3523
|
+
-webkit-box-ordinal-group: 0;
|
|
3524
|
+
-ms-flex-order: -1;
|
|
3525
|
+
order: -1;
|
|
3406
3526
|
}
|
|
3407
3527
|
.e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-subject-wrap {
|
|
3408
3528
|
padding: 24px;
|
|
@@ -3411,6 +3531,7 @@
|
|
|
3411
3531
|
padding: 12px 24px;
|
|
3412
3532
|
}
|
|
3413
3533
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header {
|
|
3534
|
+
display: -webkit-box;
|
|
3414
3535
|
display: -ms-flexbox;
|
|
3415
3536
|
display: flex;
|
|
3416
3537
|
padding: 15px;
|
|
@@ -3544,8 +3665,10 @@
|
|
|
3544
3665
|
.e-appointment.e-schedule-event-clone {
|
|
3545
3666
|
background: #3f51b5;
|
|
3546
3667
|
border-radius: 2px;
|
|
3547
|
-
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
3668
|
+
-webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
3669
|
+
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
3548
3670
|
color: #fff;
|
|
3671
|
+
display: -webkit-box;
|
|
3549
3672
|
display: -ms-flexbox;
|
|
3550
3673
|
display: flex;
|
|
3551
3674
|
height: 38px;
|
|
@@ -3564,15 +3687,17 @@
|
|
|
3564
3687
|
display: none;
|
|
3565
3688
|
}
|
|
3566
3689
|
.e-appointment.e-schedule-event-clone .e-appointment-details {
|
|
3567
|
-
-
|
|
3568
|
-
flex: auto;
|
|
3690
|
+
-webkit-box-flex: 1;
|
|
3691
|
+
-ms-flex: auto;
|
|
3692
|
+
flex: auto;
|
|
3569
3693
|
overflow: hidden;
|
|
3570
3694
|
padding: 0 4px;
|
|
3571
3695
|
text-align: left;
|
|
3572
3696
|
}
|
|
3573
3697
|
.e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
3574
|
-
-
|
|
3575
|
-
flex: auto;
|
|
3698
|
+
-webkit-box-flex: 1;
|
|
3699
|
+
-ms-flex: auto;
|
|
3700
|
+
flex: auto;
|
|
3576
3701
|
overflow: hidden;
|
|
3577
3702
|
}
|
|
3578
3703
|
.e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
@@ -3615,9 +3740,10 @@
|
|
|
3615
3740
|
.e-bigger .e-more-popup-wrapper,
|
|
3616
3741
|
.e-more-popup-wrapper {
|
|
3617
3742
|
background: #fff;
|
|
3618
|
-
border: 1px solid #
|
|
3743
|
+
border: 1px solid #eee;
|
|
3619
3744
|
border-radius: 2px;
|
|
3620
|
-
box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.4);
|
|
3745
|
+
-webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.4);
|
|
3746
|
+
box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.4);
|
|
3621
3747
|
opacity: 1;
|
|
3622
3748
|
padding: 8px 0;
|
|
3623
3749
|
width: 225px;
|
|
@@ -3648,7 +3774,8 @@
|
|
|
3648
3774
|
.e-bigger .e-more-popup-wrapper .e-more-event-content .e-appointment-border,
|
|
3649
3775
|
.e-more-popup-wrapper .e-more-event-content .e-appointment-border {
|
|
3650
3776
|
border: 0;
|
|
3651
|
-
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
3777
|
+
-webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
3778
|
+
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
3652
3779
|
}
|
|
3653
3780
|
.e-bigger .e-more-popup-wrapper .e-more-event-date-header,
|
|
3654
3781
|
.e-more-popup-wrapper .e-more-event-date-header {
|
|
@@ -3686,7 +3813,8 @@
|
|
|
3686
3813
|
.e-more-popup-wrapper .e-more-event-close {
|
|
3687
3814
|
background: transparent;
|
|
3688
3815
|
border: 0;
|
|
3689
|
-
box-shadow: none;
|
|
3816
|
+
-webkit-box-shadow: none;
|
|
3817
|
+
box-shadow: none;
|
|
3690
3818
|
color: #000;
|
|
3691
3819
|
cursor: pointer;
|
|
3692
3820
|
height: 25px;
|
|
@@ -3715,6 +3843,7 @@
|
|
|
3715
3843
|
background: #3f51b5;
|
|
3716
3844
|
border-radius: 2px;
|
|
3717
3845
|
color: #fff;
|
|
3846
|
+
display: -webkit-box;
|
|
3718
3847
|
display: -ms-flexbox;
|
|
3719
3848
|
display: flex;
|
|
3720
3849
|
height: 22px;
|
|
@@ -3726,8 +3855,9 @@
|
|
|
3726
3855
|
.e-bigger .e-more-popup-wrapper .e-appointment .e-subject,
|
|
3727
3856
|
.e-more-popup-wrapper .e-appointment .e-subject {
|
|
3728
3857
|
color: #fff;
|
|
3729
|
-
-
|
|
3730
|
-
flex: auto;
|
|
3858
|
+
-webkit-box-flex: 1;
|
|
3859
|
+
-ms-flex: auto;
|
|
3860
|
+
flex: auto;
|
|
3731
3861
|
font-size: 13px;
|
|
3732
3862
|
font-weight: 500;
|
|
3733
3863
|
overflow: hidden;
|
|
@@ -3761,7 +3891,8 @@
|
|
|
3761
3891
|
.e-more-popup-wrapper .e-appointment.e-appointment-border,
|
|
3762
3892
|
.e-more-popup-wrapper .e-appointment:focus {
|
|
3763
3893
|
border: 0;
|
|
3764
|
-
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
3894
|
+
-webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
3895
|
+
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
3765
3896
|
}
|
|
3766
3897
|
.e-bigger .e-more-popup-wrapper.e-device,
|
|
3767
3898
|
.e-more-popup-wrapper.e-device {
|
|
@@ -3794,7 +3925,6 @@
|
|
|
3794
3925
|
right: auto;
|
|
3795
3926
|
}
|
|
3796
3927
|
|
|
3797
|
-
/*! schedule component theme */
|
|
3798
3928
|
.e-schedule {
|
|
3799
3929
|
background: #fff;
|
|
3800
3930
|
border: 1px solid rgba(0, 0, 0, 0.12);
|
|
@@ -3807,7 +3937,8 @@
|
|
|
3807
3937
|
}
|
|
3808
3938
|
.e-schedule .e-header-calendar {
|
|
3809
3939
|
background-color: none;
|
|
3810
|
-
box-shadow: none;
|
|
3940
|
+
-webkit-box-shadow: none;
|
|
3941
|
+
box-shadow: none;
|
|
3811
3942
|
}
|
|
3812
3943
|
.e-schedule .e-vertical-view .e-date-header-wrap table tbody td:first-child,
|
|
3813
3944
|
.e-schedule .e-vertical-view .e-content-wrap table td:first-child {
|
|
@@ -3971,6 +4102,8 @@
|
|
|
3971
4102
|
color: #fff;
|
|
3972
4103
|
min-width: 20px;
|
|
3973
4104
|
padding: 0 4px;
|
|
4105
|
+
width: -webkit-fit-content;
|
|
4106
|
+
width: -moz-fit-content;
|
|
3974
4107
|
width: fit-content;
|
|
3975
4108
|
}
|
|
3976
4109
|
.e-schedule .e-month-view .e-selected-cell,
|
|
@@ -4141,7 +4274,8 @@
|
|
|
4141
4274
|
}
|
|
4142
4275
|
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
|
|
4143
4276
|
background: rgba(0, 0, 0, 0.08);
|
|
4144
|
-
box-shadow: inset 0 0 0 8px #fafafa;
|
|
4277
|
+
-webkit-box-shadow: inset 0 0 0 8px #fafafa;
|
|
4278
|
+
box-shadow: inset 0 0 0 8px #fafafa;
|
|
4145
4279
|
}
|
|
4146
4280
|
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
|
|
4147
4281
|
background: rgba(0, 0, 0, 0.08);
|
|
@@ -4206,8 +4340,8 @@
|
|
|
4206
4340
|
}
|
|
4207
4341
|
|
|
4208
4342
|
.e-tooltip-wrap.e-schedule-error {
|
|
4209
|
-
background: #
|
|
4210
|
-
border-color: #
|
|
4343
|
+
background: #fde;
|
|
4344
|
+
border-color: #fde;
|
|
4211
4345
|
z-index: 1000;
|
|
4212
4346
|
}
|
|
4213
4347
|
.e-tooltip-wrap.e-schedule-error .e-arrow-tip.e-tip-top {
|
|
@@ -4215,29 +4349,30 @@
|
|
|
4215
4349
|
}
|
|
4216
4350
|
.e-tooltip-wrap.e-schedule-error .e-arrow-tip-inner.e-tip-top,
|
|
4217
4351
|
.e-tooltip-wrap.e-schedule-error .e-arrow-tip-outer.e-tip-top {
|
|
4218
|
-
border-bottom: 8px solid #
|
|
4219
|
-
color: #
|
|
4352
|
+
border-bottom: 8px solid #fde;
|
|
4353
|
+
color: #fde;
|
|
4220
4354
|
}
|
|
4221
4355
|
.e-tooltip-wrap.e-schedule-error .e-arrow-tip-outer.e-tip-bottom,
|
|
4222
4356
|
.e-tooltip-wrap.e-schedule-error .e-arrow-tip-inner.e-tip-bottom {
|
|
4223
|
-
border-top: 8px solid #
|
|
4224
|
-
color: #
|
|
4357
|
+
border-top: 8px solid #fde;
|
|
4358
|
+
color: #fde;
|
|
4225
4359
|
}
|
|
4226
4360
|
.e-tooltip-wrap.e-schedule-error .e-tip-content {
|
|
4227
4361
|
padding: 3px 6px;
|
|
4228
4362
|
}
|
|
4229
4363
|
.e-tooltip-wrap.e-schedule-error .e-tip-content,
|
|
4230
4364
|
.e-tooltip-wrap.e-schedule-error .e-tip-content label {
|
|
4231
|
-
color: #
|
|
4365
|
+
color: #f43;
|
|
4232
4366
|
}
|
|
4233
4367
|
|
|
4234
|
-
/*! recurrence editor theme wise definitions*/
|
|
4235
|
-
/*! Recurrence-Editor component layout */
|
|
4236
4368
|
.e-recurrenceeditor .e-editor {
|
|
4369
|
+
display: -webkit-box;
|
|
4237
4370
|
display: -ms-flexbox;
|
|
4238
4371
|
display: flex;
|
|
4239
|
-
-
|
|
4240
|
-
|
|
4372
|
+
-webkit-box-orient: horizontal;
|
|
4373
|
+
-webkit-box-direction: normal;
|
|
4374
|
+
-ms-flex-flow: row wrap;
|
|
4375
|
+
flex-flow: row wrap;
|
|
4241
4376
|
margin: 0 auto;
|
|
4242
4377
|
max-width: 1240px;
|
|
4243
4378
|
}
|
|
@@ -4337,8 +4472,10 @@
|
|
|
4337
4472
|
}
|
|
4338
4473
|
.e-recurrenceeditor .e-days button {
|
|
4339
4474
|
border-radius: 50%;
|
|
4340
|
-
-
|
|
4341
|
-
|
|
4475
|
+
-webkit-box-orient: horizontal;
|
|
4476
|
+
-webkit-box-direction: normal;
|
|
4477
|
+
-ms-flex-flow: row wrap;
|
|
4478
|
+
flex-flow: row wrap;
|
|
4342
4479
|
height: 35px;
|
|
4343
4480
|
margin: 0 8px 10px;
|
|
4344
4481
|
width: 35px;
|
|
@@ -4397,13 +4534,6 @@
|
|
|
4397
4534
|
.e-bigger .e-recurrenceeditor .e-form-left {
|
|
4398
4535
|
padding: 0 12px 14px 0;
|
|
4399
4536
|
}
|
|
4400
|
-
.e-bigger .e-recurrenceeditor .e-form-right,
|
|
4401
|
-
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
4402
|
-
padding: 0 0 10px;
|
|
4403
|
-
}
|
|
4404
|
-
.e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
|
|
4405
|
-
padding-bottom: 6px;
|
|
4406
|
-
}
|
|
4407
4537
|
.e-bigger .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
4408
4538
|
padding-left: 70px;
|
|
4409
4539
|
}
|
|
@@ -4430,16 +4560,12 @@
|
|
|
4430
4560
|
font-size: 12px;
|
|
4431
4561
|
margin-bottom: 8px;
|
|
4432
4562
|
}
|
|
4433
|
-
.e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-non-week .e-form-left {
|
|
4434
|
-
padding-bottom: 12px;
|
|
4435
|
-
}
|
|
4436
4563
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
4437
4564
|
font-size: 12px;
|
|
4438
4565
|
margin-bottom: 1px;
|
|
4439
4566
|
}
|
|
4440
4567
|
.e-bigger .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper,
|
|
4441
|
-
.e-bigger .e-recurrenceeditor .e-year-expander
|
|
4442
|
-
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
4568
|
+
.e-bigger .e-recurrenceeditor .e-year-expander {
|
|
4443
4569
|
margin-bottom: 11px;
|
|
4444
4570
|
}
|
|
4445
4571
|
.e-bigger .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
@@ -4551,7 +4677,8 @@
|
|
|
4551
4677
|
}
|
|
4552
4678
|
.e-device.e-recurrence-dialog .e-dlg-header-content {
|
|
4553
4679
|
background: none;
|
|
4554
|
-
box-shadow: none;
|
|
4680
|
+
-webkit-box-shadow: none;
|
|
4681
|
+
box-shadow: none;
|
|
4555
4682
|
padding-bottom: 10px;
|
|
4556
4683
|
}
|
|
4557
4684
|
.e-device.e-recurrence-dialog .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
@@ -4576,8 +4703,10 @@
|
|
|
4576
4703
|
width: 100%;
|
|
4577
4704
|
}
|
|
4578
4705
|
.e-recurrenceeditor .e-editor {
|
|
4579
|
-
-
|
|
4580
|
-
|
|
4706
|
+
-webkit-box-orient: vertical;
|
|
4707
|
+
-webkit-box-direction: normal;
|
|
4708
|
+
-ms-flex-direction: column;
|
|
4709
|
+
flex-direction: column;
|
|
4581
4710
|
}
|
|
4582
4711
|
.e-recurrenceeditor .e-editor > .e-input-wrapper.e-form-left {
|
|
4583
4712
|
margin-top: 0;
|