@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
|
@@ -1,3 +1,182 @@
|
|
|
1
|
+
/* stylelint-disable */
|
|
2
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
3
|
+
.e-bigger .e-ddl.e-popup .e-input-group .e-clear-icon {
|
|
4
|
+
height: 36px;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-popup.e-ddl .e-dropdownbase {
|
|
8
|
+
min-height: 26px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.e-ddl.e-popup {
|
|
12
|
+
border: 0;
|
|
13
|
+
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
|
|
14
|
+
margin-top: 1px;
|
|
15
|
+
}
|
|
16
|
+
.e-ddl.e-popup .e-content.e-nodata {
|
|
17
|
+
background-color: #fff;
|
|
18
|
+
}
|
|
19
|
+
.e-ddl.e-popup .e-dropdownbase .e-list-item .e-highlight {
|
|
20
|
+
color: #23726c;
|
|
21
|
+
}
|
|
22
|
+
.e-ddl.e-popup .e-input-group {
|
|
23
|
+
display: -ms-flexbox;
|
|
24
|
+
display: flex;
|
|
25
|
+
width: auto;
|
|
26
|
+
}
|
|
27
|
+
.e-ddl.e-popup .e-input-group input {
|
|
28
|
+
line-height: 15px;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.e-ddl.e-popup .e-input-group .e-clear-icon {
|
|
32
|
+
border-radius: 20px;
|
|
33
|
+
height: 20px;
|
|
34
|
+
margin: 5px;
|
|
35
|
+
min-width: 20px;
|
|
36
|
+
}
|
|
37
|
+
.e-ddl.e-popup .e-input-group .e-clear-icon::before {
|
|
38
|
+
font-size: 10px;
|
|
39
|
+
}
|
|
40
|
+
.e-ddl.e-popup .e-filter-parent {
|
|
41
|
+
border-left-width: 0;
|
|
42
|
+
border-right-width: 0;
|
|
43
|
+
}
|
|
44
|
+
.e-ddl.e-popup .e-filter-parent .e-input-group.e-control-wrapper:hover:active {
|
|
45
|
+
border-color: #000;
|
|
46
|
+
}
|
|
47
|
+
.e-bigger .e-ddl.e-popup.e-ddl-device.e-ddl-device-filter {
|
|
48
|
+
margin-top: 0;
|
|
49
|
+
}
|
|
50
|
+
.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 {
|
|
51
|
+
font-size: 15px;
|
|
52
|
+
line-height: 45px;
|
|
53
|
+
padding-left: 0;
|
|
54
|
+
text-indent: 16px;
|
|
55
|
+
}
|
|
56
|
+
.e-bigger .e-ddl.e-popup .e-dd-group .e-list-item {
|
|
57
|
+
padding-left: 4px;
|
|
58
|
+
}
|
|
59
|
+
.e-bigger .e-ddl.e-popup .e-input-group {
|
|
60
|
+
padding: 4px 0;
|
|
61
|
+
}
|
|
62
|
+
.e-bigger .e-ddl.e-popup .e-input-group input {
|
|
63
|
+
height: 30px;
|
|
64
|
+
}
|
|
65
|
+
.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 {
|
|
66
|
+
font-size: 14px;
|
|
67
|
+
line-height: 40px;
|
|
68
|
+
padding-left: 0;
|
|
69
|
+
text-indent: 16px;
|
|
70
|
+
}
|
|
71
|
+
.e-bigger.e-small .e-ddl.e-popup .e-dd-group .e-list-item {
|
|
72
|
+
padding-left: 4px;
|
|
73
|
+
}
|
|
74
|
+
.e-bigger.e-small .e-ddl.e-popup .e-input-group {
|
|
75
|
+
padding: 0;
|
|
76
|
+
}
|
|
77
|
+
.e-bigger.e-small .e-ddl.e-popup .e-input-group input {
|
|
78
|
+
height: 34px;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.e-multi-select-wrapper .e-chips-close.e-close-hooker::before {
|
|
82
|
+
color: #000;
|
|
83
|
+
top: 12px;
|
|
84
|
+
}
|
|
85
|
+
.e-multiselect .e-multi-select-wrapper input {
|
|
86
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
87
|
+
}
|
|
88
|
+
.e-multiselect .e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
89
|
+
color: #4f4f4f;
|
|
90
|
+
font-family: inherit;
|
|
91
|
+
font-size: 14px;
|
|
92
|
+
font-style: italic;
|
|
93
|
+
}
|
|
94
|
+
.e-multiselect .e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
95
|
+
color: #4f4f4f;
|
|
96
|
+
font-family: inherit;
|
|
97
|
+
font-size: 14px;
|
|
98
|
+
font-style: italic;
|
|
99
|
+
}
|
|
100
|
+
.e-multiselect .e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
101
|
+
color: #4f4f4f;
|
|
102
|
+
font-family: inherit;
|
|
103
|
+
font-size: 14px;
|
|
104
|
+
font-style: italic;
|
|
105
|
+
}
|
|
106
|
+
.e-multiselect .e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
107
|
+
color: #4f4f4f;
|
|
108
|
+
font-family: inherit;
|
|
109
|
+
font-size: 14px;
|
|
110
|
+
font-style: italic;
|
|
111
|
+
}
|
|
112
|
+
.e-multi-select-wrapper .e-chips-collection .e-chips:hover .e-chipcontent {
|
|
113
|
+
color: #000;
|
|
114
|
+
}
|
|
115
|
+
.e-multi-select-wrapper .e-chips-collection .e-chips:hover .e-chips-close.e-icon::before {
|
|
116
|
+
color: #000;
|
|
117
|
+
}
|
|
118
|
+
.e-multi-select-wrapper .e-chips-collection .e-chips .e-chips-close.e-icon::before {
|
|
119
|
+
line-height: 26px;
|
|
120
|
+
top: 0;
|
|
121
|
+
}
|
|
122
|
+
.e-multi-select-wrapper .e-delim-values.e-delim-view {
|
|
123
|
+
color: #000;
|
|
124
|
+
}
|
|
125
|
+
.e-multi-select-wrapper.e-delimiter .e-delim-values {
|
|
126
|
+
color: #000;
|
|
127
|
+
}
|
|
128
|
+
.e-multi-select-wrapper .e-searcher input[type=text] {
|
|
129
|
+
color: #000;
|
|
130
|
+
height: 100%;
|
|
131
|
+
min-height: 28px;
|
|
132
|
+
}
|
|
133
|
+
.e-multi-select-wrapper .e-searcher input[type=text]::selection {
|
|
134
|
+
background-color: #400074;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.e-popup.e-multi-select-list-wrapper.e-ddl.e-checkbox .e-filter-parent .e-clear-icon, .e-bigger .e-popup.e-multi-select-list-wrapper.e-ddl.e-checkbox .e-filter-parent .e-clear-icon {
|
|
138
|
+
padding-left: 0;
|
|
139
|
+
}
|
|
140
|
+
.e-popup.e-multi-select-list-wrapper.e-checkbox .e-selectall-parent {
|
|
141
|
+
border-bottom: 1px solid #000;
|
|
142
|
+
}
|
|
143
|
+
.e-popup.e-multi-select-list-wrapper.e-checkbox .e-list-parent .e-list-item.e-item-focus.e-active.e-hover {
|
|
144
|
+
background-color: #400074;
|
|
145
|
+
}
|
|
146
|
+
.e-popup.e-multi-select-list-wrapper.e-checkbox .e-list-parent .e-list-item.e-item-focus.e-active {
|
|
147
|
+
border: 2px solid #400074;
|
|
148
|
+
}
|
|
149
|
+
.e-popup.e-multi-select-list-wrapper.e-checkbox .e-list-parent .e-list-item.e-active.e-hover:not(.e-item-focus) {
|
|
150
|
+
border-bottom: 2px solid #000;
|
|
151
|
+
border-left: 2px solid #000;
|
|
152
|
+
border-right: 2px solid #000;
|
|
153
|
+
border-top: 2px solid #000;
|
|
154
|
+
}
|
|
155
|
+
.e-popup.e-multi-select-list-wrapper .e-list-parent .e-list-item.e-item-focus {
|
|
156
|
+
border: 2px solid #ecf;
|
|
157
|
+
}
|
|
158
|
+
.e-popup.e-multi-select-list-wrapper .e-list-parent .e-list-item.e-active.e-hover {
|
|
159
|
+
background-color: #000;
|
|
160
|
+
border-bottom: 1px solid #000;
|
|
161
|
+
border-left: 1px solid #000;
|
|
162
|
+
border-right: 1px solid #000;
|
|
163
|
+
border-top: 1px solid #000;
|
|
164
|
+
}
|
|
165
|
+
.e-popup.e-multi-select-list-wrapper .e-list-parent .e-list-item.e-hover:not(.e-active) {
|
|
166
|
+
border: 2px solid #000;
|
|
167
|
+
}
|
|
168
|
+
.e-popup.e-multi-select-list-wrapper .e-list-parent .e-list-item:not(.e-hover):not(.e-item-focus) {
|
|
169
|
+
border: 2px solid #fff;
|
|
170
|
+
}
|
|
171
|
+
.e-popup.e-multi-select-list-wrapper .e-list-parent .e-list-item.e-active {
|
|
172
|
+
border: 2px solid #400074;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.e-multi-select-wrapper.e-down-icon .e-input-group-icon.e-ddl-icon {
|
|
176
|
+
height: 30px;
|
|
177
|
+
width: 30px;
|
|
178
|
+
}
|
|
179
|
+
|
|
1
180
|
/*! recurrence editor theme wise definitions*/ /*! Schedule component's highcontrast theme definitions and variables */
|
|
2
181
|
.e-schedule .e-schedule-toolbar .e-icon-prev::before {
|
|
3
182
|
content: "\e98f";
|
|
@@ -193,7 +372,7 @@
|
|
|
193
372
|
}
|
|
194
373
|
.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
374
|
font-size: 12px;
|
|
196
|
-
|
|
375
|
+
margin-top: 3px;
|
|
197
376
|
}
|
|
198
377
|
.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
378
|
border-radius: 0%;
|
|
@@ -257,6 +436,9 @@
|
|
|
257
436
|
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos > div {
|
|
258
437
|
height: inherit;
|
|
259
438
|
}
|
|
439
|
+
.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 {
|
|
440
|
+
padding: 0;
|
|
441
|
+
}
|
|
260
442
|
.e-schedule.e-device .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
|
|
261
443
|
font-size: 15px;
|
|
262
444
|
}
|
|
@@ -335,6 +517,7 @@
|
|
|
335
517
|
height: 100%;
|
|
336
518
|
position: absolute;
|
|
337
519
|
width: 250px;
|
|
520
|
+
color: #000;
|
|
338
521
|
}
|
|
339
522
|
.e-schedule .e-resource-tree-popup .e-resource-tree {
|
|
340
523
|
height: 100%;
|
|
@@ -437,7 +620,6 @@
|
|
|
437
620
|
}
|
|
438
621
|
.e-schedule .e-block-appointment {
|
|
439
622
|
background: rgba(204, 204, 204, 0.6);
|
|
440
|
-
border-radius: 2px;
|
|
441
623
|
color: #3d3d3d;
|
|
442
624
|
cursor: default;
|
|
443
625
|
overflow: hidden;
|
|
@@ -695,11 +877,15 @@
|
|
|
695
877
|
.e-schedule .e-vertical-view .e-header-cells .e-header-day {
|
|
696
878
|
display: table;
|
|
697
879
|
font-size: 13px;
|
|
880
|
+
line-height: unset;
|
|
881
|
+
padding-bottom: 0;
|
|
698
882
|
}
|
|
699
883
|
.e-schedule .e-vertical-view .e-header-cells .e-header-date {
|
|
700
884
|
cursor: pointer;
|
|
701
885
|
display: table;
|
|
702
886
|
font-size: 18px;
|
|
887
|
+
line-height: unset;
|
|
888
|
+
padding-top: 0;
|
|
703
889
|
}
|
|
704
890
|
.e-schedule .e-vertical-view .e-header-cells .e-header-date:hover {
|
|
705
891
|
text-decoration: underline;
|
|
@@ -767,6 +953,7 @@
|
|
|
767
953
|
.e-schedule .e-vertical-view .e-all-day-appointment-section:hover, .e-schedule .e-vertical-view .e-all-day-appointment-section:focus {
|
|
768
954
|
background: #ecf;
|
|
769
955
|
border-radius: 100%;
|
|
956
|
+
color: #000;
|
|
770
957
|
}
|
|
771
958
|
.e-schedule .e-vertical-view .e-appointment-hide {
|
|
772
959
|
opacity: 0;
|
|
@@ -919,6 +1106,7 @@
|
|
|
919
1106
|
flex: auto;
|
|
920
1107
|
padding: 0 4px;
|
|
921
1108
|
text-align: left;
|
|
1109
|
+
line-height: unset;
|
|
922
1110
|
}
|
|
923
1111
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
924
1112
|
font-size: 13px;
|
|
@@ -1219,6 +1407,9 @@
|
|
|
1219
1407
|
.e-schedule .e-month-view .e-more-indicator:focus {
|
|
1220
1408
|
text-decoration: underline;
|
|
1221
1409
|
}
|
|
1410
|
+
.e-schedule.e-rtl .e-month-view .e-date-header {
|
|
1411
|
+
margin: 3px 3px 2px;
|
|
1412
|
+
}
|
|
1222
1413
|
.e-schedule.e-rtl .e-month-view .e-left-indent {
|
|
1223
1414
|
border-left: 1px solid #757575;
|
|
1224
1415
|
border-right-width: 0;
|
|
@@ -1391,54 +1582,6 @@
|
|
|
1391
1582
|
.e-schedule .e-timeline-year-view .e-resource-collapse {
|
|
1392
1583
|
transform: rotate(90deg);
|
|
1393
1584
|
}
|
|
1394
|
-
.e-schedule .e-timeline-year-view .e-work-cells {
|
|
1395
|
-
background-color: #e4e4e4;
|
|
1396
|
-
border-color: #757575;
|
|
1397
|
-
border-style: solid;
|
|
1398
|
-
border-width: 0 1px 1px 0;
|
|
1399
|
-
color: #000;
|
|
1400
|
-
padding: 0;
|
|
1401
|
-
}
|
|
1402
|
-
.e-schedule .e-timeline-year-view .e-work-cells:hover:not(.e-other-month) {
|
|
1403
|
-
background: #ecf;
|
|
1404
|
-
color: #000;
|
|
1405
|
-
}
|
|
1406
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-work-days {
|
|
1407
|
-
background-color: #fff;
|
|
1408
|
-
}
|
|
1409
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-other-month {
|
|
1410
|
-
color: #4f4f4f;
|
|
1411
|
-
}
|
|
1412
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-current-day .e-date-header {
|
|
1413
|
-
background-color: transparent;
|
|
1414
|
-
border-radius: 50%;
|
|
1415
|
-
color: #fff;
|
|
1416
|
-
margin: 2px;
|
|
1417
|
-
width: 20px;
|
|
1418
|
-
}
|
|
1419
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell {
|
|
1420
|
-
background-color: #400074;
|
|
1421
|
-
color: #fff;
|
|
1422
|
-
}
|
|
1423
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell .e-more-indicator {
|
|
1424
|
-
color: #fff;
|
|
1425
|
-
}
|
|
1426
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell:hover {
|
|
1427
|
-
background-color: #400074;
|
|
1428
|
-
}
|
|
1429
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates {
|
|
1430
|
-
background-color: rgba(0, 0, 0, 0.08);
|
|
1431
|
-
}
|
|
1432
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header {
|
|
1433
|
-
cursor: default;
|
|
1434
|
-
opacity: 0.35;
|
|
1435
|
-
}
|
|
1436
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header:hover {
|
|
1437
|
-
text-decoration: none;
|
|
1438
|
-
}
|
|
1439
|
-
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates:hover {
|
|
1440
|
-
background-color: rgba(0, 0, 0, 0.08);
|
|
1441
|
-
}
|
|
1442
1585
|
.e-schedule .e-timeline-year-view .e-content-table {
|
|
1443
1586
|
height: 100%;
|
|
1444
1587
|
}
|
|
@@ -1465,6 +1608,7 @@
|
|
|
1465
1608
|
border-bottom: 1px solid #757575;
|
|
1466
1609
|
border-right: 1px solid #757575;
|
|
1467
1610
|
text-align: center;
|
|
1611
|
+
color: #000;
|
|
1468
1612
|
}
|
|
1469
1613
|
.e-schedule .e-timeline-year-view .e-month-header.e-current-day {
|
|
1470
1614
|
color: #400074;
|
|
@@ -1500,13 +1644,6 @@
|
|
|
1500
1644
|
.e-schedule .e-timeline-year-view .e-work-cells .e-date-header:hover {
|
|
1501
1645
|
text-decoration: underline;
|
|
1502
1646
|
}
|
|
1503
|
-
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
|
|
1504
|
-
background-color: rgba(0, 0, 0, 0.08);
|
|
1505
|
-
box-shadow: inset 0 0 0 8px #e4e4e4;
|
|
1506
|
-
}
|
|
1507
|
-
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
|
|
1508
|
-
background-color: rgba(0, 0, 0, 0.08);
|
|
1509
|
-
}
|
|
1510
1647
|
.e-schedule .e-timeline-year-view .e-event-table {
|
|
1511
1648
|
position: absolute;
|
|
1512
1649
|
top: 0;
|
|
@@ -1603,7 +1740,7 @@
|
|
|
1603
1740
|
.e-schedule .e-timeline-year-view .e-event-table .e-more-indicator:focus {
|
|
1604
1741
|
text-decoration: underline;
|
|
1605
1742
|
}
|
|
1606
|
-
.e-schedule.e-device .e-year-view .e-month-calendar {
|
|
1743
|
+
.e-schedule.e-device .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
|
|
1607
1744
|
max-width: 100%;
|
|
1608
1745
|
min-width: 100%;
|
|
1609
1746
|
}
|
|
@@ -1645,6 +1782,7 @@
|
|
|
1645
1782
|
}
|
|
1646
1783
|
.e-schedule .e-timeline-view .e-date-header-wrap table tbody td.e-time-slots,
|
|
1647
1784
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table tbody td.e-time-slots {
|
|
1785
|
+
background-color: #fff;
|
|
1648
1786
|
overflow: inherit;
|
|
1649
1787
|
}
|
|
1650
1788
|
.e-schedule .e-timeline-view .e-date-header-wrap table tbody td > span,
|
|
@@ -1970,6 +2108,7 @@
|
|
|
1970
2108
|
.e-schedule .e-month-agenda-view .e-content-table {
|
|
1971
2109
|
border-bottom: 1px solid #757575;
|
|
1972
2110
|
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
|
|
2111
|
+
height: 100%;
|
|
1973
2112
|
}
|
|
1974
2113
|
.e-schedule .e-month-agenda-view .e-resource-column {
|
|
1975
2114
|
border-bottom: 1px solid #757575;
|
|
@@ -2186,6 +2325,7 @@
|
|
|
2186
2325
|
.e-schedule .e-agenda-view .e-subject-wrap {
|
|
2187
2326
|
display: -ms-flexbox;
|
|
2188
2327
|
display: flex;
|
|
2328
|
+
margin-bottom: 0;
|
|
2189
2329
|
}
|
|
2190
2330
|
.e-schedule .e-agenda-view .e-active-appointment-agenda .e-subject {
|
|
2191
2331
|
color: #fff;
|
|
@@ -2339,6 +2479,10 @@
|
|
|
2339
2479
|
min-width: 32px;
|
|
2340
2480
|
z-index: 0;
|
|
2341
2481
|
}
|
|
2482
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-item .e-btn.e-tbar-btn .e-icons.e-btn-icon,
|
|
2483
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-item .e-btn.e-tbar-btn .e-icons.e-btn-icon {
|
|
2484
|
+
font-size: 14px;
|
|
2485
|
+
}
|
|
2342
2486
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-item .e-tbar-btn-text,
|
|
2343
2487
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-item .e-tbar-btn-text {
|
|
2344
2488
|
line-height: inherit;
|
|
@@ -2380,13 +2524,19 @@
|
|
|
2380
2524
|
.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,
|
|
2381
2525
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-icon-right,
|
|
2382
2526
|
.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 {
|
|
2383
|
-
padding:
|
|
2527
|
+
padding: 0 12px 0 0;
|
|
2528
|
+
font-size: 14px;
|
|
2384
2529
|
}
|
|
2385
2530
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn .e-btn-icon,
|
|
2386
2531
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-btn-icon,
|
|
2387
2532
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn .e-btn-icon,
|
|
2388
2533
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-btn-icon {
|
|
2389
2534
|
height: 25px;
|
|
2535
|
+
padding-top: 0;
|
|
2536
|
+
}
|
|
2537
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-tbar-btn-text,
|
|
2538
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-tbar-btn-text {
|
|
2539
|
+
font-size: 16px;
|
|
2390
2540
|
}
|
|
2391
2541
|
.e-bigger .e-schedule .e-more-popup-wrapper .e-header-day,
|
|
2392
2542
|
.e-bigger.e-schedule .e-more-popup-wrapper .e-header-day {
|
|
@@ -2492,10 +2642,19 @@
|
|
|
2492
2642
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2493
2643
|
width: 420px;
|
|
2494
2644
|
}
|
|
2645
|
+
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content {
|
|
2646
|
+
padding: 2%;
|
|
2647
|
+
}
|
|
2495
2648
|
@media screen and (max-width: 767px) {
|
|
2496
2649
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2497
2650
|
width: 289px;
|
|
2498
2651
|
}
|
|
2652
|
+
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content {
|
|
2653
|
+
padding: 5%;
|
|
2654
|
+
}
|
|
2655
|
+
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content button {
|
|
2656
|
+
margin-bottom: 5%;
|
|
2657
|
+
}
|
|
2499
2658
|
}
|
|
2500
2659
|
|
|
2501
2660
|
.e-dialog.e-quick-dialog {
|
|
@@ -2939,6 +3098,7 @@
|
|
|
2939
3098
|
position: absolute;
|
|
2940
3099
|
right: 6px;
|
|
2941
3100
|
top: 4px;
|
|
3101
|
+
padding: 0;
|
|
2942
3102
|
}
|
|
2943
3103
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-edit,
|
|
2944
3104
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-delete,
|
|
@@ -2965,12 +3125,15 @@
|
|
|
2965
3125
|
width: 100%;
|
|
2966
3126
|
}
|
|
2967
3127
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-schedule-form > span {
|
|
2968
|
-
margin
|
|
3128
|
+
margin: 0 0 4px;
|
|
2969
3129
|
}
|
|
2970
3130
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
2971
3131
|
font-size: 22px;
|
|
2972
3132
|
height: 40px;
|
|
2973
3133
|
}
|
|
3134
|
+
.e-quick-popup-wrapper .e-event-popup .e-popup-header {
|
|
3135
|
+
background-color: #e4e4e4;
|
|
3136
|
+
}
|
|
2974
3137
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper {
|
|
2975
3138
|
padding: 5px 5px 2px;
|
|
2976
3139
|
}
|
|
@@ -3014,13 +3177,15 @@
|
|
|
3014
3177
|
padding: 0 18px 8px;
|
|
3015
3178
|
}
|
|
3016
3179
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-subject-wrap .e-subject {
|
|
3180
|
+
background-color: rgba(28, 128, 0, 0.3);
|
|
3181
|
+
border-left: 6px solid #1c8000;
|
|
3182
|
+
border-radius: 2px;
|
|
3183
|
+
color: #fff;
|
|
3017
3184
|
cursor: default;
|
|
3018
3185
|
font-size: 20px;
|
|
3019
3186
|
font-weight: 500;
|
|
3020
3187
|
line-height: 1.5;
|
|
3021
3188
|
max-height: 87px;
|
|
3022
|
-
background-color: rgba(28, 128, 0, 0.3);
|
|
3023
|
-
border-left: 6px solid #1c8000;
|
|
3024
3189
|
padding: 8px 0 8px 10px;
|
|
3025
3190
|
}
|
|
3026
3191
|
.e-quick-popup-wrapper .e-event-popup .e-popup-content {
|
|
@@ -3069,7 +3234,7 @@
|
|
|
3069
3234
|
.e-quick-popup-wrapper .e-event-popup .e-resource-icon {
|
|
3070
3235
|
color: #000;
|
|
3071
3236
|
font-size: 18px;
|
|
3072
|
-
padding
|
|
3237
|
+
padding: 4px 13px 0 0;
|
|
3073
3238
|
}
|
|
3074
3239
|
.e-quick-popup-wrapper .e-cell-popup .e-date-time-details,
|
|
3075
3240
|
.e-quick-popup-wrapper .e-cell-popup .e-location-details,
|
|
@@ -3110,6 +3275,9 @@
|
|
|
3110
3275
|
right: auto;
|
|
3111
3276
|
text-transform: capitalize;
|
|
3112
3277
|
}
|
|
3278
|
+
.e-quick-popup-wrapper .e-event-popup .e-popup-footer {
|
|
3279
|
+
display: block;
|
|
3280
|
+
}
|
|
3113
3281
|
.e-quick-popup-wrapper.e-rtl {
|
|
3114
3282
|
text-align: right;
|
|
3115
3283
|
}
|
|
@@ -3117,10 +3285,6 @@
|
|
|
3117
3285
|
left: 6px;
|
|
3118
3286
|
right: auto;
|
|
3119
3287
|
}
|
|
3120
|
-
.e-quick-popup-wrapper.e-rtl .e-cell-popup .e-popup-footer {
|
|
3121
|
-
padding: 8px 18px 8px 8px;
|
|
3122
|
-
text-align: left;
|
|
3123
|
-
}
|
|
3124
3288
|
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3125
3289
|
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3126
3290
|
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
@@ -3128,9 +3292,17 @@
|
|
|
3128
3292
|
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3129
3293
|
margin-right: 10px;
|
|
3130
3294
|
}
|
|
3131
|
-
.e-quick-popup-wrapper.e-rtl .e-event-details
|
|
3295
|
+
.e-quick-popup-wrapper.e-rtl .e-event-details,
|
|
3296
|
+
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3132
3297
|
margin-left: 8px;
|
|
3133
3298
|
}
|
|
3299
|
+
.e-quick-popup-wrapper.e-rtl .e-popup-footer {
|
|
3300
|
+
padding: 8px 8px 8px 18px;
|
|
3301
|
+
text-align: left;
|
|
3302
|
+
}
|
|
3303
|
+
.e-quick-popup-wrapper.e-rtl .e-date-time-icon {
|
|
3304
|
+
padding: 0 0 0 10px;
|
|
3305
|
+
}
|
|
3134
3306
|
.e-quick-popup-wrapper.e-device {
|
|
3135
3307
|
bottom: 0;
|
|
3136
3308
|
height: 100%;
|
|
@@ -3187,6 +3359,7 @@
|
|
|
3187
3359
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-delete {
|
|
3188
3360
|
background-color: transparent;
|
|
3189
3361
|
border: 0;
|
|
3362
|
+
color: #000;
|
|
3190
3363
|
height: 40px;
|
|
3191
3364
|
width: 40px;
|
|
3192
3365
|
}
|
|
@@ -3218,6 +3391,25 @@
|
|
|
3218
3391
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
3219
3392
|
font-size: 24px;
|
|
3220
3393
|
}
|
|
3394
|
+
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content {
|
|
3395
|
+
padding: 38px 18px 12px;
|
|
3396
|
+
}
|
|
3397
|
+
.e-bigger .e-quick-popup-wrapper .e-popup-footer {
|
|
3398
|
+
padding: 8px 18px 8px 22px;
|
|
3399
|
+
}
|
|
3400
|
+
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-date-time-icon,
|
|
3401
|
+
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-date-time-icon {
|
|
3402
|
+
padding-right: 13px;
|
|
3403
|
+
}
|
|
3404
|
+
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close .e-close-icon {
|
|
3405
|
+
font-size: 16px;
|
|
3406
|
+
}
|
|
3407
|
+
.e-bigger .e-quick-popup-wrapper.e-rtl .e-cell-popup .e-date-time-icon {
|
|
3408
|
+
padding-right: 0;
|
|
3409
|
+
}
|
|
3410
|
+
.e-bigger .e-quick-popup-wrapper.e-rtl .e-event-popup .e-date-time-icon {
|
|
3411
|
+
padding-right: 13px;
|
|
3412
|
+
}
|
|
3221
3413
|
.e-bigger .e-quick-popup-wrapper .e-edit.e-btn.e-small.e-round,
|
|
3222
3414
|
.e-bigger .e-quick-popup-wrapper .e-delete.e-btn.e-small.e-round,
|
|
3223
3415
|
.e-bigger .e-quick-popup-wrapper .e-close.e-btn.e-small.e-round {
|
|
@@ -3238,6 +3430,35 @@
|
|
|
3238
3430
|
padding: 0 5px 0 8px;
|
|
3239
3431
|
}
|
|
3240
3432
|
|
|
3433
|
+
.e-bigger .e-agenda-view .e-appointment {
|
|
3434
|
+
padding: 0 8px;
|
|
3435
|
+
}
|
|
3436
|
+
.e-bigger .e-agenda-view .e-subject {
|
|
3437
|
+
font-size: 16px;
|
|
3438
|
+
}
|
|
3439
|
+
.e-bigger .e-agenda-view .e-date-time {
|
|
3440
|
+
font-size: 14px;
|
|
3441
|
+
}
|
|
3442
|
+
.e-bigger .e-agenda-view .e-day-date-header .e-m-date {
|
|
3443
|
+
font-size: 20px;
|
|
3444
|
+
}
|
|
3445
|
+
.e-bigger .e-agenda-view .e-day-date-header .e-m-day {
|
|
3446
|
+
font-size: 14px;
|
|
3447
|
+
}
|
|
3448
|
+
|
|
3449
|
+
.e-bigger .e-timeline-view .e-resource-text {
|
|
3450
|
+
font-size: 14px;
|
|
3451
|
+
padding-left: 12px;
|
|
3452
|
+
}
|
|
3453
|
+
.e-bigger .e-timeline-view .e-navigate {
|
|
3454
|
+
font-size: 18px;
|
|
3455
|
+
padding: 8px 0 8px 8px;
|
|
3456
|
+
}
|
|
3457
|
+
.e-bigger .e-timeline-view .e-date-header-wrap table tbody td > span {
|
|
3458
|
+
font-size: 18px;
|
|
3459
|
+
padding: 8px 0 8px 8px;
|
|
3460
|
+
}
|
|
3461
|
+
|
|
3241
3462
|
.e-appointment.e-schedule-event-clone {
|
|
3242
3463
|
background: #1c8000;
|
|
3243
3464
|
border-radius: 2px;
|
|
@@ -3340,8 +3561,7 @@
|
|
|
3340
3561
|
height: calc(100% - 35px);
|
|
3341
3562
|
max-height: 150px;
|
|
3342
3563
|
overflow-y: auto;
|
|
3343
|
-
padding
|
|
3344
|
-
padding-right: 10px;
|
|
3564
|
+
padding: 10px 10px 0;
|
|
3345
3565
|
}
|
|
3346
3566
|
.e-bigger .e-more-popup-wrapper .e-more-event-content .e-appointment-border,
|
|
3347
3567
|
.e-more-popup-wrapper .e-more-event-content .e-appointment-border {
|
|
@@ -3388,6 +3608,7 @@
|
|
|
3388
3608
|
color: #000;
|
|
3389
3609
|
cursor: pointer;
|
|
3390
3610
|
height: 25px;
|
|
3611
|
+
padding: unset;
|
|
3391
3612
|
position: absolute;
|
|
3392
3613
|
right: 6px;
|
|
3393
3614
|
width: 25px;
|
|
@@ -3462,6 +3683,14 @@
|
|
|
3462
3683
|
.e-more-popup-wrapper.e-device .e-more-event-content {
|
|
3463
3684
|
max-height: unset;
|
|
3464
3685
|
}
|
|
3686
|
+
.e-bigger .e-more-popup-wrapper.e-rtl .e-header-date,
|
|
3687
|
+
.e-more-popup-wrapper.e-rtl .e-header-date {
|
|
3688
|
+
padding-right: 10px;
|
|
3689
|
+
}
|
|
3690
|
+
.e-bigger .e-more-popup-wrapper.e-rtl .e-header-day,
|
|
3691
|
+
.e-more-popup-wrapper.e-rtl .e-header-day {
|
|
3692
|
+
padding-right: 10px;
|
|
3693
|
+
}
|
|
3465
3694
|
.e-bigger .e-more-popup-wrapper.e-rtl .e-more-event-close,
|
|
3466
3695
|
.e-more-popup-wrapper.e-rtl .e-more-event-close {
|
|
3467
3696
|
left: 6px;
|
|
@@ -3479,6 +3708,10 @@
|
|
|
3479
3708
|
border-width: 0;
|
|
3480
3709
|
position: relative;
|
|
3481
3710
|
}
|
|
3711
|
+
.e-schedule .e-header-calendar {
|
|
3712
|
+
background-color: none;
|
|
3713
|
+
box-shadow: none;
|
|
3714
|
+
}
|
|
3482
3715
|
.e-schedule .e-vertical-view .e-date-header-wrap table tbody td:first-child,
|
|
3483
3716
|
.e-schedule .e-vertical-view .e-content-wrap table td:first-child {
|
|
3484
3717
|
border-left-width: 0;
|
|
@@ -3538,6 +3771,7 @@
|
|
|
3538
3771
|
}
|
|
3539
3772
|
.e-schedule .e-vertical-view .e-header-cells.e-current-day {
|
|
3540
3773
|
color: #400074;
|
|
3774
|
+
font-weight: normal;
|
|
3541
3775
|
}
|
|
3542
3776
|
.e-schedule .e-vertical-view .e-work-cells {
|
|
3543
3777
|
background-color: #e4e4e4;
|
|
@@ -3568,6 +3802,7 @@
|
|
|
3568
3802
|
}
|
|
3569
3803
|
.e-schedule .e-vertical-view .e-all-day-cells.e-selected-cell:hover {
|
|
3570
3804
|
background-color: #400074;
|
|
3805
|
+
color: #000;
|
|
3571
3806
|
}
|
|
3572
3807
|
.e-schedule .e-vertical-view .e-selected-cell {
|
|
3573
3808
|
background-color: #400074;
|
|
@@ -3575,6 +3810,7 @@
|
|
|
3575
3810
|
}
|
|
3576
3811
|
.e-schedule .e-vertical-view .e-selected-cell:hover {
|
|
3577
3812
|
background-color: #400074;
|
|
3813
|
+
color: #000;
|
|
3578
3814
|
}
|
|
3579
3815
|
.e-schedule .e-vertical-view .e-clone-time-indicator,
|
|
3580
3816
|
.e-schedule .e-vertical-view .e-current-time {
|
|
@@ -3600,11 +3836,14 @@
|
|
|
3600
3836
|
border-style: solid;
|
|
3601
3837
|
border-width: 0 0 1px;
|
|
3602
3838
|
color: #000;
|
|
3839
|
+
font-size: none;
|
|
3603
3840
|
text-align: left;
|
|
3841
|
+
text-transform: none;
|
|
3604
3842
|
}
|
|
3605
3843
|
.e-schedule .e-month-view .e-date-header-wrap table td.e-current-day,
|
|
3606
3844
|
.e-schedule .e-month-agenda-view .e-date-header-wrap table td.e-current-day {
|
|
3607
3845
|
color: #400074;
|
|
3846
|
+
font-weight: normal;
|
|
3608
3847
|
}
|
|
3609
3848
|
.e-schedule .e-month-view .e-work-cells,
|
|
3610
3849
|
.e-schedule .e-month-agenda-view .e-work-cells {
|
|
@@ -3640,6 +3879,10 @@
|
|
|
3640
3879
|
background-color: #400074;
|
|
3641
3880
|
color: #fff;
|
|
3642
3881
|
}
|
|
3882
|
+
.e-schedule .e-month-view .e-selected-cell .e-date-header,
|
|
3883
|
+
.e-schedule .e-month-agenda-view .e-selected-cell .e-date-header {
|
|
3884
|
+
color: none;
|
|
3885
|
+
}
|
|
3643
3886
|
.e-schedule .e-month-view .e-selected-cell .e-more-indicator,
|
|
3644
3887
|
.e-schedule .e-month-agenda-view .e-selected-cell .e-more-indicator {
|
|
3645
3888
|
color: #fff;
|
|
@@ -3648,6 +3891,9 @@
|
|
|
3648
3891
|
.e-schedule .e-month-agenda-view .e-selected-cell:hover {
|
|
3649
3892
|
background-color: #400074;
|
|
3650
3893
|
}
|
|
3894
|
+
.e-schedule .e-month-agenda-view .e-content-wrap .e-table-container {
|
|
3895
|
+
overflow: auto;
|
|
3896
|
+
}
|
|
3651
3897
|
.e-schedule .e-month-agenda-view .e-date-header-wrap table td {
|
|
3652
3898
|
border-width: 0 0 1px 0;
|
|
3653
3899
|
text-align: center;
|
|
@@ -3679,6 +3925,7 @@
|
|
|
3679
3925
|
.e-schedule .e-timeline-view .e-date-header-wrap table td.e-current-day,
|
|
3680
3926
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table td.e-current-day {
|
|
3681
3927
|
color: #400074;
|
|
3928
|
+
font-weight: normal;
|
|
3682
3929
|
}
|
|
3683
3930
|
.e-schedule .e-timeline-view .e-work-cells,
|
|
3684
3931
|
.e-schedule .e-timeline-month-view .e-work-cells {
|
|
@@ -3742,6 +3989,64 @@
|
|
|
3742
3989
|
.e-schedule .e-timeline-view .e-current-timeline {
|
|
3743
3990
|
border-left: 1px solid #400074;
|
|
3744
3991
|
}
|
|
3992
|
+
.e-schedule .e-timeline-year-view .e-work-cells {
|
|
3993
|
+
background-color: #e4e4e4;
|
|
3994
|
+
border-color: #757575;
|
|
3995
|
+
border-style: solid;
|
|
3996
|
+
border-width: 0 1px 1px 0;
|
|
3997
|
+
color: #000;
|
|
3998
|
+
padding: 0;
|
|
3999
|
+
}
|
|
4000
|
+
.e-schedule .e-timeline-year-view .e-work-cells:hover:not(.e-other-month) {
|
|
4001
|
+
background: #ecf;
|
|
4002
|
+
color: #000;
|
|
4003
|
+
}
|
|
4004
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-work-days {
|
|
4005
|
+
background-color: #fff;
|
|
4006
|
+
}
|
|
4007
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-other-month {
|
|
4008
|
+
color: #4f4f4f;
|
|
4009
|
+
}
|
|
4010
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-current-day .e-date-header {
|
|
4011
|
+
background-color: transparent;
|
|
4012
|
+
border-radius: 50%;
|
|
4013
|
+
color: #fff;
|
|
4014
|
+
margin: 2px;
|
|
4015
|
+
width: 20px;
|
|
4016
|
+
}
|
|
4017
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell {
|
|
4018
|
+
background-color: #400074;
|
|
4019
|
+
color: #fff;
|
|
4020
|
+
}
|
|
4021
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell .e-date-header {
|
|
4022
|
+
color: #fff;
|
|
4023
|
+
}
|
|
4024
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell .e-more-indicator {
|
|
4025
|
+
color: #fff;
|
|
4026
|
+
}
|
|
4027
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell:hover {
|
|
4028
|
+
background-color: #400074;
|
|
4029
|
+
}
|
|
4030
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates {
|
|
4031
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
4032
|
+
}
|
|
4033
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header {
|
|
4034
|
+
cursor: default;
|
|
4035
|
+
opacity: 0.35;
|
|
4036
|
+
}
|
|
4037
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header:hover {
|
|
4038
|
+
text-decoration: none;
|
|
4039
|
+
}
|
|
4040
|
+
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates:hover {
|
|
4041
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
4042
|
+
}
|
|
4043
|
+
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
|
|
4044
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
4045
|
+
box-shadow: inset 0 0 0 8px #e4e4e4;
|
|
4046
|
+
}
|
|
4047
|
+
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
|
|
4048
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
4049
|
+
}
|
|
3745
4050
|
.e-schedule.e-rtl .e-vertical-view .e-date-header-wrap table tbody td:first-child,
|
|
3746
4051
|
.e-schedule.e-rtl .e-vertical-view .e-content-wrap table td:first-child {
|
|
3747
4052
|
border-right-width: 0;
|