@syncfusion/ej2-schedule 20.3.61 → 20.4.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 +16 -1
- package/CHANGELOG.md +8 -0
- package/README.md +62 -46
- 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 +786 -524
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +821 -535
- 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 +22 -30
- package/src/common/calendar-util.js +1 -1
- package/src/recurrence-editor/date-generator.js +26 -26
- package/src/recurrence-editor/recurrence-editor.js +5 -5
- package/src/schedule/actions/action-base.js +3 -3
- package/src/schedule/actions/crud.js +16 -16
- package/src/schedule/actions/drag.js +36 -32
- package/src/schedule/actions/keyboard.js +10 -8
- package/src/schedule/actions/resize.js +6 -6
- package/src/schedule/actions/touch.js +4 -3
- package/src/schedule/actions/virtual-scroll.js +10 -7
- package/src/schedule/base/interface.d.ts +8 -1
- package/src/schedule/base/resource.d.ts +1 -0
- package/src/schedule/base/resource.js +179 -93
- package/src/schedule/base/schedule-model.d.ts +7 -0
- package/src/schedule/base/schedule.d.ts +23 -0
- package/src/schedule/base/schedule.js +73 -22
- package/src/schedule/base/util.js +4 -6
- package/src/schedule/event-renderer/agenda-base.js +36 -31
- package/src/schedule/event-renderer/event-base.js +25 -25
- package/src/schedule/event-renderer/inline-edit.js +8 -5
- package/src/schedule/event-renderer/month.js +17 -14
- package/src/schedule/event-renderer/timeline-view.js +11 -11
- package/src/schedule/event-renderer/vertical-view.d.ts +1 -0
- package/src/schedule/event-renderer/vertical-view.js +97 -70
- package/src/schedule/event-renderer/year.js +25 -17
- package/src/schedule/exports/calendar-export.js +4 -4
- package/src/schedule/exports/calendar-import.js +14 -15
- package/src/schedule/exports/excel-export.js +1 -1
- package/src/schedule/models/group-model.d.ts +8 -0
- package/src/schedule/models/group.d.ts +7 -0
- package/src/schedule/models/group.js +3 -0
- package/src/schedule/models/views-model.d.ts +8 -1
- package/src/schedule/models/views.d.ts +7 -1
- package/src/schedule/models/views.js +3 -0
- package/src/schedule/popups/event-tooltip.js +3 -2
- package/src/schedule/popups/event-window.js +36 -30
- package/src/schedule/popups/quick-popups.js +6 -6
- package/src/schedule/renderer/agenda.js +5 -5
- package/src/schedule/renderer/header-renderer.d.ts +1 -1
- package/src/schedule/renderer/header-renderer.js +21 -5
- package/src/schedule/renderer/month-agenda.js +11 -4
- package/src/schedule/renderer/month.js +44 -16
- package/src/schedule/renderer/renderer.js +3 -3
- package/src/schedule/renderer/timeline-header-row.js +7 -7
- package/src/schedule/renderer/timeline-month.js +5 -5
- package/src/schedule/renderer/timeline-view.js +2 -2
- package/src/schedule/renderer/timeline-year.js +20 -14
- package/src/schedule/renderer/vertical-view.js +24 -9
- package/src/schedule/renderer/view-base.d.ts +3 -0
- package/src/schedule/renderer/view-base.js +11 -3
- package/src/schedule/renderer/year.js +11 -5
- package/styles/bootstrap-dark.css +364 -101
- package/styles/bootstrap.css +363 -99
- package/styles/bootstrap4.css +375 -141
- package/styles/bootstrap5-dark.css +339 -137
- package/styles/bootstrap5.css +339 -137
- package/styles/fabric-dark.css +330 -101
- package/styles/fabric.css +316 -106
- package/styles/fluent-dark.css +395 -102
- package/styles/fluent.css +395 -102
- package/styles/highcontrast-light.css +407 -98
- package/styles/highcontrast.css +399 -113
- package/styles/material-dark.css +362 -110
- package/styles/material.css +404 -110
- package/styles/recurrence-editor/_layout.scss +42 -28
- package/styles/recurrence-editor/bootstrap-dark.css +137 -28
- package/styles/recurrence-editor/bootstrap-dark.scss +5 -0
- package/styles/recurrence-editor/bootstrap.css +137 -28
- package/styles/recurrence-editor/bootstrap.scss +5 -0
- package/styles/recurrence-editor/bootstrap4.css +171 -28
- package/styles/recurrence-editor/bootstrap4.scss +5 -0
- package/styles/recurrence-editor/bootstrap5-dark.css +178 -28
- package/styles/recurrence-editor/bootstrap5-dark.scss +5 -0
- package/styles/recurrence-editor/bootstrap5.css +178 -28
- package/styles/recurrence-editor/bootstrap5.scss +5 -0
- package/styles/recurrence-editor/fabric-dark.css +113 -28
- package/styles/recurrence-editor/fabric-dark.scss +5 -0
- package/styles/recurrence-editor/fabric.css +106 -28
- package/styles/recurrence-editor/fabric.scss +5 -0
- package/styles/recurrence-editor/fluent-dark.css +158 -28
- package/styles/recurrence-editor/fluent-dark.scss +5 -0
- package/styles/recurrence-editor/fluent.css +158 -28
- package/styles/recurrence-editor/fluent.scss +5 -0
- package/styles/recurrence-editor/highcontrast-light.css +110 -28
- package/styles/recurrence-editor/highcontrast-light.scss +5 -0
- package/styles/recurrence-editor/highcontrast.css +110 -28
- package/styles/recurrence-editor/highcontrast.scss +5 -0
- package/styles/recurrence-editor/material-dark.css +138 -28
- package/styles/recurrence-editor/material-dark.scss +5 -0
- package/styles/recurrence-editor/material.css +163 -28
- package/styles/recurrence-editor/material.scss +5 -0
- package/styles/recurrence-editor/tailwind-dark.css +126 -28
- package/styles/recurrence-editor/tailwind-dark.scss +5 -0
- package/styles/recurrence-editor/tailwind.css +126 -28
- package/styles/recurrence-editor/tailwind.scss +5 -0
- package/styles/schedule/_bootstrap-dark-definition.scss +63 -4
- package/styles/schedule/_bootstrap-definition.scss +62 -3
- package/styles/schedule/_bootstrap4-definition.scss +65 -5
- package/styles/schedule/_bootstrap5-definition.scss +63 -5
- package/styles/schedule/_fabric-dark-definition.scss +61 -3
- package/styles/schedule/_fabric-definition.scss +62 -3
- package/styles/schedule/_fluent-definition.scss +63 -6
- package/styles/schedule/_fusionnew-definition.scss +60 -3
- package/styles/schedule/_highcontrast-definition.scss +62 -3
- package/styles/schedule/_highcontrast-light-definition.scss +62 -3
- package/styles/schedule/_layout.scss +117 -506
- package/styles/schedule/_material-dark-definition.scss +63 -4
- package/styles/schedule/_material-definition.scss +63 -4
- package/styles/schedule/_material3-definition.scss +62 -3
- package/styles/schedule/_tailwind-definition.scss +63 -6
- package/styles/schedule/_theme.scss +97 -62
- package/styles/schedule/bootstrap-dark.css +332 -73
- package/styles/schedule/bootstrap-dark.scss +11 -0
- package/styles/schedule/bootstrap.css +331 -71
- package/styles/schedule/bootstrap.scss +11 -0
- package/styles/schedule/bootstrap4.css +343 -113
- package/styles/schedule/bootstrap4.scss +11 -0
- package/styles/schedule/bootstrap5-dark.css +307 -109
- package/styles/schedule/bootstrap5-dark.scss +11 -0
- package/styles/schedule/bootstrap5.css +307 -109
- package/styles/schedule/bootstrap5.scss +11 -0
- package/styles/schedule/fabric-dark.css +298 -73
- package/styles/schedule/fabric-dark.scss +11 -0
- package/styles/schedule/fabric.css +284 -78
- package/styles/schedule/fabric.scss +11 -0
- package/styles/schedule/fluent-dark.css +363 -74
- package/styles/schedule/fluent-dark.scss +11 -0
- package/styles/schedule/fluent.css +363 -74
- package/styles/schedule/fluent.scss +11 -0
- package/styles/schedule/highcontrast-light.css +375 -70
- package/styles/schedule/highcontrast-light.scss +11 -0
- package/styles/schedule/highcontrast.css +367 -85
- package/styles/schedule/highcontrast.scss +11 -0
- package/styles/schedule/material-dark.css +330 -82
- package/styles/schedule/material-dark.scss +11 -0
- package/styles/schedule/material.css +372 -82
- package/styles/schedule/material.scss +11 -0
- package/styles/schedule/tailwind-dark.css +246 -111
- package/styles/schedule/tailwind-dark.scss +11 -0
- package/styles/schedule/tailwind.css +246 -111
- package/styles/schedule/tailwind.scss +11 -0
- package/styles/tailwind-dark.css +279 -140
- package/styles/tailwind.css +279 -140
package/styles/fabric-dark.css
CHANGED
|
@@ -1,3 +1,105 @@
|
|
|
1
|
+
/* stylelint-disable */
|
|
2
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
3
|
+
.e-ddl.e-popup {
|
|
4
|
+
border: 0;
|
|
5
|
+
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.26);
|
|
6
|
+
margin-top: 1px;
|
|
7
|
+
}
|
|
8
|
+
.e-ddl.e-popup .e-input-group input {
|
|
9
|
+
line-height: 15px;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.e-ddl.e-popup .e-input-group {
|
|
13
|
+
display: -ms-flexbox;
|
|
14
|
+
display: flex;
|
|
15
|
+
width: auto;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.e-ddl.e-popup .e-filter-parent {
|
|
19
|
+
border-left-width: 0;
|
|
20
|
+
border-right-width: 0;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.e-bigger .e-popup.e-ddl-device-filter {
|
|
24
|
+
margin-top: 0;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.e-popup.e-ddl .e-dropdownbase {
|
|
28
|
+
min-height: 26px;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.e-bigger .e-ddl.e-popup .e-list-item, .e-bigger .e-ddl.e-popup .e-list-group-item, .e-bigger .e-ddl.e-popup .e-fixed-head {
|
|
32
|
+
font-size: 15px;
|
|
33
|
+
line-height: 45px;
|
|
34
|
+
padding-left: 0;
|
|
35
|
+
text-indent: 16px;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.e-bigger .e-ddl.e-popup .e-dd-group .e-list-item {
|
|
39
|
+
padding-left: 4px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.e-bigger .e-ddl.e-popup .e-input-group {
|
|
43
|
+
padding: 4px 0;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.e-bigger .e-ddl.e-popup .e-input-group input, .e-bigger .e-ddl.e-popup .e-input-group input.e-input {
|
|
47
|
+
height: 38px;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
51
|
+
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
52
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active,
|
|
53
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:hover {
|
|
54
|
+
background: transparent;
|
|
55
|
+
color: #fff;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.e-bigger.e-small .e-ddl.e-popup .e-list-item, .e-bigger.e-small .e-ddl.e-popup .e-list-group-item, .e-bigger.e-small .e-ddl.e-popup .e-fixed-head,
|
|
59
|
+
.e-ddl.e-popup .e-bigger.e-small .e-list-item,
|
|
60
|
+
.e-ddl.e-popup .e-bigger.e-small .e-list-group-item,
|
|
61
|
+
.e-ddl.e-popup .e-bigger.e-small .e-fixed-head {
|
|
62
|
+
font-size: 14px;
|
|
63
|
+
line-height: 40px;
|
|
64
|
+
padding-left: 0;
|
|
65
|
+
text-indent: 16px;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.e-bigger.e-small .e-ddl.e-popup .e-dd-group .e-list-item,
|
|
69
|
+
.e-ddl.e-popup .e-bigger.e-small .e-dd-group .e-list-item {
|
|
70
|
+
padding-left: 4px;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.e-bigger.e-small .e-ddl.e-popup .e-input-group,
|
|
74
|
+
.e-ddl.e-popup .e-bigger.e-small .e-input-group {
|
|
75
|
+
padding: 0;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.e-bigger.e-small .e-ddl.e-popup .e-input-group input, .e-bigger.e-small .e-ddl.e-popup .e-input-group input.e-input,
|
|
79
|
+
.e-ddl.e-popup .e-bigger.e-small .e-input-group input,
|
|
80
|
+
.e-ddl.e-popup .e-bigger.e-small .e-input-group input.e-input {
|
|
81
|
+
height: 34px;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.e-multi-select-wrapper.e-down-icon .e-input-group-icon.e-ddl-icon {
|
|
85
|
+
height: 30px;
|
|
86
|
+
width: 30px;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.e-small .e-multi-select-wrapper .e-chips,
|
|
90
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-chips {
|
|
91
|
+
padding: 0;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.e-small .e-multi-select-wrapper .e-chips > .e-chipcontent,
|
|
95
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
96
|
+
padding: 0 8px;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.e-small .e-multi-select-wrapper .e-chips {
|
|
100
|
+
margin: 2px 2px 2px 0;
|
|
101
|
+
}
|
|
102
|
+
|
|
1
103
|
/*! recurrence editor theme wise definitions*/ /*! Schedule component's fabric theme definitions and variables */
|
|
2
104
|
.e-schedule .e-schedule-toolbar .e-icon-prev::before {
|
|
3
105
|
content: "\e98f";
|
|
@@ -193,7 +295,7 @@
|
|
|
193
295
|
}
|
|
194
296
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-icon-right.e-btn-icon.e-icon-down-arrow {
|
|
195
297
|
font-size: 12px;
|
|
196
|
-
|
|
298
|
+
margin-top: 3px;
|
|
197
299
|
}
|
|
198
300
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:focus, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:hover {
|
|
199
301
|
border-radius: 0%;
|
|
@@ -214,9 +316,6 @@
|
|
|
214
316
|
font-size: 16px;
|
|
215
317
|
text-transform: initial;
|
|
216
318
|
}
|
|
217
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
218
|
-
padding: 0 12px;
|
|
219
|
-
}
|
|
220
319
|
.e-schedule .e-schedule-toolbar.e-rtl .e-hor-nav {
|
|
221
320
|
background: #201f1f;
|
|
222
321
|
border-left: 0;
|
|
@@ -260,6 +359,9 @@
|
|
|
260
359
|
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos > div {
|
|
261
360
|
height: inherit;
|
|
262
361
|
}
|
|
362
|
+
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
363
|
+
padding: 0;
|
|
364
|
+
}
|
|
263
365
|
.e-schedule.e-device .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
|
|
264
366
|
font-size: 15px;
|
|
265
367
|
}
|
|
@@ -338,6 +440,7 @@
|
|
|
338
440
|
height: 100%;
|
|
339
441
|
position: absolute;
|
|
340
442
|
width: 250px;
|
|
443
|
+
color: #dadada;
|
|
341
444
|
}
|
|
342
445
|
.e-schedule .e-resource-tree-popup .e-resource-tree {
|
|
343
446
|
height: 100%;
|
|
@@ -440,7 +543,6 @@
|
|
|
440
543
|
}
|
|
441
544
|
.e-schedule .e-block-appointment {
|
|
442
545
|
background: rgba(255, 255, 255, 0.08);
|
|
443
|
-
border-radius: 2px;
|
|
444
546
|
color: #969696;
|
|
445
547
|
cursor: default;
|
|
446
548
|
overflow: hidden;
|
|
@@ -698,11 +800,15 @@
|
|
|
698
800
|
.e-schedule .e-vertical-view .e-header-cells .e-header-day {
|
|
699
801
|
display: table;
|
|
700
802
|
font-size: 13px;
|
|
803
|
+
line-height: unset;
|
|
804
|
+
padding-bottom: 0;
|
|
701
805
|
}
|
|
702
806
|
.e-schedule .e-vertical-view .e-header-cells .e-header-date {
|
|
703
807
|
cursor: pointer;
|
|
704
808
|
display: table;
|
|
705
809
|
font-size: 18px;
|
|
810
|
+
line-height: unset;
|
|
811
|
+
padding-top: 0;
|
|
706
812
|
}
|
|
707
813
|
.e-schedule .e-vertical-view .e-header-cells .e-header-date:hover {
|
|
708
814
|
text-decoration: underline;
|
|
@@ -770,6 +876,7 @@
|
|
|
770
876
|
.e-schedule .e-vertical-view .e-all-day-appointment-section:hover, .e-schedule .e-vertical-view .e-all-day-appointment-section:focus {
|
|
771
877
|
background: #414040;
|
|
772
878
|
border-radius: 100%;
|
|
879
|
+
color: #dadada;
|
|
773
880
|
}
|
|
774
881
|
.e-schedule .e-vertical-view .e-appointment-hide {
|
|
775
882
|
opacity: 0;
|
|
@@ -922,6 +1029,7 @@
|
|
|
922
1029
|
flex: auto;
|
|
923
1030
|
padding: 0 4px;
|
|
924
1031
|
text-align: left;
|
|
1032
|
+
line-height: unset;
|
|
925
1033
|
}
|
|
926
1034
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
927
1035
|
font-size: 13px;
|
|
@@ -1222,6 +1330,9 @@
|
|
|
1222
1330
|
.e-schedule .e-month-view .e-more-indicator:focus {
|
|
1223
1331
|
text-decoration: underline;
|
|
1224
1332
|
}
|
|
1333
|
+
.e-schedule.e-rtl .e-month-view .e-date-header {
|
|
1334
|
+
margin: 3px 3px 2px;
|
|
1335
|
+
}
|
|
1225
1336
|
.e-schedule.e-rtl .e-month-view .e-left-indent {
|
|
1226
1337
|
border-left: 1px solid #414040;
|
|
1227
1338
|
border-right-width: 0;
|
|
@@ -1394,54 +1505,6 @@
|
|
|
1394
1505
|
.e-schedule .e-timeline-year-view .e-resource-collapse {
|
|
1395
1506
|
transform: rotate(90deg);
|
|
1396
1507
|
}
|
|
1397
|
-
.e-schedule .e-timeline-year-view .e-work-cells {
|
|
1398
|
-
background-color: #282727;
|
|
1399
|
-
border-color: #414040;
|
|
1400
|
-
border-style: solid;
|
|
1401
|
-
border-width: 0 1px 1px 0;
|
|
1402
|
-
color: #dadada;
|
|
1403
|
-
padding: 0;
|
|
1404
|
-
}
|
|
1405
|
-
.e-schedule .e-timeline-year-view .e-work-cells:hover:not(.e-other-month) {
|
|
1406
|
-
background: #414040;
|
|
1407
|
-
color: #dadada;
|
|
1408
|
-
}
|
|
1409
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-work-days {
|
|
1410
|
-
background-color: #201f1f;
|
|
1411
|
-
}
|
|
1412
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-other-month {
|
|
1413
|
-
color: #dadada;
|
|
1414
|
-
}
|
|
1415
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-current-day .e-date-header {
|
|
1416
|
-
background-color: #0074cc;
|
|
1417
|
-
border-radius: 50%;
|
|
1418
|
-
color: #fff;
|
|
1419
|
-
margin: 2px;
|
|
1420
|
-
width: 20px;
|
|
1421
|
-
}
|
|
1422
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell {
|
|
1423
|
-
background-color: #514f4f;
|
|
1424
|
-
color: #dadada;
|
|
1425
|
-
}
|
|
1426
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell .e-more-indicator {
|
|
1427
|
-
color: #dadada;
|
|
1428
|
-
}
|
|
1429
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell:hover {
|
|
1430
|
-
background-color: #514f4f;
|
|
1431
|
-
}
|
|
1432
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates {
|
|
1433
|
-
background-color: rgba(0, 0, 0, 0.08);
|
|
1434
|
-
}
|
|
1435
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header {
|
|
1436
|
-
cursor: default;
|
|
1437
|
-
opacity: 0.35;
|
|
1438
|
-
}
|
|
1439
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header:hover {
|
|
1440
|
-
text-decoration: none;
|
|
1441
|
-
}
|
|
1442
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates:hover {
|
|
1443
|
-
background-color: rgba(0, 0, 0, 0.08);
|
|
1444
|
-
}
|
|
1445
1508
|
.e-schedule .e-timeline-year-view .e-content-table {
|
|
1446
1509
|
height: 100%;
|
|
1447
1510
|
}
|
|
@@ -1468,6 +1531,7 @@
|
|
|
1468
1531
|
border-bottom: 1px solid #414040;
|
|
1469
1532
|
border-right: 1px solid #414040;
|
|
1470
1533
|
text-align: center;
|
|
1534
|
+
color: #c8c8c8;
|
|
1471
1535
|
}
|
|
1472
1536
|
.e-schedule .e-timeline-year-view .e-month-header.e-current-day {
|
|
1473
1537
|
color: #38a9ff;
|
|
@@ -1503,13 +1567,6 @@
|
|
|
1503
1567
|
.e-schedule .e-timeline-year-view .e-work-cells .e-date-header:hover {
|
|
1504
1568
|
text-decoration: underline;
|
|
1505
1569
|
}
|
|
1506
|
-
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
|
|
1507
|
-
background-color: rgba(0, 0, 0, 0.08);
|
|
1508
|
-
box-shadow: inset 0 0 0 8px #282727;
|
|
1509
|
-
}
|
|
1510
|
-
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
|
|
1511
|
-
background-color: rgba(0, 0, 0, 0.08);
|
|
1512
|
-
}
|
|
1513
1570
|
.e-schedule .e-timeline-year-view .e-event-table {
|
|
1514
1571
|
position: absolute;
|
|
1515
1572
|
top: 0;
|
|
@@ -1606,7 +1663,7 @@
|
|
|
1606
1663
|
.e-schedule .e-timeline-year-view .e-event-table .e-more-indicator:focus {
|
|
1607
1664
|
text-decoration: underline;
|
|
1608
1665
|
}
|
|
1609
|
-
.e-schedule.e-device .e-year-view .e-month-calendar {
|
|
1666
|
+
.e-schedule.e-device .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
|
|
1610
1667
|
max-width: 100%;
|
|
1611
1668
|
min-width: 100%;
|
|
1612
1669
|
}
|
|
@@ -1648,6 +1705,7 @@
|
|
|
1648
1705
|
}
|
|
1649
1706
|
.e-schedule .e-timeline-view .e-date-header-wrap table tbody td.e-time-slots,
|
|
1650
1707
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table tbody td.e-time-slots {
|
|
1708
|
+
background-color: #201f1f;
|
|
1651
1709
|
overflow: inherit;
|
|
1652
1710
|
}
|
|
1653
1711
|
.e-schedule .e-timeline-view .e-date-header-wrap table tbody td > span,
|
|
@@ -1973,6 +2031,7 @@
|
|
|
1973
2031
|
.e-schedule .e-month-agenda-view .e-content-table {
|
|
1974
2032
|
border-bottom: 2px solid #414040;
|
|
1975
2033
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
|
|
2034
|
+
height: 100%;
|
|
1976
2035
|
}
|
|
1977
2036
|
.e-schedule .e-month-agenda-view .e-resource-column {
|
|
1978
2037
|
border-bottom: 1px solid #414040;
|
|
@@ -2189,6 +2248,7 @@
|
|
|
2189
2248
|
.e-schedule .e-agenda-view .e-subject-wrap {
|
|
2190
2249
|
display: -ms-flexbox;
|
|
2191
2250
|
display: flex;
|
|
2251
|
+
margin-bottom: 0;
|
|
2192
2252
|
}
|
|
2193
2253
|
.e-schedule .e-agenda-view .e-active-appointment-agenda .e-subject {
|
|
2194
2254
|
color: #dadada;
|
|
@@ -2342,6 +2402,10 @@
|
|
|
2342
2402
|
min-width: 32px;
|
|
2343
2403
|
z-index: 0;
|
|
2344
2404
|
}
|
|
2405
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-item .e-btn.e-tbar-btn .e-icons.e-btn-icon,
|
|
2406
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-item .e-btn.e-tbar-btn .e-icons.e-btn-icon {
|
|
2407
|
+
font-size: 14px;
|
|
2408
|
+
}
|
|
2345
2409
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-item .e-tbar-btn-text,
|
|
2346
2410
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-item .e-tbar-btn-text {
|
|
2347
2411
|
line-height: inherit;
|
|
@@ -2383,13 +2447,19 @@
|
|
|
2383
2447
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-tbtn-txt .e-icons.e-icon-right,
|
|
2384
2448
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-icon-right,
|
|
2385
2449
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-tbtn-txt .e-icons.e-icon-right {
|
|
2386
|
-
padding:
|
|
2450
|
+
padding: 0 12px 0 0;
|
|
2451
|
+
font-size: 14px;
|
|
2387
2452
|
}
|
|
2388
2453
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn .e-btn-icon,
|
|
2389
2454
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-btn-icon,
|
|
2390
2455
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn .e-btn-icon,
|
|
2391
2456
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-btn-icon {
|
|
2392
2457
|
height: 25px;
|
|
2458
|
+
padding-top: 0;
|
|
2459
|
+
}
|
|
2460
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-tbar-btn-text,
|
|
2461
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-tbar-btn-text {
|
|
2462
|
+
font-size: 16px;
|
|
2393
2463
|
}
|
|
2394
2464
|
.e-bigger .e-schedule .e-more-popup-wrapper .e-header-day,
|
|
2395
2465
|
.e-bigger.e-schedule .e-more-popup-wrapper .e-header-day {
|
|
@@ -2495,10 +2565,19 @@
|
|
|
2495
2565
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2496
2566
|
width: 420px;
|
|
2497
2567
|
}
|
|
2568
|
+
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content {
|
|
2569
|
+
padding: 2%;
|
|
2570
|
+
}
|
|
2498
2571
|
@media screen and (max-width: 767px) {
|
|
2499
2572
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2500
2573
|
width: 289px;
|
|
2501
2574
|
}
|
|
2575
|
+
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content {
|
|
2576
|
+
padding: 5%;
|
|
2577
|
+
}
|
|
2578
|
+
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content button {
|
|
2579
|
+
margin-bottom: 5%;
|
|
2580
|
+
}
|
|
2502
2581
|
}
|
|
2503
2582
|
|
|
2504
2583
|
.e-dialog.e-quick-dialog {
|
|
@@ -2942,6 +3021,7 @@
|
|
|
2942
3021
|
position: absolute;
|
|
2943
3022
|
right: 6px;
|
|
2944
3023
|
top: 4px;
|
|
3024
|
+
padding: 0;
|
|
2945
3025
|
}
|
|
2946
3026
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-edit,
|
|
2947
3027
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-delete,
|
|
@@ -2968,12 +3048,15 @@
|
|
|
2968
3048
|
width: 100%;
|
|
2969
3049
|
}
|
|
2970
3050
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-schedule-form > span {
|
|
2971
|
-
margin
|
|
3051
|
+
margin: 0 0 4px;
|
|
2972
3052
|
}
|
|
2973
3053
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
2974
3054
|
font-size: 22px;
|
|
2975
3055
|
height: 40px;
|
|
2976
3056
|
}
|
|
3057
|
+
.e-quick-popup-wrapper .e-event-popup .e-popup-header {
|
|
3058
|
+
background-color: #201f1f;
|
|
3059
|
+
}
|
|
2977
3060
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper {
|
|
2978
3061
|
padding: 5px 5px 2px;
|
|
2979
3062
|
}
|
|
@@ -3017,13 +3100,15 @@
|
|
|
3017
3100
|
padding: 0 18px 8px;
|
|
3018
3101
|
}
|
|
3019
3102
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-subject-wrap .e-subject {
|
|
3103
|
+
background-color: #333232;
|
|
3104
|
+
border-left: 6px solid #0074cc;
|
|
3105
|
+
border-radius: 2px;
|
|
3106
|
+
color: #dadada;
|
|
3020
3107
|
cursor: default;
|
|
3021
3108
|
font-size: 20px;
|
|
3022
3109
|
font-weight: 500;
|
|
3023
3110
|
line-height: 1.5;
|
|
3024
3111
|
max-height: 87px;
|
|
3025
|
-
background-color: #333232;
|
|
3026
|
-
border-left: 6px solid #0074cc;
|
|
3027
3112
|
padding: 8px 0 8px 10px;
|
|
3028
3113
|
}
|
|
3029
3114
|
.e-quick-popup-wrapper .e-event-popup .e-popup-content {
|
|
@@ -3072,7 +3157,7 @@
|
|
|
3072
3157
|
.e-quick-popup-wrapper .e-event-popup .e-resource-icon {
|
|
3073
3158
|
color: #dadada;
|
|
3074
3159
|
font-size: 18px;
|
|
3075
|
-
padding
|
|
3160
|
+
padding: 4px 13px 0 0;
|
|
3076
3161
|
}
|
|
3077
3162
|
.e-quick-popup-wrapper .e-cell-popup .e-date-time-details,
|
|
3078
3163
|
.e-quick-popup-wrapper .e-cell-popup .e-location-details,
|
|
@@ -3113,6 +3198,9 @@
|
|
|
3113
3198
|
right: auto;
|
|
3114
3199
|
text-transform: capitalize;
|
|
3115
3200
|
}
|
|
3201
|
+
.e-quick-popup-wrapper .e-event-popup .e-popup-footer {
|
|
3202
|
+
display: block;
|
|
3203
|
+
}
|
|
3116
3204
|
.e-quick-popup-wrapper.e-rtl {
|
|
3117
3205
|
text-align: right;
|
|
3118
3206
|
}
|
|
@@ -3120,10 +3208,6 @@
|
|
|
3120
3208
|
left: 6px;
|
|
3121
3209
|
right: auto;
|
|
3122
3210
|
}
|
|
3123
|
-
.e-quick-popup-wrapper.e-rtl .e-cell-popup .e-popup-footer {
|
|
3124
|
-
padding: 8px 18px 8px 8px;
|
|
3125
|
-
text-align: left;
|
|
3126
|
-
}
|
|
3127
3211
|
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3128
3212
|
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3129
3213
|
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
@@ -3131,9 +3215,17 @@
|
|
|
3131
3215
|
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3132
3216
|
margin-right: 10px;
|
|
3133
3217
|
}
|
|
3134
|
-
.e-quick-popup-wrapper.e-rtl .e-event-details
|
|
3218
|
+
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3219
|
+
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3135
3220
|
margin-left: 8px;
|
|
3136
3221
|
}
|
|
3222
|
+
.e-quick-popup-wrapper.e-rtl .e-popup-footer {
|
|
3223
|
+
padding: 8px 8px 8px 18px;
|
|
3224
|
+
text-align: left;
|
|
3225
|
+
}
|
|
3226
|
+
.e-quick-popup-wrapper.e-rtl .e-date-time-icon {
|
|
3227
|
+
padding: 0 0 0 10px;
|
|
3228
|
+
}
|
|
3137
3229
|
.e-quick-popup-wrapper.e-device {
|
|
3138
3230
|
bottom: 0;
|
|
3139
3231
|
height: 100%;
|
|
@@ -3190,6 +3282,7 @@
|
|
|
3190
3282
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-delete {
|
|
3191
3283
|
background-color: transparent;
|
|
3192
3284
|
border: 0;
|
|
3285
|
+
color: #dadada;
|
|
3193
3286
|
height: 40px;
|
|
3194
3287
|
width: 40px;
|
|
3195
3288
|
}
|
|
@@ -3221,6 +3314,25 @@
|
|
|
3221
3314
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
3222
3315
|
font-size: 24px;
|
|
3223
3316
|
}
|
|
3317
|
+
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content {
|
|
3318
|
+
padding: 38px 18px 12px;
|
|
3319
|
+
}
|
|
3320
|
+
.e-bigger .e-quick-popup-wrapper .e-popup-footer {
|
|
3321
|
+
padding: 8px 18px 8px 22px;
|
|
3322
|
+
}
|
|
3323
|
+
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-date-time-icon,
|
|
3324
|
+
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-date-time-icon {
|
|
3325
|
+
padding-right: 13px;
|
|
3326
|
+
}
|
|
3327
|
+
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close .e-close-icon {
|
|
3328
|
+
font-size: 16px;
|
|
3329
|
+
}
|
|
3330
|
+
.e-bigger .e-quick-popup-wrapper.e-rtl .e-cell-popup .e-date-time-icon {
|
|
3331
|
+
padding-right: 0;
|
|
3332
|
+
}
|
|
3333
|
+
.e-bigger .e-quick-popup-wrapper.e-rtl .e-event-popup .e-date-time-icon {
|
|
3334
|
+
padding-right: 13px;
|
|
3335
|
+
}
|
|
3224
3336
|
.e-bigger .e-quick-popup-wrapper .e-edit.e-btn.e-small.e-round,
|
|
3225
3337
|
.e-bigger .e-quick-popup-wrapper .e-delete.e-btn.e-small.e-round,
|
|
3226
3338
|
.e-bigger .e-quick-popup-wrapper .e-close.e-btn.e-small.e-round {
|
|
@@ -3241,6 +3353,35 @@
|
|
|
3241
3353
|
padding: 0 5px 0 8px;
|
|
3242
3354
|
}
|
|
3243
3355
|
|
|
3356
|
+
.e-bigger .e-agenda-view .e-appointment {
|
|
3357
|
+
padding: 0 8px;
|
|
3358
|
+
}
|
|
3359
|
+
.e-bigger .e-agenda-view .e-subject {
|
|
3360
|
+
font-size: 16px;
|
|
3361
|
+
}
|
|
3362
|
+
.e-bigger .e-agenda-view .e-date-time {
|
|
3363
|
+
font-size: 14px;
|
|
3364
|
+
}
|
|
3365
|
+
.e-bigger .e-agenda-view .e-day-date-header .e-m-date {
|
|
3366
|
+
font-size: 20px;
|
|
3367
|
+
}
|
|
3368
|
+
.e-bigger .e-agenda-view .e-day-date-header .e-m-day {
|
|
3369
|
+
font-size: 14px;
|
|
3370
|
+
}
|
|
3371
|
+
|
|
3372
|
+
.e-bigger .e-timeline-view .e-resource-text {
|
|
3373
|
+
font-size: 14px;
|
|
3374
|
+
padding-left: 12px;
|
|
3375
|
+
}
|
|
3376
|
+
.e-bigger .e-timeline-view .e-navigate {
|
|
3377
|
+
font-size: 18px;
|
|
3378
|
+
padding: 8px 0 8px 8px;
|
|
3379
|
+
}
|
|
3380
|
+
.e-bigger .e-timeline-view .e-date-header-wrap table tbody td > span {
|
|
3381
|
+
font-size: 18px;
|
|
3382
|
+
padding: 8px 0 8px 8px;
|
|
3383
|
+
}
|
|
3384
|
+
|
|
3244
3385
|
.e-appointment.e-schedule-event-clone {
|
|
3245
3386
|
background: #0074cc;
|
|
3246
3387
|
border-radius: 2px;
|
|
@@ -3343,8 +3484,7 @@
|
|
|
3343
3484
|
height: calc(100% - 35px);
|
|
3344
3485
|
max-height: 150px;
|
|
3345
3486
|
overflow-y: auto;
|
|
3346
|
-
padding
|
|
3347
|
-
padding-right: 10px;
|
|
3487
|
+
padding: 10px 10px 0;
|
|
3348
3488
|
}
|
|
3349
3489
|
.e-bigger .e-more-popup-wrapper .e-more-event-content .e-appointment-border,
|
|
3350
3490
|
.e-more-popup-wrapper .e-more-event-content .e-appointment-border {
|
|
@@ -3391,6 +3531,7 @@
|
|
|
3391
3531
|
color: #dadada;
|
|
3392
3532
|
cursor: pointer;
|
|
3393
3533
|
height: 25px;
|
|
3534
|
+
padding: unset;
|
|
3394
3535
|
position: absolute;
|
|
3395
3536
|
right: 6px;
|
|
3396
3537
|
width: 25px;
|
|
@@ -3465,6 +3606,14 @@
|
|
|
3465
3606
|
.e-more-popup-wrapper.e-device .e-more-event-content {
|
|
3466
3607
|
max-height: unset;
|
|
3467
3608
|
}
|
|
3609
|
+
.e-bigger .e-more-popup-wrapper.e-rtl .e-header-date,
|
|
3610
|
+
.e-more-popup-wrapper.e-rtl .e-header-date {
|
|
3611
|
+
padding-right: 10px;
|
|
3612
|
+
}
|
|
3613
|
+
.e-bigger .e-more-popup-wrapper.e-rtl .e-header-day,
|
|
3614
|
+
.e-more-popup-wrapper.e-rtl .e-header-day {
|
|
3615
|
+
padding-right: 10px;
|
|
3616
|
+
}
|
|
3468
3617
|
.e-bigger .e-more-popup-wrapper.e-rtl .e-more-event-close,
|
|
3469
3618
|
.e-more-popup-wrapper.e-rtl .e-more-event-close {
|
|
3470
3619
|
left: 6px;
|
|
@@ -3482,6 +3631,10 @@
|
|
|
3482
3631
|
border-width: 0;
|
|
3483
3632
|
position: relative;
|
|
3484
3633
|
}
|
|
3634
|
+
.e-schedule .e-header-calendar {
|
|
3635
|
+
background-color: none;
|
|
3636
|
+
box-shadow: none;
|
|
3637
|
+
}
|
|
3485
3638
|
.e-schedule .e-vertical-view .e-date-header-wrap table tbody td:first-child,
|
|
3486
3639
|
.e-schedule .e-vertical-view .e-content-wrap table td:first-child {
|
|
3487
3640
|
border-left-width: 0;
|
|
@@ -3541,6 +3694,7 @@
|
|
|
3541
3694
|
}
|
|
3542
3695
|
.e-schedule .e-vertical-view .e-header-cells.e-current-day {
|
|
3543
3696
|
color: #38a9ff;
|
|
3697
|
+
font-weight: normal;
|
|
3544
3698
|
}
|
|
3545
3699
|
.e-schedule .e-vertical-view .e-work-cells {
|
|
3546
3700
|
background-color: #282727;
|
|
@@ -3571,6 +3725,7 @@
|
|
|
3571
3725
|
}
|
|
3572
3726
|
.e-schedule .e-vertical-view .e-all-day-cells.e-selected-cell:hover {
|
|
3573
3727
|
background-color: #514f4f;
|
|
3728
|
+
color: #dadada;
|
|
3574
3729
|
}
|
|
3575
3730
|
.e-schedule .e-vertical-view .e-selected-cell {
|
|
3576
3731
|
background-color: #514f4f;
|
|
@@ -3578,6 +3733,7 @@
|
|
|
3578
3733
|
}
|
|
3579
3734
|
.e-schedule .e-vertical-view .e-selected-cell:hover {
|
|
3580
3735
|
background-color: #514f4f;
|
|
3736
|
+
color: #dadada;
|
|
3581
3737
|
}
|
|
3582
3738
|
.e-schedule .e-vertical-view .e-clone-time-indicator,
|
|
3583
3739
|
.e-schedule .e-vertical-view .e-current-time {
|
|
@@ -3603,11 +3759,14 @@
|
|
|
3603
3759
|
border-style: solid;
|
|
3604
3760
|
border-width: 0 0 1px;
|
|
3605
3761
|
color: #c8c8c8;
|
|
3762
|
+
font-size: none;
|
|
3606
3763
|
text-align: left;
|
|
3764
|
+
text-transform: none;
|
|
3607
3765
|
}
|
|
3608
3766
|
.e-schedule .e-month-view .e-date-header-wrap table td.e-current-day,
|
|
3609
3767
|
.e-schedule .e-month-agenda-view .e-date-header-wrap table td.e-current-day {
|
|
3610
3768
|
color: #38a9ff;
|
|
3769
|
+
font-weight: normal;
|
|
3611
3770
|
}
|
|
3612
3771
|
.e-schedule .e-month-view .e-work-cells,
|
|
3613
3772
|
.e-schedule .e-month-agenda-view .e-work-cells {
|
|
@@ -3643,6 +3802,10 @@
|
|
|
3643
3802
|
background-color: #514f4f;
|
|
3644
3803
|
color: #dadada;
|
|
3645
3804
|
}
|
|
3805
|
+
.e-schedule .e-month-view .e-selected-cell .e-date-header,
|
|
3806
|
+
.e-schedule .e-month-agenda-view .e-selected-cell .e-date-header {
|
|
3807
|
+
color: none;
|
|
3808
|
+
}
|
|
3646
3809
|
.e-schedule .e-month-view .e-selected-cell .e-more-indicator,
|
|
3647
3810
|
.e-schedule .e-month-agenda-view .e-selected-cell .e-more-indicator {
|
|
3648
3811
|
color: #dadada;
|
|
@@ -3651,6 +3814,9 @@
|
|
|
3651
3814
|
.e-schedule .e-month-agenda-view .e-selected-cell:hover {
|
|
3652
3815
|
background-color: #514f4f;
|
|
3653
3816
|
}
|
|
3817
|
+
.e-schedule .e-month-agenda-view .e-content-wrap .e-table-container {
|
|
3818
|
+
overflow: auto;
|
|
3819
|
+
}
|
|
3654
3820
|
.e-schedule .e-month-agenda-view .e-date-header-wrap table td {
|
|
3655
3821
|
border-width: 0 0 1px 0;
|
|
3656
3822
|
text-align: center;
|
|
@@ -3682,6 +3848,7 @@
|
|
|
3682
3848
|
.e-schedule .e-timeline-view .e-date-header-wrap table td.e-current-day,
|
|
3683
3849
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table td.e-current-day {
|
|
3684
3850
|
color: #38a9ff;
|
|
3851
|
+
font-weight: normal;
|
|
3685
3852
|
}
|
|
3686
3853
|
.e-schedule .e-timeline-view .e-work-cells,
|
|
3687
3854
|
.e-schedule .e-timeline-month-view .e-work-cells {
|
|
@@ -3745,6 +3912,64 @@
|
|
|
3745
3912
|
.e-schedule .e-timeline-view .e-current-timeline {
|
|
3746
3913
|
border-left: 1px solid #0074cc;
|
|
3747
3914
|
}
|
|
3915
|
+
.e-schedule .e-timeline-year-view .e-work-cells {
|
|
3916
|
+
background-color: #282727;
|
|
3917
|
+
border-color: #414040;
|
|
3918
|
+
border-style: solid;
|
|
3919
|
+
border-width: 0 1px 1px 0;
|
|
3920
|
+
color: #dadada;
|
|
3921
|
+
padding: 0;
|
|
3922
|
+
}
|
|
3923
|
+
.e-schedule .e-timeline-year-view .e-work-cells:hover:not(.e-other-month) {
|
|
3924
|
+
background: #414040;
|
|
3925
|
+
color: #dadada;
|
|
3926
|
+
}
|
|
3927
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-work-days {
|
|
3928
|
+
background-color: #201f1f;
|
|
3929
|
+
}
|
|
3930
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-other-month {
|
|
3931
|
+
color: #dadada;
|
|
3932
|
+
}
|
|
3933
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-current-day .e-date-header {
|
|
3934
|
+
background-color: #0074cc;
|
|
3935
|
+
border-radius: 50%;
|
|
3936
|
+
color: #fff;
|
|
3937
|
+
margin: 2px;
|
|
3938
|
+
width: 20px;
|
|
3939
|
+
}
|
|
3940
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell {
|
|
3941
|
+
background-color: #514f4f;
|
|
3942
|
+
color: #dadada;
|
|
3943
|
+
}
|
|
3944
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell .e-date-header {
|
|
3945
|
+
color: #dadada;
|
|
3946
|
+
}
|
|
3947
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell .e-more-indicator {
|
|
3948
|
+
color: #dadada;
|
|
3949
|
+
}
|
|
3950
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell:hover {
|
|
3951
|
+
background-color: #514f4f;
|
|
3952
|
+
}
|
|
3953
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates {
|
|
3954
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
3955
|
+
}
|
|
3956
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header {
|
|
3957
|
+
cursor: default;
|
|
3958
|
+
opacity: 0.35;
|
|
3959
|
+
}
|
|
3960
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header:hover {
|
|
3961
|
+
text-decoration: none;
|
|
3962
|
+
}
|
|
3963
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates:hover {
|
|
3964
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
3965
|
+
}
|
|
3966
|
+
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
|
|
3967
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
3968
|
+
box-shadow: inset 0 0 0 8px #282727;
|
|
3969
|
+
}
|
|
3970
|
+
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
|
|
3971
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
3972
|
+
}
|
|
3748
3973
|
.e-schedule.e-rtl .e-vertical-view .e-date-header-wrap table tbody td:first-child,
|
|
3749
3974
|
.e-schedule.e-rtl .e-vertical-view .e-content-wrap table td:first-child {
|
|
3750
3975
|
border-right-width: 0;
|
|
@@ -3837,8 +4062,7 @@
|
|
|
3837
4062
|
display: flex;
|
|
3838
4063
|
-ms-flex-flow: row wrap;
|
|
3839
4064
|
flex-flow: row wrap;
|
|
3840
|
-
margin
|
|
3841
|
-
margin-right: auto;
|
|
4065
|
+
margin: 0 auto;
|
|
3842
4066
|
max-width: 1240px;
|
|
3843
4067
|
}
|
|
3844
4068
|
.e-recurrenceeditor .e-recurrence-table {
|
|
@@ -3879,7 +4103,7 @@
|
|
|
3879
4103
|
}
|
|
3880
4104
|
.e-recurrenceeditor .e-form-right,
|
|
3881
4105
|
.e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
3882
|
-
padding: 0 0 10px
|
|
4106
|
+
padding: 0 0 10px;
|
|
3883
4107
|
}
|
|
3884
4108
|
.e-recurrenceeditor .e-input-wrapper {
|
|
3885
4109
|
float: left;
|
|
@@ -3920,13 +4144,11 @@
|
|
|
3920
4144
|
margin-bottom: 5px;
|
|
3921
4145
|
}
|
|
3922
4146
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
3923
|
-
padding
|
|
3924
|
-
padding-right: 0;
|
|
4147
|
+
padding: 0 0 0 8px;
|
|
3925
4148
|
}
|
|
3926
4149
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
3927
4150
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
3928
|
-
padding
|
|
3929
|
-
padding-right: 8px;
|
|
4151
|
+
padding: 0 8px 0 0;
|
|
3930
4152
|
}
|
|
3931
4153
|
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
3932
4154
|
width: 30px;
|
|
@@ -3954,10 +4176,10 @@
|
|
|
3954
4176
|
margin-bottom: 11px;
|
|
3955
4177
|
}
|
|
3956
4178
|
.e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper {
|
|
3957
|
-
|
|
4179
|
+
padding-bottom: 11px;
|
|
3958
4180
|
}
|
|
3959
4181
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper {
|
|
3960
|
-
|
|
4182
|
+
padding-top: 3px;
|
|
3961
4183
|
}
|
|
3962
4184
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
|
|
3963
4185
|
display: none;
|
|
@@ -4007,7 +4229,7 @@
|
|
|
4007
4229
|
}
|
|
4008
4230
|
.e-bigger .e-recurrenceeditor .e-form-right,
|
|
4009
4231
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
4010
|
-
padding: 0 0 10px
|
|
4232
|
+
padding: 0 0 10px;
|
|
4011
4233
|
}
|
|
4012
4234
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
|
|
4013
4235
|
padding-bottom: 6px;
|
|
@@ -4066,8 +4288,7 @@
|
|
|
4066
4288
|
}
|
|
4067
4289
|
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element,
|
|
4068
4290
|
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
4069
|
-
padding
|
|
4070
|
-
padding-right: 64px;
|
|
4291
|
+
padding: 0 64px 0 0;
|
|
4071
4292
|
}
|
|
4072
4293
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
|
|
4073
4294
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
@@ -4077,13 +4298,11 @@
|
|
|
4077
4298
|
margin-bottom: 5px;
|
|
4078
4299
|
}
|
|
4079
4300
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4080
|
-
padding
|
|
4081
|
-
padding-right: 0;
|
|
4301
|
+
padding: 0 0 0 12px;
|
|
4082
4302
|
}
|
|
4083
4303
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
4084
4304
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
4085
|
-
padding
|
|
4086
|
-
padding-right: 12px;
|
|
4305
|
+
padding: 0 12px 0 0;
|
|
4087
4306
|
}
|
|
4088
4307
|
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
|
|
4089
4308
|
left: 0;
|
|
@@ -4115,8 +4334,7 @@
|
|
|
4115
4334
|
}
|
|
4116
4335
|
.e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
|
|
4117
4336
|
.e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
|
|
4118
|
-
padding
|
|
4119
|
-
padding-right: 0;
|
|
4337
|
+
padding: 0 0 0 10px;
|
|
4120
4338
|
}
|
|
4121
4339
|
.e-device .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4122
4340
|
padding-right: 10px;
|
|
@@ -4137,23 +4355,25 @@
|
|
|
4137
4355
|
.e-device .e-recurrenceeditor .e-recurrence-table .e-day-position {
|
|
4138
4356
|
padding-left: 20px;
|
|
4139
4357
|
}
|
|
4358
|
+
.e-device .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
4359
|
+
margin-left: 20px;
|
|
4360
|
+
}
|
|
4140
4361
|
.e-device .e-recurrenceeditor .e-week-position {
|
|
4141
4362
|
right: 0;
|
|
4363
|
+
padding-right: 10px;
|
|
4142
4364
|
}
|
|
4143
4365
|
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4144
4366
|
padding-right: 0;
|
|
4145
4367
|
}
|
|
4146
4368
|
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
4147
4369
|
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
4148
|
-
padding
|
|
4149
|
-
padding-right: 10px;
|
|
4370
|
+
padding: 0 10px 0 0;
|
|
4150
4371
|
}
|
|
4151
4372
|
.e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
4152
|
-
padding
|
|
4373
|
+
padding: 0 20px 0 0;
|
|
4153
4374
|
}
|
|
4154
4375
|
.e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
4155
|
-
padding
|
|
4156
|
-
padding-left: 0;
|
|
4376
|
+
padding: 0 50px 0 0;
|
|
4157
4377
|
}
|
|
4158
4378
|
.e-device .e-recurrenceeditor.e-rtl .e-week-position {
|
|
4159
4379
|
left: 0;
|
|
@@ -4170,6 +4390,14 @@
|
|
|
4170
4390
|
padding: 16px 8px;
|
|
4171
4391
|
}
|
|
4172
4392
|
|
|
4393
|
+
@media (max-width: 1024px) {
|
|
4394
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on {
|
|
4395
|
+
width: 100%;
|
|
4396
|
+
}
|
|
4397
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
|
|
4398
|
+
width: 65%;
|
|
4399
|
+
}
|
|
4400
|
+
}
|
|
4173
4401
|
@media (max-width: 580px) {
|
|
4174
4402
|
.e-recurrenceeditor {
|
|
4175
4403
|
margin-left: auto;
|
|
@@ -4205,8 +4433,7 @@
|
|
|
4205
4433
|
}
|
|
4206
4434
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
|
|
4207
4435
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
|
|
4208
|
-
padding
|
|
4209
|
-
padding-right: 0;
|
|
4436
|
+
padding: 0 0 0 10px;
|
|
4210
4437
|
}
|
|
4211
4438
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4212
4439
|
padding-right: 10px;
|
|
@@ -4219,15 +4446,17 @@
|
|
|
4219
4446
|
width: 100%;
|
|
4220
4447
|
}
|
|
4221
4448
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
|
|
4222
|
-
width:
|
|
4449
|
+
width: 65%;
|
|
4450
|
+
}
|
|
4451
|
+
.e-recurrenceeditor .e-editor .e-recurrence-table .e-day-position {
|
|
4452
|
+
padding-left: 50px;
|
|
4223
4453
|
}
|
|
4224
4454
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4225
4455
|
padding-right: 0;
|
|
4226
4456
|
}
|
|
4227
4457
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
4228
4458
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
4229
|
-
padding
|
|
4230
|
-
padding-right: 10px;
|
|
4459
|
+
padding: 0 10px 0 0;
|
|
4231
4460
|
}
|
|
4232
4461
|
}
|
|
4233
4462
|
/*! Recurrence-Editor component theme */
|