@syncfusion/ej2-schedule 20.3.58 → 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 +10 -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 +821 -528
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +860 -539
- 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/exports/print.js +39 -4
- 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.css
CHANGED
|
@@ -1,3 +1,100 @@
|
|
|
1
|
+
/*! TreeView's fabric theme wise override definitions and variables */
|
|
2
|
+
/* stylelint-disable */
|
|
3
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
4
|
+
/*! calendar fabric theme variables */
|
|
5
|
+
.e-ddl.e-popup {
|
|
6
|
+
border: 0;
|
|
7
|
+
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
|
|
8
|
+
margin-top: 1px;
|
|
9
|
+
}
|
|
10
|
+
.e-ddl.e-popup .e-input-group input {
|
|
11
|
+
line-height: 15px;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.e-ddl.e-popup .e-input-group {
|
|
15
|
+
display: -ms-flexbox;
|
|
16
|
+
display: flex;
|
|
17
|
+
width: auto;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.e-popup.e-ddl .e-dropdownbase {
|
|
21
|
+
min-height: 26px;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.e-ddl.e-popup .e-filter-parent {
|
|
25
|
+
border-left-width: 0;
|
|
26
|
+
border-right-width: 0;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.e-bigger .e-popup.e-ddl-device-filter {
|
|
30
|
+
margin-top: 0;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.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 {
|
|
34
|
+
font-size: 15px;
|
|
35
|
+
line-height: 45px;
|
|
36
|
+
padding-left: 0;
|
|
37
|
+
text-indent: 16px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.e-bigger .e-ddl.e-popup .e-dd-group .e-list-item {
|
|
41
|
+
padding-left: 4px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.e-bigger .e-ddl.e-popup .e-input-group {
|
|
45
|
+
padding: 4px 0;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.e-bigger .e-ddl.e-popup .e-input-group input, .e-bigger .e-ddl.e-popup .e-input-group input.e-input {
|
|
49
|
+
height: 38px;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
53
|
+
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
54
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active,
|
|
55
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:hover {
|
|
56
|
+
background: transparent;
|
|
57
|
+
color: #333;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.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 {
|
|
61
|
+
font-size: 14px;
|
|
62
|
+
line-height: 40px;
|
|
63
|
+
padding-left: 0;
|
|
64
|
+
text-indent: 16px;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.e-bigger.e-small .e-ddl.e-popup .e-dd-group .e-list-item {
|
|
68
|
+
padding-left: 4px;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.e-bigger.e-small .e-ddl.e-popup .e-input-group {
|
|
72
|
+
padding: 0;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.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 {
|
|
76
|
+
height: 34px;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.e-multi-select-wrapper.e-down-icon .e-input-group-icon.e-ddl-icon {
|
|
80
|
+
height: 30px;
|
|
81
|
+
width: 30px;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.e-small .e-multi-select-wrapper .e-chips,
|
|
85
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-chips {
|
|
86
|
+
padding: 0;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.e-small .e-multi-select-wrapper .e-chips > .e-chipcontent,
|
|
90
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
91
|
+
padding: 0 8px;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.e-small .e-multi-select-wrapper .e-chips {
|
|
95
|
+
margin: 2px 2px 2px 0;
|
|
96
|
+
}
|
|
97
|
+
|
|
1
98
|
/*! recurrence editor theme wise definitions*/ /*! Schedule component's fabric theme definitions and variables */
|
|
2
99
|
.e-schedule .e-schedule-toolbar .e-icon-prev::before {
|
|
3
100
|
content: "\e98f";
|
|
@@ -193,7 +290,7 @@
|
|
|
193
290
|
}
|
|
194
291
|
.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
292
|
font-size: 12px;
|
|
196
|
-
|
|
293
|
+
margin-top: 4px;
|
|
197
294
|
}
|
|
198
295
|
.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
296
|
border-radius: 0%;
|
|
@@ -214,9 +311,6 @@
|
|
|
214
311
|
font-size: 16px;
|
|
215
312
|
text-transform: initial;
|
|
216
313
|
}
|
|
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
314
|
.e-schedule .e-schedule-toolbar.e-rtl .e-hor-nav {
|
|
221
315
|
background: #fff;
|
|
222
316
|
border-left: 0;
|
|
@@ -260,6 +354,9 @@
|
|
|
260
354
|
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos > div {
|
|
261
355
|
height: inherit;
|
|
262
356
|
}
|
|
357
|
+
.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 {
|
|
358
|
+
padding: 0;
|
|
359
|
+
}
|
|
263
360
|
.e-schedule.e-device .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
|
|
264
361
|
font-size: 15px;
|
|
265
362
|
}
|
|
@@ -338,6 +435,7 @@
|
|
|
338
435
|
height: 100%;
|
|
339
436
|
position: absolute;
|
|
340
437
|
width: 250px;
|
|
438
|
+
color: #333;
|
|
341
439
|
}
|
|
342
440
|
.e-schedule .e-resource-tree-popup .e-resource-tree {
|
|
343
441
|
height: 100%;
|
|
@@ -440,7 +538,6 @@
|
|
|
440
538
|
}
|
|
441
539
|
.e-schedule .e-block-appointment {
|
|
442
540
|
background: rgba(0, 0, 0, 0.08);
|
|
443
|
-
border-radius: 2px;
|
|
444
541
|
color: #a6a6a6;
|
|
445
542
|
cursor: default;
|
|
446
543
|
overflow: hidden;
|
|
@@ -698,11 +795,15 @@
|
|
|
698
795
|
.e-schedule .e-vertical-view .e-header-cells .e-header-day {
|
|
699
796
|
display: table;
|
|
700
797
|
font-size: 13px;
|
|
798
|
+
line-height: unset;
|
|
799
|
+
padding-bottom: 0;
|
|
701
800
|
}
|
|
702
801
|
.e-schedule .e-vertical-view .e-header-cells .e-header-date {
|
|
703
802
|
cursor: pointer;
|
|
704
803
|
display: table;
|
|
705
804
|
font-size: 18px;
|
|
805
|
+
line-height: unset;
|
|
806
|
+
padding-top: 0;
|
|
706
807
|
}
|
|
707
808
|
.e-schedule .e-vertical-view .e-header-cells .e-header-date:hover {
|
|
708
809
|
text-decoration: underline;
|
|
@@ -770,6 +871,7 @@
|
|
|
770
871
|
.e-schedule .e-vertical-view .e-all-day-appointment-section:hover, .e-schedule .e-vertical-view .e-all-day-appointment-section:focus {
|
|
771
872
|
background: #f4f4f4;
|
|
772
873
|
border-radius: 100%;
|
|
874
|
+
color: #333;
|
|
773
875
|
}
|
|
774
876
|
.e-schedule .e-vertical-view .e-appointment-hide {
|
|
775
877
|
opacity: 0;
|
|
@@ -922,6 +1024,7 @@
|
|
|
922
1024
|
flex: auto;
|
|
923
1025
|
padding: 0 4px;
|
|
924
1026
|
text-align: left;
|
|
1027
|
+
line-height: unset;
|
|
925
1028
|
}
|
|
926
1029
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
927
1030
|
font-size: 13px;
|
|
@@ -1222,6 +1325,9 @@
|
|
|
1222
1325
|
.e-schedule .e-month-view .e-more-indicator:focus {
|
|
1223
1326
|
text-decoration: underline;
|
|
1224
1327
|
}
|
|
1328
|
+
.e-schedule.e-rtl .e-month-view .e-date-header {
|
|
1329
|
+
margin: 3px 3px 2px;
|
|
1330
|
+
}
|
|
1225
1331
|
.e-schedule.e-rtl .e-month-view .e-left-indent {
|
|
1226
1332
|
border-left: 1px solid #d0d0d0;
|
|
1227
1333
|
border-right-width: 0;
|
|
@@ -1394,54 +1500,6 @@
|
|
|
1394
1500
|
.e-schedule .e-timeline-year-view .e-resource-collapse {
|
|
1395
1501
|
transform: rotate(90deg);
|
|
1396
1502
|
}
|
|
1397
|
-
.e-schedule .e-timeline-year-view .e-work-cells {
|
|
1398
|
-
background-color: #f8f8f8;
|
|
1399
|
-
border-color: #d0d0d0;
|
|
1400
|
-
border-style: solid;
|
|
1401
|
-
border-width: 0 1px 1px 0;
|
|
1402
|
-
color: #333;
|
|
1403
|
-
padding: 0;
|
|
1404
|
-
}
|
|
1405
|
-
.e-schedule .e-timeline-year-view .e-work-cells:hover:not(.e-other-month) {
|
|
1406
|
-
background: #eaeaea;
|
|
1407
|
-
color: #333;
|
|
1408
|
-
}
|
|
1409
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-work-days {
|
|
1410
|
-
background-color: #fff;
|
|
1411
|
-
}
|
|
1412
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-other-month {
|
|
1413
|
-
color: #767676;
|
|
1414
|
-
}
|
|
1415
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-current-day .e-date-header {
|
|
1416
|
-
background-color: #0078d6;
|
|
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: #b7e0ff;
|
|
1424
|
-
color: #333;
|
|
1425
|
-
}
|
|
1426
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell .e-more-indicator {
|
|
1427
|
-
color: #333;
|
|
1428
|
-
}
|
|
1429
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell:hover {
|
|
1430
|
-
background-color: #b7e0ff;
|
|
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
1503
|
.e-schedule .e-timeline-year-view .e-content-table {
|
|
1446
1504
|
height: 100%;
|
|
1447
1505
|
}
|
|
@@ -1468,6 +1526,7 @@
|
|
|
1468
1526
|
border-bottom: 1px solid #d0d0d0;
|
|
1469
1527
|
border-right: 1px solid #d0d0d0;
|
|
1470
1528
|
text-align: center;
|
|
1529
|
+
color: #767676;
|
|
1471
1530
|
}
|
|
1472
1531
|
.e-schedule .e-timeline-year-view .e-month-header.e-current-day {
|
|
1473
1532
|
color: #0078d6;
|
|
@@ -1503,13 +1562,6 @@
|
|
|
1503
1562
|
.e-schedule .e-timeline-year-view .e-work-cells .e-date-header:hover {
|
|
1504
1563
|
text-decoration: underline;
|
|
1505
1564
|
}
|
|
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 #f8f8f8;
|
|
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
1565
|
.e-schedule .e-timeline-year-view .e-event-table {
|
|
1514
1566
|
position: absolute;
|
|
1515
1567
|
top: 0;
|
|
@@ -1606,7 +1658,7 @@
|
|
|
1606
1658
|
.e-schedule .e-timeline-year-view .e-event-table .e-more-indicator:focus {
|
|
1607
1659
|
text-decoration: underline;
|
|
1608
1660
|
}
|
|
1609
|
-
.e-schedule.e-device .e-year-view .e-month-calendar {
|
|
1661
|
+
.e-schedule.e-device .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
|
|
1610
1662
|
max-width: 100%;
|
|
1611
1663
|
min-width: 100%;
|
|
1612
1664
|
}
|
|
@@ -1648,6 +1700,7 @@
|
|
|
1648
1700
|
}
|
|
1649
1701
|
.e-schedule .e-timeline-view .e-date-header-wrap table tbody td.e-time-slots,
|
|
1650
1702
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table tbody td.e-time-slots {
|
|
1703
|
+
background-color: #fff;
|
|
1651
1704
|
overflow: inherit;
|
|
1652
1705
|
}
|
|
1653
1706
|
.e-schedule .e-timeline-view .e-date-header-wrap table tbody td > span,
|
|
@@ -1973,6 +2026,7 @@
|
|
|
1973
2026
|
.e-schedule .e-month-agenda-view .e-content-table {
|
|
1974
2027
|
border-bottom: 1px solid #d0d0d0;
|
|
1975
2028
|
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
|
|
2029
|
+
height: 100%;
|
|
1976
2030
|
}
|
|
1977
2031
|
.e-schedule .e-month-agenda-view .e-resource-column {
|
|
1978
2032
|
border-bottom: 1px solid #d0d0d0;
|
|
@@ -2189,6 +2243,7 @@
|
|
|
2189
2243
|
.e-schedule .e-agenda-view .e-subject-wrap {
|
|
2190
2244
|
display: -ms-flexbox;
|
|
2191
2245
|
display: flex;
|
|
2246
|
+
margin-bottom: 0;
|
|
2192
2247
|
}
|
|
2193
2248
|
.e-schedule .e-agenda-view .e-active-appointment-agenda .e-subject {
|
|
2194
2249
|
color: #333;
|
|
@@ -2342,6 +2397,10 @@
|
|
|
2342
2397
|
min-width: 32px;
|
|
2343
2398
|
z-index: 0;
|
|
2344
2399
|
}
|
|
2400
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-item .e-btn.e-tbar-btn .e-icons.e-btn-icon,
|
|
2401
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-item .e-btn.e-tbar-btn .e-icons.e-btn-icon {
|
|
2402
|
+
font-size: 14px;
|
|
2403
|
+
}
|
|
2345
2404
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-item .e-tbar-btn-text,
|
|
2346
2405
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-item .e-tbar-btn-text {
|
|
2347
2406
|
line-height: inherit;
|
|
@@ -2383,13 +2442,19 @@
|
|
|
2383
2442
|
.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
2443
|
.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
2444
|
.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:
|
|
2445
|
+
padding: 0 12px 0 0;
|
|
2446
|
+
font-size: 14px;
|
|
2387
2447
|
}
|
|
2388
2448
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn .e-btn-icon,
|
|
2389
2449
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-btn-icon,
|
|
2390
2450
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn .e-btn-icon,
|
|
2391
2451
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-btn-icon {
|
|
2392
2452
|
height: 25px;
|
|
2453
|
+
padding-top: 0;
|
|
2454
|
+
}
|
|
2455
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-tbar-btn-text,
|
|
2456
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-tbar-btn-text {
|
|
2457
|
+
font-size: 16px;
|
|
2393
2458
|
}
|
|
2394
2459
|
.e-bigger .e-schedule .e-more-popup-wrapper .e-header-day,
|
|
2395
2460
|
.e-bigger.e-schedule .e-more-popup-wrapper .e-header-day {
|
|
@@ -2781,9 +2846,6 @@
|
|
|
2781
2846
|
.e-bigger .e-schedule-dialog .e-input-group .e-input-group-icon.e-icon-disable {
|
|
2782
2847
|
display: none;
|
|
2783
2848
|
}
|
|
2784
|
-
.e-bigger .e-schedule-dialog .e-footer-content {
|
|
2785
|
-
padding-right: 26px;
|
|
2786
|
-
}
|
|
2787
2849
|
.e-bigger .e-schedule-dialog.e-rtl .e-all-day-container {
|
|
2788
2850
|
margin-left: 20px;
|
|
2789
2851
|
margin-right: 0;
|
|
@@ -2954,6 +3016,7 @@
|
|
|
2954
3016
|
position: absolute;
|
|
2955
3017
|
right: 6px;
|
|
2956
3018
|
top: 4px;
|
|
3019
|
+
padding: 0;
|
|
2957
3020
|
}
|
|
2958
3021
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-edit,
|
|
2959
3022
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-delete,
|
|
@@ -2980,12 +3043,15 @@
|
|
|
2980
3043
|
width: 100%;
|
|
2981
3044
|
}
|
|
2982
3045
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-schedule-form > span {
|
|
2983
|
-
margin
|
|
3046
|
+
margin: 0 0 4px;
|
|
2984
3047
|
}
|
|
2985
3048
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
2986
3049
|
font-size: 22px;
|
|
2987
3050
|
height: 40px;
|
|
2988
3051
|
}
|
|
3052
|
+
.e-quick-popup-wrapper .e-event-popup .e-popup-header {
|
|
3053
|
+
background-color: #fff;
|
|
3054
|
+
}
|
|
2989
3055
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper {
|
|
2990
3056
|
padding: 5px 5px 2px;
|
|
2991
3057
|
}
|
|
@@ -3029,13 +3095,15 @@
|
|
|
3029
3095
|
padding: 0 18px 8px;
|
|
3030
3096
|
}
|
|
3031
3097
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-subject-wrap .e-subject {
|
|
3098
|
+
background-color: rgba(0, 120, 214, 0.3);
|
|
3099
|
+
border-left: 6px solid #0078d6;
|
|
3100
|
+
border-radius: 2px;
|
|
3101
|
+
color: #333;
|
|
3032
3102
|
cursor: default;
|
|
3033
3103
|
font-size: 20px;
|
|
3034
3104
|
font-weight: 500;
|
|
3035
3105
|
line-height: 1.5;
|
|
3036
3106
|
max-height: 87px;
|
|
3037
|
-
background-color: rgba(0, 120, 214, 0.3);
|
|
3038
|
-
border-left: 6px solid #0078d6;
|
|
3039
3107
|
padding: 8px 0 8px 10px;
|
|
3040
3108
|
}
|
|
3041
3109
|
.e-quick-popup-wrapper .e-event-popup .e-popup-content {
|
|
@@ -3084,8 +3152,7 @@
|
|
|
3084
3152
|
.e-quick-popup-wrapper .e-event-popup .e-resource-icon {
|
|
3085
3153
|
color: #767676;
|
|
3086
3154
|
font-size: 18px;
|
|
3087
|
-
padding
|
|
3088
|
-
padding-top: 4px;
|
|
3155
|
+
padding: 4px 13px 0 0;
|
|
3089
3156
|
}
|
|
3090
3157
|
.e-quick-popup-wrapper .e-cell-popup .e-date-time-details,
|
|
3091
3158
|
.e-quick-popup-wrapper .e-cell-popup .e-location-details,
|
|
@@ -3115,7 +3182,6 @@
|
|
|
3115
3182
|
.e-quick-popup-wrapper .e-popup-footer .e-event-edit,
|
|
3116
3183
|
.e-quick-popup-wrapper .e-popup-footer .e-event-delete {
|
|
3117
3184
|
right: auto;
|
|
3118
|
-
margin-right: 8px;
|
|
3119
3185
|
}
|
|
3120
3186
|
.e-quick-popup-wrapper .e-popup-footer .e-event-edit:disabled,
|
|
3121
3187
|
.e-quick-popup-wrapper .e-popup-footer .e-event-delete:disabled {
|
|
@@ -3127,6 +3193,9 @@
|
|
|
3127
3193
|
right: auto;
|
|
3128
3194
|
text-transform: capitalize;
|
|
3129
3195
|
}
|
|
3196
|
+
.e-quick-popup-wrapper .e-event-popup .e-popup-footer {
|
|
3197
|
+
display: block;
|
|
3198
|
+
}
|
|
3130
3199
|
.e-quick-popup-wrapper.e-rtl {
|
|
3131
3200
|
text-align: right;
|
|
3132
3201
|
}
|
|
@@ -3134,10 +3203,6 @@
|
|
|
3134
3203
|
left: 6px;
|
|
3135
3204
|
right: auto;
|
|
3136
3205
|
}
|
|
3137
|
-
.e-quick-popup-wrapper.e-rtl .e-cell-popup .e-popup-footer {
|
|
3138
|
-
padding: 8px 18px 8px 8px;
|
|
3139
|
-
text-align: left;
|
|
3140
|
-
}
|
|
3141
3206
|
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3142
3207
|
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3143
3208
|
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
@@ -3145,9 +3210,17 @@
|
|
|
3145
3210
|
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3146
3211
|
margin-right: 10px;
|
|
3147
3212
|
}
|
|
3148
|
-
.e-quick-popup-wrapper.e-rtl .e-event-details
|
|
3213
|
+
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3214
|
+
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3149
3215
|
margin-left: 8px;
|
|
3150
3216
|
}
|
|
3217
|
+
.e-quick-popup-wrapper.e-rtl .e-popup-footer {
|
|
3218
|
+
padding: 8px 8px 8px 18px;
|
|
3219
|
+
text-align: left;
|
|
3220
|
+
}
|
|
3221
|
+
.e-quick-popup-wrapper.e-rtl .e-date-time-icon {
|
|
3222
|
+
padding: 0 0 0 10px;
|
|
3223
|
+
}
|
|
3151
3224
|
.e-quick-popup-wrapper.e-device {
|
|
3152
3225
|
bottom: 0;
|
|
3153
3226
|
height: 100%;
|
|
@@ -3204,6 +3277,7 @@
|
|
|
3204
3277
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-delete {
|
|
3205
3278
|
background-color: transparent;
|
|
3206
3279
|
border: 0;
|
|
3280
|
+
color: #333;
|
|
3207
3281
|
height: 40px;
|
|
3208
3282
|
width: 40px;
|
|
3209
3283
|
}
|
|
@@ -3235,6 +3309,25 @@
|
|
|
3235
3309
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
3236
3310
|
font-size: 24px;
|
|
3237
3311
|
}
|
|
3312
|
+
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content {
|
|
3313
|
+
padding: 38px 18px 12px;
|
|
3314
|
+
}
|
|
3315
|
+
.e-bigger .e-quick-popup-wrapper .e-popup-footer {
|
|
3316
|
+
padding: 8px 18px 8px 22px;
|
|
3317
|
+
}
|
|
3318
|
+
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-date-time-icon,
|
|
3319
|
+
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-date-time-icon {
|
|
3320
|
+
padding-right: 13px;
|
|
3321
|
+
}
|
|
3322
|
+
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close .e-close-icon {
|
|
3323
|
+
font-size: 16px;
|
|
3324
|
+
}
|
|
3325
|
+
.e-bigger .e-quick-popup-wrapper.e-rtl .e-cell-popup .e-date-time-icon {
|
|
3326
|
+
padding-right: 0;
|
|
3327
|
+
}
|
|
3328
|
+
.e-bigger .e-quick-popup-wrapper.e-rtl .e-event-popup .e-date-time-icon {
|
|
3329
|
+
padding-right: 13px;
|
|
3330
|
+
}
|
|
3238
3331
|
.e-bigger .e-quick-popup-wrapper .e-edit.e-btn.e-small.e-round,
|
|
3239
3332
|
.e-bigger .e-quick-popup-wrapper .e-delete.e-btn.e-small.e-round,
|
|
3240
3333
|
.e-bigger .e-quick-popup-wrapper .e-close.e-btn.e-small.e-round {
|
|
@@ -3255,6 +3348,35 @@
|
|
|
3255
3348
|
padding: 0 5px 0 8px;
|
|
3256
3349
|
}
|
|
3257
3350
|
|
|
3351
|
+
.e-bigger .e-agenda-view .e-appointment {
|
|
3352
|
+
padding: 0 8px;
|
|
3353
|
+
}
|
|
3354
|
+
.e-bigger .e-agenda-view .e-subject {
|
|
3355
|
+
font-size: 16px;
|
|
3356
|
+
}
|
|
3357
|
+
.e-bigger .e-agenda-view .e-date-time {
|
|
3358
|
+
font-size: 14px;
|
|
3359
|
+
}
|
|
3360
|
+
.e-bigger .e-agenda-view .e-day-date-header .e-m-date {
|
|
3361
|
+
font-size: 20px;
|
|
3362
|
+
}
|
|
3363
|
+
.e-bigger .e-agenda-view .e-day-date-header .e-m-day {
|
|
3364
|
+
font-size: 14px;
|
|
3365
|
+
}
|
|
3366
|
+
|
|
3367
|
+
.e-bigger .e-timeline-view .e-resource-text {
|
|
3368
|
+
font-size: 14px;
|
|
3369
|
+
padding-left: 12px;
|
|
3370
|
+
}
|
|
3371
|
+
.e-bigger .e-timeline-view .e-navigate {
|
|
3372
|
+
font-size: 18px;
|
|
3373
|
+
padding: 8px 0 8px 8px;
|
|
3374
|
+
}
|
|
3375
|
+
.e-bigger .e-timeline-view .e-date-header-wrap table tbody td > span {
|
|
3376
|
+
font-size: 18px;
|
|
3377
|
+
padding: 8px 0 8px 8px;
|
|
3378
|
+
}
|
|
3379
|
+
|
|
3258
3380
|
.e-appointment.e-schedule-event-clone {
|
|
3259
3381
|
background: #0078d6;
|
|
3260
3382
|
border-radius: 2px;
|
|
@@ -3357,8 +3479,7 @@
|
|
|
3357
3479
|
height: calc(100% - 35px);
|
|
3358
3480
|
max-height: 150px;
|
|
3359
3481
|
overflow-y: auto;
|
|
3360
|
-
padding
|
|
3361
|
-
padding-right: 10px;
|
|
3482
|
+
padding: 10px 10px 0;
|
|
3362
3483
|
}
|
|
3363
3484
|
.e-bigger .e-more-popup-wrapper .e-more-event-content .e-appointment-border,
|
|
3364
3485
|
.e-more-popup-wrapper .e-more-event-content .e-appointment-border {
|
|
@@ -3405,6 +3526,7 @@
|
|
|
3405
3526
|
color: #767676;
|
|
3406
3527
|
cursor: pointer;
|
|
3407
3528
|
height: 25px;
|
|
3529
|
+
padding: unset;
|
|
3408
3530
|
position: absolute;
|
|
3409
3531
|
right: 6px;
|
|
3410
3532
|
width: 25px;
|
|
@@ -3479,6 +3601,14 @@
|
|
|
3479
3601
|
.e-more-popup-wrapper.e-device .e-more-event-content {
|
|
3480
3602
|
max-height: unset;
|
|
3481
3603
|
}
|
|
3604
|
+
.e-bigger .e-more-popup-wrapper.e-rtl .e-header-date,
|
|
3605
|
+
.e-more-popup-wrapper.e-rtl .e-header-date {
|
|
3606
|
+
padding-right: 10px;
|
|
3607
|
+
}
|
|
3608
|
+
.e-bigger .e-more-popup-wrapper.e-rtl .e-header-day,
|
|
3609
|
+
.e-more-popup-wrapper.e-rtl .e-header-day {
|
|
3610
|
+
padding-right: 10px;
|
|
3611
|
+
}
|
|
3482
3612
|
.e-bigger .e-more-popup-wrapper.e-rtl .e-more-event-close,
|
|
3483
3613
|
.e-more-popup-wrapper.e-rtl .e-more-event-close {
|
|
3484
3614
|
left: 6px;
|
|
@@ -3496,6 +3626,10 @@
|
|
|
3496
3626
|
border-width: 0;
|
|
3497
3627
|
position: relative;
|
|
3498
3628
|
}
|
|
3629
|
+
.e-schedule .e-header-calendar {
|
|
3630
|
+
background-color: none;
|
|
3631
|
+
box-shadow: none;
|
|
3632
|
+
}
|
|
3499
3633
|
.e-schedule .e-vertical-view .e-date-header-wrap table tbody td:first-child,
|
|
3500
3634
|
.e-schedule .e-vertical-view .e-content-wrap table td:first-child {
|
|
3501
3635
|
border-left-width: 0;
|
|
@@ -3555,6 +3689,7 @@
|
|
|
3555
3689
|
}
|
|
3556
3690
|
.e-schedule .e-vertical-view .e-header-cells.e-current-day {
|
|
3557
3691
|
color: #0078d6;
|
|
3692
|
+
font-weight: normal;
|
|
3558
3693
|
}
|
|
3559
3694
|
.e-schedule .e-vertical-view .e-work-cells {
|
|
3560
3695
|
background-color: #f8f8f8;
|
|
@@ -3585,6 +3720,7 @@
|
|
|
3585
3720
|
}
|
|
3586
3721
|
.e-schedule .e-vertical-view .e-all-day-cells.e-selected-cell:hover {
|
|
3587
3722
|
background-color: #b7e0ff;
|
|
3723
|
+
color: #333;
|
|
3588
3724
|
}
|
|
3589
3725
|
.e-schedule .e-vertical-view .e-selected-cell {
|
|
3590
3726
|
background-color: #b7e0ff;
|
|
@@ -3592,6 +3728,7 @@
|
|
|
3592
3728
|
}
|
|
3593
3729
|
.e-schedule .e-vertical-view .e-selected-cell:hover {
|
|
3594
3730
|
background-color: #b7e0ff;
|
|
3731
|
+
color: #333;
|
|
3595
3732
|
}
|
|
3596
3733
|
.e-schedule .e-vertical-view .e-clone-time-indicator,
|
|
3597
3734
|
.e-schedule .e-vertical-view .e-current-time {
|
|
@@ -3617,11 +3754,14 @@
|
|
|
3617
3754
|
border-style: solid;
|
|
3618
3755
|
border-width: 0 0 1px;
|
|
3619
3756
|
color: #767676;
|
|
3757
|
+
font-size: none;
|
|
3620
3758
|
text-align: left;
|
|
3759
|
+
text-transform: none;
|
|
3621
3760
|
}
|
|
3622
3761
|
.e-schedule .e-month-view .e-date-header-wrap table td.e-current-day,
|
|
3623
3762
|
.e-schedule .e-month-agenda-view .e-date-header-wrap table td.e-current-day {
|
|
3624
3763
|
color: #0078d6;
|
|
3764
|
+
font-weight: normal;
|
|
3625
3765
|
}
|
|
3626
3766
|
.e-schedule .e-month-view .e-work-cells,
|
|
3627
3767
|
.e-schedule .e-month-agenda-view .e-work-cells {
|
|
@@ -3657,6 +3797,10 @@
|
|
|
3657
3797
|
background-color: #b7e0ff;
|
|
3658
3798
|
color: #333;
|
|
3659
3799
|
}
|
|
3800
|
+
.e-schedule .e-month-view .e-selected-cell .e-date-header,
|
|
3801
|
+
.e-schedule .e-month-agenda-view .e-selected-cell .e-date-header {
|
|
3802
|
+
color: none;
|
|
3803
|
+
}
|
|
3660
3804
|
.e-schedule .e-month-view .e-selected-cell .e-more-indicator,
|
|
3661
3805
|
.e-schedule .e-month-agenda-view .e-selected-cell .e-more-indicator {
|
|
3662
3806
|
color: #333;
|
|
@@ -3665,6 +3809,9 @@
|
|
|
3665
3809
|
.e-schedule .e-month-agenda-view .e-selected-cell:hover {
|
|
3666
3810
|
background-color: #b7e0ff;
|
|
3667
3811
|
}
|
|
3812
|
+
.e-schedule .e-month-agenda-view .e-content-wrap .e-table-container {
|
|
3813
|
+
overflow: auto;
|
|
3814
|
+
}
|
|
3668
3815
|
.e-schedule .e-month-agenda-view .e-date-header-wrap table td {
|
|
3669
3816
|
border-width: 0 0 1px 0;
|
|
3670
3817
|
text-align: center;
|
|
@@ -3696,6 +3843,7 @@
|
|
|
3696
3843
|
.e-schedule .e-timeline-view .e-date-header-wrap table td.e-current-day,
|
|
3697
3844
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table td.e-current-day {
|
|
3698
3845
|
color: #0078d6;
|
|
3846
|
+
font-weight: normal;
|
|
3699
3847
|
}
|
|
3700
3848
|
.e-schedule .e-timeline-view .e-work-cells,
|
|
3701
3849
|
.e-schedule .e-timeline-month-view .e-work-cells {
|
|
@@ -3759,6 +3907,64 @@
|
|
|
3759
3907
|
.e-schedule .e-timeline-view .e-current-timeline {
|
|
3760
3908
|
border-left: 1px solid #0078d6;
|
|
3761
3909
|
}
|
|
3910
|
+
.e-schedule .e-timeline-year-view .e-work-cells {
|
|
3911
|
+
background-color: #f8f8f8;
|
|
3912
|
+
border-color: #d0d0d0;
|
|
3913
|
+
border-style: solid;
|
|
3914
|
+
border-width: 0 1px 1px 0;
|
|
3915
|
+
color: #333;
|
|
3916
|
+
padding: 0;
|
|
3917
|
+
}
|
|
3918
|
+
.e-schedule .e-timeline-year-view .e-work-cells:hover:not(.e-other-month) {
|
|
3919
|
+
background: #eaeaea;
|
|
3920
|
+
color: #333;
|
|
3921
|
+
}
|
|
3922
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-work-days {
|
|
3923
|
+
background-color: #fff;
|
|
3924
|
+
}
|
|
3925
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-other-month {
|
|
3926
|
+
color: #767676;
|
|
3927
|
+
}
|
|
3928
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-current-day .e-date-header {
|
|
3929
|
+
background-color: #0078d6;
|
|
3930
|
+
border-radius: 50%;
|
|
3931
|
+
color: #fff;
|
|
3932
|
+
margin: 2px;
|
|
3933
|
+
width: 20px;
|
|
3934
|
+
}
|
|
3935
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell {
|
|
3936
|
+
background-color: #b7e0ff;
|
|
3937
|
+
color: #333;
|
|
3938
|
+
}
|
|
3939
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell .e-date-header {
|
|
3940
|
+
color: #333;
|
|
3941
|
+
}
|
|
3942
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell .e-more-indicator {
|
|
3943
|
+
color: #333;
|
|
3944
|
+
}
|
|
3945
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell:hover {
|
|
3946
|
+
background-color: #b7e0ff;
|
|
3947
|
+
}
|
|
3948
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates {
|
|
3949
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
3950
|
+
}
|
|
3951
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header {
|
|
3952
|
+
cursor: default;
|
|
3953
|
+
opacity: 0.35;
|
|
3954
|
+
}
|
|
3955
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header:hover {
|
|
3956
|
+
text-decoration: none;
|
|
3957
|
+
}
|
|
3958
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates:hover {
|
|
3959
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
3960
|
+
}
|
|
3961
|
+
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
|
|
3962
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
3963
|
+
box-shadow: inset 0 0 0 8px #f8f8f8;
|
|
3964
|
+
}
|
|
3965
|
+
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
|
|
3966
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
3967
|
+
}
|
|
3762
3968
|
.e-schedule.e-rtl .e-vertical-view .e-date-header-wrap table tbody td:first-child,
|
|
3763
3969
|
.e-schedule.e-rtl .e-vertical-view .e-content-wrap table td:first-child {
|
|
3764
3970
|
border-right-width: 0;
|
|
@@ -3851,8 +4057,7 @@
|
|
|
3851
4057
|
display: flex;
|
|
3852
4058
|
-ms-flex-flow: row wrap;
|
|
3853
4059
|
flex-flow: row wrap;
|
|
3854
|
-
margin
|
|
3855
|
-
margin-right: auto;
|
|
4060
|
+
margin: 0 auto;
|
|
3856
4061
|
max-width: 1240px;
|
|
3857
4062
|
}
|
|
3858
4063
|
.e-recurrenceeditor .e-recurrence-table {
|
|
@@ -3893,7 +4098,7 @@
|
|
|
3893
4098
|
}
|
|
3894
4099
|
.e-recurrenceeditor .e-form-right,
|
|
3895
4100
|
.e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
3896
|
-
padding: 0 0 10px
|
|
4101
|
+
padding: 0 0 10px;
|
|
3897
4102
|
}
|
|
3898
4103
|
.e-recurrenceeditor .e-input-wrapper {
|
|
3899
4104
|
float: left;
|
|
@@ -3934,13 +4139,11 @@
|
|
|
3934
4139
|
margin-bottom: 5px;
|
|
3935
4140
|
}
|
|
3936
4141
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
3937
|
-
padding
|
|
3938
|
-
padding-right: 0;
|
|
4142
|
+
padding: 0 0 0 8px;
|
|
3939
4143
|
}
|
|
3940
4144
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
3941
4145
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
3942
|
-
padding
|
|
3943
|
-
padding-right: 8px;
|
|
4146
|
+
padding: 0 8px 0 0;
|
|
3944
4147
|
}
|
|
3945
4148
|
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
3946
4149
|
width: 30px;
|
|
@@ -3968,10 +4171,10 @@
|
|
|
3968
4171
|
margin-bottom: 11px;
|
|
3969
4172
|
}
|
|
3970
4173
|
.e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper {
|
|
3971
|
-
|
|
4174
|
+
padding-bottom: 11px;
|
|
3972
4175
|
}
|
|
3973
4176
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper {
|
|
3974
|
-
|
|
4177
|
+
padding-top: 3px;
|
|
3975
4178
|
}
|
|
3976
4179
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
|
|
3977
4180
|
display: none;
|
|
@@ -4021,7 +4224,7 @@
|
|
|
4021
4224
|
}
|
|
4022
4225
|
.e-bigger .e-recurrenceeditor .e-form-right,
|
|
4023
4226
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
4024
|
-
padding: 0 0 10px
|
|
4227
|
+
padding: 0 0 10px;
|
|
4025
4228
|
}
|
|
4026
4229
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
|
|
4027
4230
|
padding-bottom: 6px;
|
|
@@ -4080,8 +4283,7 @@
|
|
|
4080
4283
|
}
|
|
4081
4284
|
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element,
|
|
4082
4285
|
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
4083
|
-
padding
|
|
4084
|
-
padding-right: 64px;
|
|
4286
|
+
padding: 0 64px 0 0;
|
|
4085
4287
|
}
|
|
4086
4288
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
|
|
4087
4289
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
@@ -4091,13 +4293,11 @@
|
|
|
4091
4293
|
margin-bottom: 5px;
|
|
4092
4294
|
}
|
|
4093
4295
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4094
|
-
padding
|
|
4095
|
-
padding-right: 0;
|
|
4296
|
+
padding: 0 0 0 12px;
|
|
4096
4297
|
}
|
|
4097
4298
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
4098
4299
|
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
4099
|
-
padding
|
|
4100
|
-
padding-right: 12px;
|
|
4300
|
+
padding: 0 12px 0 0;
|
|
4101
4301
|
}
|
|
4102
4302
|
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
|
|
4103
4303
|
left: 0;
|
|
@@ -4129,8 +4329,7 @@
|
|
|
4129
4329
|
}
|
|
4130
4330
|
.e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
|
|
4131
4331
|
.e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
|
|
4132
|
-
padding
|
|
4133
|
-
padding-right: 0;
|
|
4332
|
+
padding: 0 0 0 10px;
|
|
4134
4333
|
}
|
|
4135
4334
|
.e-device .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4136
4335
|
padding-right: 10px;
|
|
@@ -4151,23 +4350,25 @@
|
|
|
4151
4350
|
.e-device .e-recurrenceeditor .e-recurrence-table .e-day-position {
|
|
4152
4351
|
padding-left: 20px;
|
|
4153
4352
|
}
|
|
4353
|
+
.e-device .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
4354
|
+
margin-left: 20px;
|
|
4355
|
+
}
|
|
4154
4356
|
.e-device .e-recurrenceeditor .e-week-position {
|
|
4155
4357
|
right: 0;
|
|
4358
|
+
padding-right: 10px;
|
|
4156
4359
|
}
|
|
4157
4360
|
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4158
4361
|
padding-right: 0;
|
|
4159
4362
|
}
|
|
4160
4363
|
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
4161
4364
|
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
4162
|
-
padding
|
|
4163
|
-
padding-right: 10px;
|
|
4365
|
+
padding: 0 10px 0 0;
|
|
4164
4366
|
}
|
|
4165
4367
|
.e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
4166
|
-
padding
|
|
4368
|
+
padding: 0 20px 0 0;
|
|
4167
4369
|
}
|
|
4168
4370
|
.e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
4169
|
-
padding
|
|
4170
|
-
padding-left: 0;
|
|
4371
|
+
padding: 0 50px 0 0;
|
|
4171
4372
|
}
|
|
4172
4373
|
.e-device .e-recurrenceeditor.e-rtl .e-week-position {
|
|
4173
4374
|
left: 0;
|
|
@@ -4184,6 +4385,14 @@
|
|
|
4184
4385
|
padding: 16px 8px;
|
|
4185
4386
|
}
|
|
4186
4387
|
|
|
4388
|
+
@media (max-width: 1024px) {
|
|
4389
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on {
|
|
4390
|
+
width: 100%;
|
|
4391
|
+
}
|
|
4392
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
|
|
4393
|
+
width: 65%;
|
|
4394
|
+
}
|
|
4395
|
+
}
|
|
4187
4396
|
@media (max-width: 580px) {
|
|
4188
4397
|
.e-recurrenceeditor {
|
|
4189
4398
|
margin-left: auto;
|
|
@@ -4219,8 +4428,7 @@
|
|
|
4219
4428
|
}
|
|
4220
4429
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
|
|
4221
4430
|
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
|
|
4222
|
-
padding
|
|
4223
|
-
padding-right: 0;
|
|
4431
|
+
padding: 0 0 0 10px;
|
|
4224
4432
|
}
|
|
4225
4433
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4226
4434
|
padding-right: 10px;
|
|
@@ -4233,15 +4441,17 @@
|
|
|
4233
4441
|
width: 100%;
|
|
4234
4442
|
}
|
|
4235
4443
|
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
|
|
4236
|
-
width:
|
|
4444
|
+
width: 65%;
|
|
4445
|
+
}
|
|
4446
|
+
.e-recurrenceeditor .e-editor .e-recurrence-table .e-day-position {
|
|
4447
|
+
padding-left: 50px;
|
|
4237
4448
|
}
|
|
4238
4449
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4239
4450
|
padding-right: 0;
|
|
4240
4451
|
}
|
|
4241
4452
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
4242
4453
|
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
4243
|
-
padding
|
|
4244
|
-
padding-right: 10px;
|
|
4454
|
+
padding: 0 10px 0 0;
|
|
4245
4455
|
}
|
|
4246
4456
|
}
|
|
4247
4457
|
/*! Recurrence-Editor component theme */
|