@syncfusion/ej2-vue-schedule 20.1.48 → 20.1.55
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +46 -11
- package/dist/ej2-vue-schedule.umd.min.js +11 -2
- package/dist/es6/ej2-vue-schedule.es2015.js +136 -11
- package/dist/es6/ej2-vue-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-schedule.es5.js +92 -10
- package/dist/es6/ej2-vue-schedule.es5.js.map +1 -1
- package/dist/global/ej2-vue-schedule.min.js +2 -2
- package/package.json +8 -14
- package/src/recurrence-editor/recurrenceeditor.component.d.ts +1 -0
- package/src/recurrence-editor/recurrenceeditor.component.js +10 -1
- package/src/schedule/headerrows.directive.d.ts +3 -1
- package/src/schedule/headerrows.directive.js +24 -2
- package/src/schedule/resources.directive.d.ts +3 -1
- package/src/schedule/resources.directive.js +24 -2
- package/src/schedule/schedule.component.d.ts +1 -0
- package/src/schedule/schedule.component.js +11 -1
- package/src/schedule/views.directive.d.ts +3 -1
- package/src/schedule/views.directive.js +24 -2
- package/styles/bootstrap-dark.css +91 -973
- package/styles/bootstrap.css +91 -972
- package/styles/bootstrap4.css +92 -996
- package/styles/bootstrap5-dark.css +100 -1004
- package/styles/bootstrap5.css +100 -1004
- package/styles/fabric-dark.css +91 -973
- package/styles/fabric.css +91 -975
- package/styles/fluent-dark.css +4217 -0
- package/styles/fluent-dark.scss +2 -0
- package/styles/fluent.css +4218 -0
- package/styles/fluent.scss +2 -0
- package/styles/highcontrast-light.css +91 -972
- package/styles/highcontrast.css +92 -978
- package/styles/material-dark.css +91 -972
- package/styles/material.css +91 -972
- package/styles/recurrence-editor/bootstrap-dark.css +6 -94
- package/styles/recurrence-editor/bootstrap.css +6 -94
- package/styles/recurrence-editor/bootstrap4.css +6 -94
- package/styles/recurrence-editor/bootstrap5-dark.css +6 -94
- package/styles/recurrence-editor/bootstrap5.css +6 -94
- package/styles/recurrence-editor/fabric-dark.css +6 -94
- package/styles/recurrence-editor/fabric.css +6 -94
- package/styles/recurrence-editor/fluent-dark.css +407 -0
- package/styles/recurrence-editor/fluent-dark.scss +1 -0
- package/styles/recurrence-editor/fluent.css +407 -0
- package/styles/recurrence-editor/fluent.scss +1 -0
- package/styles/recurrence-editor/highcontrast-light.css +6 -94
- package/styles/recurrence-editor/highcontrast.css +6 -94
- package/styles/recurrence-editor/material-dark.css +6 -94
- package/styles/recurrence-editor/material.css +6 -94
- package/styles/recurrence-editor/tailwind-dark.css +6 -94
- package/styles/recurrence-editor/tailwind.css +6 -94
- package/styles/schedule/bootstrap-dark.css +86 -880
- package/styles/schedule/bootstrap.css +86 -879
- package/styles/schedule/bootstrap4.css +87 -903
- package/styles/schedule/bootstrap5-dark.css +95 -911
- package/styles/schedule/bootstrap5.css +95 -911
- package/styles/schedule/fabric-dark.css +86 -880
- package/styles/schedule/fabric.css +86 -882
- package/styles/schedule/fluent-dark.css +3809 -0
- package/styles/schedule/fluent-dark.scss +1 -0
- package/styles/schedule/fluent.css +3810 -0
- package/styles/schedule/fluent.scss +1 -0
- package/styles/schedule/highcontrast-light.css +86 -879
- package/styles/schedule/highcontrast.css +87 -885
- package/styles/schedule/material-dark.css +86 -879
- package/styles/schedule/material.css +86 -879
- package/styles/schedule/tailwind-dark.css +90 -902
- package/styles/schedule/tailwind.css +90 -902
- package/styles/tailwind-dark.css +95 -995
- package/styles/tailwind.css +95 -995
|
@@ -1,203 +1,158 @@
|
|
|
1
1
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
2
2
|
/*! Schedule component's tailwind theme definitions and variables */
|
|
3
3
|
.e-schedule .e-schedule-toolbar .e-icon-prev::before {
|
|
4
|
-
content:
|
|
4
|
+
content: "\e765";
|
|
5
5
|
}
|
|
6
|
-
|
|
7
6
|
.e-schedule .e-schedule-toolbar .e-icon-next::before {
|
|
8
|
-
content:
|
|
7
|
+
content: "\e748";
|
|
9
8
|
}
|
|
10
|
-
|
|
11
9
|
.e-schedule .e-schedule-toolbar .e-icon-add::before {
|
|
12
|
-
content:
|
|
10
|
+
content: "\e805";
|
|
13
11
|
}
|
|
14
|
-
|
|
15
12
|
.e-schedule .e-schedule-toolbar .e-icon-today::before {
|
|
16
|
-
content:
|
|
13
|
+
content: "\e778";
|
|
17
14
|
}
|
|
18
|
-
|
|
19
15
|
.e-schedule .e-schedule-toolbar .e-icon-down-arrow::before {
|
|
20
|
-
content:
|
|
16
|
+
content: "\e729";
|
|
21
17
|
}
|
|
22
|
-
|
|
23
18
|
.e-schedule .e-schedule-toolbar .e-icon-day::before {
|
|
24
|
-
content:
|
|
19
|
+
content: "\e75e";
|
|
25
20
|
}
|
|
26
|
-
|
|
27
21
|
.e-schedule .e-schedule-toolbar .e-icon-week::before {
|
|
28
|
-
content:
|
|
22
|
+
content: "\e817";
|
|
29
23
|
}
|
|
30
|
-
|
|
31
24
|
.e-schedule .e-schedule-toolbar .e-icon-workweek::before {
|
|
32
|
-
content:
|
|
25
|
+
content: "\e817";
|
|
33
26
|
}
|
|
34
|
-
|
|
35
27
|
.e-schedule .e-schedule-toolbar .e-icon-month::before {
|
|
36
|
-
content:
|
|
28
|
+
content: "\e7c5";
|
|
37
29
|
}
|
|
38
|
-
|
|
39
30
|
.e-schedule .e-schedule-toolbar .e-icon-month-agenda::before {
|
|
40
|
-
content:
|
|
31
|
+
content: "\e75b";
|
|
41
32
|
}
|
|
42
|
-
|
|
43
33
|
.e-schedule .e-schedule-toolbar .e-icon-agenda::before {
|
|
44
|
-
content:
|
|
34
|
+
content: "\e74c";
|
|
45
35
|
}
|
|
46
|
-
|
|
47
36
|
.e-schedule .e-schedule-toolbar .e-icon-year::before {
|
|
48
|
-
content:
|
|
37
|
+
content: "\e7c5";
|
|
49
38
|
}
|
|
50
|
-
|
|
51
39
|
.e-schedule .e-schedule-toolbar .e-icon-timeline-year-vertical::before {
|
|
52
|
-
content:
|
|
40
|
+
content: "\e876";
|
|
53
41
|
}
|
|
54
|
-
|
|
55
42
|
.e-schedule .e-schedule-toolbar .e-icon-timeline-year-horizontal::before {
|
|
56
|
-
content:
|
|
43
|
+
content: "\e876";
|
|
57
44
|
}
|
|
58
|
-
|
|
59
45
|
.e-schedule .e-schedule-toolbar .e-icon-timeline-day::before {
|
|
60
|
-
content:
|
|
46
|
+
content: "\e7da";
|
|
61
47
|
}
|
|
62
|
-
|
|
63
48
|
.e-schedule .e-schedule-toolbar .e-icon-timeline-week::before {
|
|
64
|
-
content:
|
|
49
|
+
content: "\e81f";
|
|
65
50
|
}
|
|
66
|
-
|
|
67
51
|
.e-schedule .e-schedule-toolbar .e-icon-timeline-workweek::before {
|
|
68
|
-
content:
|
|
52
|
+
content: "\e720";
|
|
69
53
|
}
|
|
70
|
-
|
|
71
54
|
.e-schedule .e-schedule-toolbar .e-icon-timeline-month::before {
|
|
72
|
-
content:
|
|
55
|
+
content: "\e876";
|
|
73
56
|
}
|
|
74
|
-
|
|
75
57
|
.e-schedule .e-schedule-toolbar.e-toolbar .e-popup-down-icon::before {
|
|
76
|
-
content:
|
|
58
|
+
content: "\e770";
|
|
77
59
|
}
|
|
78
|
-
|
|
79
60
|
.e-schedule .e-schedule-toolbar.e-toolbar .e-popup-up-icon::before {
|
|
80
|
-
content:
|
|
61
|
+
content: "\e770";
|
|
81
62
|
}
|
|
82
|
-
|
|
83
63
|
.e-schedule .e-schedule-toolbar.e-rtl .e-icon-prev::before {
|
|
84
|
-
content:
|
|
64
|
+
content: "\e748";
|
|
85
65
|
}
|
|
86
|
-
|
|
87
66
|
.e-schedule .e-schedule-toolbar.e-rtl .e-icon-next::before {
|
|
88
|
-
content:
|
|
67
|
+
content: "\e765";
|
|
89
68
|
}
|
|
90
|
-
|
|
91
69
|
.e-schedule .e-schedule-resource-toolbar .e-icon-menu::before {
|
|
92
|
-
content:
|
|
70
|
+
content: "\e799";
|
|
93
71
|
}
|
|
94
|
-
|
|
95
72
|
.e-schedule .e-schedule-resource-toolbar .e-icon-next::before {
|
|
96
|
-
content:
|
|
73
|
+
content: "\e748";
|
|
97
74
|
}
|
|
98
|
-
|
|
99
75
|
.e-schedule .e-close-icon::before {
|
|
100
|
-
content:
|
|
76
|
+
content: "\e7e7";
|
|
101
77
|
}
|
|
102
|
-
|
|
103
78
|
.e-schedule .e-block-indicator::before {
|
|
104
|
-
content:
|
|
79
|
+
content: "\e839";
|
|
105
80
|
}
|
|
106
|
-
|
|
107
81
|
.e-schedule .e-appointment .e-recurrence-icon::before {
|
|
108
|
-
content:
|
|
82
|
+
content: "\e772";
|
|
109
83
|
}
|
|
110
|
-
|
|
111
84
|
.e-schedule .e-appointment .e-recurrence-edit-icon::before {
|
|
112
|
-
content:
|
|
85
|
+
content: "\e789";
|
|
113
86
|
}
|
|
114
|
-
|
|
115
87
|
.e-schedule .e-appointment .e-up-icon::before {
|
|
116
|
-
content:
|
|
88
|
+
content: "\e822";
|
|
117
89
|
}
|
|
118
|
-
|
|
119
90
|
.e-schedule .e-appointment .e-down-icon::before {
|
|
120
|
-
content:
|
|
91
|
+
content: "\e7fe";
|
|
121
92
|
}
|
|
122
|
-
|
|
123
93
|
.e-schedule .e-appointment .e-left-icon::before {
|
|
124
|
-
content:
|
|
94
|
+
content: "\e744";
|
|
125
95
|
}
|
|
126
|
-
|
|
127
96
|
.e-schedule .e-appointment .e-right-icon::before {
|
|
128
|
-
content:
|
|
97
|
+
content: "\e7a9";
|
|
129
98
|
}
|
|
130
|
-
|
|
131
99
|
.e-schedule .e-vertical-view .e-all-day-cells .e-all-day-appointment-section::before {
|
|
132
|
-
content:
|
|
100
|
+
content: "\e729";
|
|
133
101
|
}
|
|
134
|
-
|
|
135
102
|
.e-schedule.e-rtl .e-appointment .e-left-icon::before {
|
|
136
|
-
content:
|
|
103
|
+
content: "\e7a9";
|
|
137
104
|
}
|
|
138
|
-
|
|
139
105
|
.e-schedule.e-rtl .e-appointment .e-right-icon::before {
|
|
140
|
-
content:
|
|
106
|
+
content: "\e744";
|
|
141
107
|
}
|
|
142
|
-
|
|
143
108
|
.e-schedule .e-resource-tree-icon::before {
|
|
144
|
-
content:
|
|
109
|
+
content: "\e748";
|
|
145
110
|
}
|
|
146
111
|
|
|
147
112
|
.e-schedule-dialog.e-device .e-back-icon::before {
|
|
148
|
-
content:
|
|
113
|
+
content: "\e773";
|
|
149
114
|
}
|
|
150
|
-
|
|
151
115
|
.e-schedule-dialog.e-device .e-save-icon::before {
|
|
152
|
-
content:
|
|
116
|
+
content: "\e7c8";
|
|
153
117
|
}
|
|
154
|
-
|
|
155
118
|
.e-schedule-dialog.e-device .e-recurrence-container .e-recurrence-edit-button .e-recurrence-edit.e-icons::before {
|
|
156
|
-
content:
|
|
119
|
+
content: "\e730";
|
|
157
120
|
}
|
|
158
121
|
|
|
159
122
|
.e-schedule-dialog.e-device.e-rtl .e-back-icon::before {
|
|
160
|
-
content:
|
|
123
|
+
content: "\e7f9";
|
|
161
124
|
}
|
|
162
125
|
|
|
163
126
|
.e-quick-popup-wrapper .e-edit-icon::before {
|
|
164
|
-
content:
|
|
127
|
+
content: "\e730";
|
|
165
128
|
}
|
|
166
|
-
|
|
167
129
|
.e-quick-popup-wrapper .e-delete-icon::before {
|
|
168
|
-
content:
|
|
130
|
+
content: "\e820";
|
|
169
131
|
}
|
|
170
|
-
|
|
171
132
|
.e-quick-popup-wrapper .e-close-icon::before {
|
|
172
|
-
content:
|
|
133
|
+
content: "\e7e7";
|
|
173
134
|
}
|
|
174
|
-
|
|
175
135
|
.e-quick-popup-wrapper .e-time-icon::before {
|
|
176
|
-
content:
|
|
136
|
+
content: "\e705";
|
|
177
137
|
}
|
|
178
|
-
|
|
179
138
|
.e-quick-popup-wrapper .e-location-icon::before {
|
|
180
|
-
content:
|
|
139
|
+
content: "\e756";
|
|
181
140
|
}
|
|
182
|
-
|
|
183
141
|
.e-quick-popup-wrapper .e-time-zone-icon::before {
|
|
184
|
-
content:
|
|
142
|
+
content: "\e804";
|
|
185
143
|
}
|
|
186
|
-
|
|
187
144
|
.e-quick-popup-wrapper .e-description-icon::before {
|
|
188
|
-
content:
|
|
145
|
+
content: "\e7c0";
|
|
189
146
|
}
|
|
190
|
-
|
|
191
147
|
.e-quick-popup-wrapper .e-resource-icon::before {
|
|
192
|
-
content:
|
|
148
|
+
content: "\e7b9";
|
|
193
149
|
}
|
|
194
|
-
|
|
195
150
|
.e-quick-popup-wrapper .e-date-time-icon::before {
|
|
196
|
-
content:
|
|
151
|
+
content: "\e7da";
|
|
197
152
|
}
|
|
198
153
|
|
|
199
154
|
.e-more-popup-wrapper.e-device .e-close-icon::before {
|
|
200
|
-
content:
|
|
155
|
+
content: "\e7e7";
|
|
201
156
|
}
|
|
202
157
|
|
|
203
158
|
/*! schedule component layout */
|
|
@@ -210,7 +165,6 @@
|
|
|
210
165
|
-ms-user-select: none;
|
|
211
166
|
user-select: none;
|
|
212
167
|
}
|
|
213
|
-
|
|
214
168
|
.e-schedule .e-schedule-toolbar {
|
|
215
169
|
background: #374151;
|
|
216
170
|
border: 0;
|
|
@@ -219,152 +173,106 @@
|
|
|
219
173
|
margin-bottom: 3px;
|
|
220
174
|
min-height: 38px;
|
|
221
175
|
}
|
|
222
|
-
|
|
223
176
|
.e-schedule .e-schedule-toolbar .e-active-view .e-tbar-btn-text,
|
|
224
177
|
.e-schedule .e-schedule-toolbar .e-active-view .e-icons {
|
|
225
178
|
color: #22d3ee;
|
|
226
179
|
}
|
|
227
|
-
|
|
228
180
|
.e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
|
|
229
181
|
cursor: pointer;
|
|
230
182
|
font-size: 14px;
|
|
231
183
|
text-transform: none;
|
|
232
184
|
}
|
|
233
|
-
|
|
234
185
|
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
235
186
|
background: #374151;
|
|
236
187
|
}
|
|
237
|
-
|
|
238
188
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
239
189
|
height: 38px;
|
|
240
190
|
min-height: 38px;
|
|
241
191
|
}
|
|
242
|
-
|
|
243
192
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos > div {
|
|
244
193
|
height: inherit;
|
|
245
194
|
}
|
|
246
|
-
|
|
247
195
|
.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 {
|
|
248
196
|
font-size: 18px;
|
|
249
197
|
padding-top: 0;
|
|
250
198
|
}
|
|
251
|
-
|
|
252
199
|
.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 {
|
|
253
200
|
border-radius: 100%;
|
|
254
201
|
}
|
|
255
|
-
|
|
256
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-day .e-icon-day,
|
|
257
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-week .e-icon-week,
|
|
258
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-work-week .e-icon-workweek,
|
|
259
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-month .e-icon-month,
|
|
260
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-year .e-icon-year,
|
|
261
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-agenda .e-icon-agenda,
|
|
262
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-month-agenda .e-icon-month-agenda,
|
|
263
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-timeline-day .e-icon-timeline-day,
|
|
264
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-timeline-week .e-icon-timeline-week,
|
|
265
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-timeline-work-week .e-icon-timeline-workweek,
|
|
266
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-timeline-month .e-icon-timeline-month,
|
|
267
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-timeline-year .e-icon-timeline-year-vertical,
|
|
268
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-timeline-year .e-icon-timeline-year-horizontal,
|
|
269
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-add .e-tbar-btn-text,
|
|
270
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-today .e-icon-day,
|
|
271
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-today .e-icon-today + .e-tbar-btn-text {
|
|
202
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-day .e-icon-day, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-week .e-icon-week, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-work-week .e-icon-workweek, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-month .e-icon-month, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-year .e-icon-year, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-agenda .e-icon-agenda, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-month-agenda .e-icon-month-agenda, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-timeline-day .e-icon-timeline-day, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-timeline-week .e-icon-timeline-week, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-timeline-work-week .e-icon-timeline-workweek, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-timeline-month .e-icon-timeline-month, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-timeline-year .e-icon-timeline-year-vertical, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-timeline-year .e-icon-timeline-year-horizontal, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-add .e-tbar-btn-text, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-today .e-icon-day, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-today .e-icon-today + .e-tbar-btn-text {
|
|
272
203
|
display: none;
|
|
273
204
|
}
|
|
274
|
-
|
|
275
205
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-hidden {
|
|
276
206
|
display: none;
|
|
277
207
|
}
|
|
278
|
-
|
|
279
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-prev .e-icon-prev,
|
|
280
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-next .e-icon-next {
|
|
208
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-prev .e-icon-prev, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-next .e-icon-next {
|
|
281
209
|
font-size: 18px;
|
|
282
210
|
}
|
|
283
|
-
|
|
284
211
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator {
|
|
285
212
|
border-right: 1px solid #4b5563;
|
|
286
213
|
}
|
|
287
|
-
|
|
288
214
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-date-range .e-tbar-btn .e-tbar-btn-text {
|
|
289
215
|
font-size: 14px;
|
|
290
216
|
text-transform: initial;
|
|
291
217
|
}
|
|
292
|
-
|
|
293
218
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
294
219
|
padding: 0 12px;
|
|
295
220
|
}
|
|
296
|
-
|
|
297
221
|
.e-schedule .e-schedule-toolbar.e-rtl .e-hor-nav {
|
|
298
222
|
background: #374151;
|
|
299
223
|
border-left: 0;
|
|
300
224
|
border-right: 1px solid #4b5563;
|
|
301
225
|
}
|
|
302
|
-
|
|
303
226
|
.e-schedule .e-schedule-toolbar.e-rtl .e-hor-nav:not(.e-nav-active):hover {
|
|
304
227
|
background-color: #4b5563;
|
|
305
228
|
color: rgba(34, 211, 238, 0.87);
|
|
306
229
|
}
|
|
307
|
-
|
|
308
230
|
.e-schedule .e-schedule-toolbar .e-hor-nav {
|
|
309
231
|
border-left: 1px solid #4b5563;
|
|
310
232
|
}
|
|
311
|
-
|
|
312
233
|
.e-schedule .e-schedule-toolbar .e-hor-nav::after {
|
|
313
|
-
content:
|
|
234
|
+
content: "";
|
|
314
235
|
}
|
|
315
|
-
|
|
316
236
|
.e-schedule .e-schedule-toolbar .e-hor-nav:active {
|
|
317
237
|
color: rgba(34, 211, 238, 0.87);
|
|
318
238
|
}
|
|
319
|
-
|
|
320
239
|
.e-schedule .e-schedule-toolbar .e-hor-nav:active::after {
|
|
321
|
-
content:
|
|
240
|
+
content: "";
|
|
322
241
|
}
|
|
323
|
-
|
|
324
242
|
.e-schedule .e-schedule-toolbar .e-hor-nav:hover {
|
|
325
243
|
background: #4b5563;
|
|
326
244
|
color: rgba(34, 211, 238, 0.87);
|
|
327
245
|
}
|
|
328
|
-
|
|
329
246
|
.e-schedule .e-schedule-toolbar .e-hor-nav:focus {
|
|
330
247
|
background: #4b5563;
|
|
331
248
|
color: rgba(34, 211, 238, 0.87);
|
|
332
249
|
}
|
|
333
|
-
|
|
334
250
|
.e-schedule.e-device .e-schedule-toolbar {
|
|
335
251
|
height: 54px;
|
|
336
252
|
min-height: 54px;
|
|
337
253
|
}
|
|
338
|
-
|
|
339
254
|
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:hover, .e-schedule.e-device .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:focus {
|
|
340
255
|
height: calc(100% - 20px);
|
|
341
256
|
}
|
|
342
|
-
|
|
343
257
|
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
344
258
|
height: 54px;
|
|
345
259
|
min-height: 54px;
|
|
346
260
|
}
|
|
347
|
-
|
|
348
261
|
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-items.e-tbar-pos > div {
|
|
349
262
|
height: inherit;
|
|
350
263
|
}
|
|
351
|
-
|
|
352
264
|
.e-schedule.e-device .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
|
|
353
265
|
font-size: 16px;
|
|
354
266
|
}
|
|
355
|
-
|
|
356
267
|
.e-schedule.e-device .e-schedule-toolbar .e-date-range .e-tbar-btn .e-tbar-btn-text {
|
|
357
268
|
font-size: 16px;
|
|
358
269
|
}
|
|
359
|
-
|
|
360
270
|
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-pop {
|
|
361
271
|
overflow: auto;
|
|
362
272
|
}
|
|
363
|
-
|
|
364
273
|
.e-schedule.e-device .e-content-wrap.e-scroll-hidden {
|
|
365
274
|
overflow: hidden;
|
|
366
275
|
}
|
|
367
|
-
|
|
368
276
|
.e-schedule .e-schedule-resource-toolbar {
|
|
369
277
|
background: #374151;
|
|
370
278
|
border-bottom: 0;
|
|
@@ -375,69 +283,56 @@
|
|
|
375
283
|
min-height: 38px;
|
|
376
284
|
padding: 10px;
|
|
377
285
|
}
|
|
378
|
-
|
|
379
286
|
.e-schedule .e-schedule-resource-toolbar .e-resource-menu .e-icon-menu {
|
|
380
287
|
color: #d1d5db;
|
|
381
288
|
font-size: 14px;
|
|
382
289
|
padding: 7px;
|
|
383
290
|
padding-left: 4px;
|
|
384
291
|
}
|
|
385
|
-
|
|
386
292
|
.e-schedule .e-schedule-resource-toolbar .e-resource-menu.e-disable {
|
|
387
293
|
display: none;
|
|
388
294
|
}
|
|
389
|
-
|
|
390
295
|
.e-schedule .e-schedule-resource-toolbar .e-resource-level-title {
|
|
391
296
|
display: -ms-flexbox;
|
|
392
297
|
display: flex;
|
|
393
298
|
}
|
|
394
|
-
|
|
395
299
|
.e-schedule .e-schedule-resource-toolbar .e-resource-level-title .e-resource-name {
|
|
396
300
|
font-size: 14px;
|
|
397
301
|
padding: 5px;
|
|
398
302
|
color: #9ca3af;
|
|
399
303
|
}
|
|
400
|
-
|
|
401
304
|
.e-schedule .e-schedule-resource-toolbar .e-resource-level-title .e-resource-name:not(:last-child) {
|
|
402
|
-
opacity: .6;
|
|
305
|
+
opacity: 0.6;
|
|
403
306
|
}
|
|
404
|
-
|
|
405
307
|
.e-schedule .e-schedule-resource-toolbar .e-resource-level-title .e-icon-next {
|
|
406
308
|
color: #d1d5db;
|
|
407
309
|
font-size: 10px;
|
|
408
310
|
line-height: 18px;
|
|
409
|
-
opacity: .4;
|
|
311
|
+
opacity: 0.4;
|
|
410
312
|
padding: 5px;
|
|
411
313
|
}
|
|
412
|
-
|
|
413
314
|
.e-schedule .e-schedule-resource-toolbar.e-popup-close {
|
|
414
315
|
display: none;
|
|
415
316
|
}
|
|
416
|
-
|
|
417
317
|
.e-schedule .e-schedule-resource-toolbar.e-popup-open {
|
|
418
318
|
display: block;
|
|
419
319
|
}
|
|
420
|
-
|
|
421
320
|
.e-schedule .e-text-ellipsis {
|
|
422
321
|
overflow: hidden;
|
|
423
322
|
text-overflow: ellipsis;
|
|
424
323
|
}
|
|
425
|
-
|
|
426
324
|
.e-schedule .e-text-center {
|
|
427
325
|
text-align: center;
|
|
428
326
|
}
|
|
429
|
-
|
|
430
327
|
.e-schedule .e-table-container {
|
|
431
328
|
display: -ms-inline-flexbox;
|
|
432
329
|
display: inline-flex;
|
|
433
330
|
position: relative;
|
|
434
331
|
vertical-align: top;
|
|
435
332
|
}
|
|
436
|
-
|
|
437
333
|
.e-schedule .e-table-container.e-translate {
|
|
438
|
-
transition: transform .3s ease 0s;
|
|
334
|
+
transition: transform 0.3s ease 0s;
|
|
439
335
|
}
|
|
440
|
-
|
|
441
336
|
.e-schedule .e-resource-tree-popup {
|
|
442
337
|
background: #232e3e;
|
|
443
338
|
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
|
@@ -446,37 +341,32 @@
|
|
|
446
341
|
width: 250px;
|
|
447
342
|
color: #fff;
|
|
448
343
|
}
|
|
449
|
-
|
|
450
344
|
.e-schedule .e-resource-tree-popup .e-resource-tree {
|
|
451
345
|
height: 100%;
|
|
452
346
|
overflow-y: auto;
|
|
453
347
|
}
|
|
454
|
-
|
|
455
348
|
.e-schedule .e-resource-tree-popup .e-resource-tree.e-treeview .e-text-content {
|
|
456
349
|
padding: 0 0 0 12px;
|
|
457
350
|
}
|
|
458
|
-
|
|
459
351
|
.e-schedule .e-resource-tree-popup-overlay.e-enable {
|
|
460
352
|
background-color: rgba(107, 114, 128, 0.75);
|
|
461
353
|
height: 100%;
|
|
462
354
|
left: 0;
|
|
463
|
-
opacity: .5;
|
|
355
|
+
opacity: 0.5;
|
|
464
356
|
position: absolute;
|
|
465
357
|
top: 0;
|
|
466
358
|
width: 100%;
|
|
467
359
|
}
|
|
468
|
-
|
|
469
360
|
.e-schedule .e-new-event {
|
|
470
361
|
background-color: #22d3ee;
|
|
471
362
|
border: 1px solid #000;
|
|
472
363
|
border-radius: 5px;
|
|
473
364
|
height: 100%;
|
|
474
|
-
opacity: .9;
|
|
365
|
+
opacity: 0.9;
|
|
475
366
|
position: relative;
|
|
476
367
|
width: 100%;
|
|
477
368
|
z-index: 1;
|
|
478
369
|
}
|
|
479
|
-
|
|
480
370
|
.e-schedule .e-new-event .e-title {
|
|
481
371
|
color: #000;
|
|
482
372
|
font-size: 12px;
|
|
@@ -489,7 +379,6 @@
|
|
|
489
379
|
white-space: normal;
|
|
490
380
|
word-wrap: break-word;
|
|
491
381
|
}
|
|
492
|
-
|
|
493
382
|
.e-schedule .e-schedule-table {
|
|
494
383
|
border: 0 none;
|
|
495
384
|
border-collapse: separate;
|
|
@@ -498,7 +387,6 @@
|
|
|
498
387
|
table-layout: fixed;
|
|
499
388
|
width: 100%;
|
|
500
389
|
}
|
|
501
|
-
|
|
502
390
|
.e-schedule .e-schedule-table > tbody > tr > th,
|
|
503
391
|
.e-schedule .e-schedule-table > tbody > tr > td {
|
|
504
392
|
box-sizing: border-box;
|
|
@@ -507,64 +395,51 @@
|
|
|
507
395
|
text-overflow: ellipsis;
|
|
508
396
|
white-space: nowrap;
|
|
509
397
|
}
|
|
510
|
-
|
|
511
398
|
.e-schedule .e-outer-table > tbody > tr > td {
|
|
512
399
|
padding: 0;
|
|
513
400
|
vertical-align: top;
|
|
514
401
|
}
|
|
515
|
-
|
|
516
402
|
.e-schedule .e-content-wrap {
|
|
517
403
|
position: relative;
|
|
518
404
|
}
|
|
519
|
-
|
|
520
405
|
.e-schedule .e-content-wrap .e-day-wrapper {
|
|
521
406
|
width: 100%;
|
|
522
407
|
}
|
|
523
|
-
|
|
524
408
|
.e-schedule .e-content-placeholder {
|
|
525
409
|
height: 100%;
|
|
526
410
|
position: relative;
|
|
527
411
|
width: 100%;
|
|
528
412
|
z-index: 99999;
|
|
529
413
|
}
|
|
530
|
-
|
|
531
414
|
.e-schedule .e-content-wrap,
|
|
532
415
|
.e-schedule .e-scroll-container {
|
|
533
416
|
-webkit-overflow-scrolling: touch;
|
|
534
417
|
overflow: auto;
|
|
535
418
|
}
|
|
536
|
-
|
|
537
419
|
.e-schedule .e-hide-childs > * {
|
|
538
420
|
display: none;
|
|
539
421
|
}
|
|
540
|
-
|
|
541
422
|
.e-schedule .e-recurrence-icon,
|
|
542
423
|
.e-schedule .e-recurrence-edit-icon {
|
|
543
424
|
font-size: 11px;
|
|
544
425
|
}
|
|
545
|
-
|
|
546
426
|
.e-schedule .e-left-icon,
|
|
547
427
|
.e-schedule .e-right-icon {
|
|
548
428
|
font-size: 8px;
|
|
549
429
|
}
|
|
550
|
-
|
|
551
430
|
.e-schedule .e-m-date {
|
|
552
431
|
cursor: pointer;
|
|
553
432
|
font-size: 20px;
|
|
554
433
|
}
|
|
555
|
-
|
|
556
434
|
.e-schedule .e-m-date:hover {
|
|
557
435
|
text-decoration: underline;
|
|
558
436
|
}
|
|
559
|
-
|
|
560
437
|
.e-schedule .e-m-day {
|
|
561
438
|
font-size: 12px;
|
|
562
439
|
}
|
|
563
|
-
|
|
564
440
|
.e-schedule.e-device .e-m-date:hover {
|
|
565
441
|
text-decoration: none;
|
|
566
442
|
}
|
|
567
|
-
|
|
568
443
|
.e-schedule .e-block-appointment {
|
|
569
444
|
background: #374151;
|
|
570
445
|
border-radius: 2px;
|
|
@@ -573,7 +448,6 @@
|
|
|
573
448
|
overflow: hidden;
|
|
574
449
|
position: absolute;
|
|
575
450
|
}
|
|
576
|
-
|
|
577
451
|
.e-schedule .e-block-appointment .e-subject {
|
|
578
452
|
overflow: hidden;
|
|
579
453
|
overflow-wrap: break-word;
|
|
@@ -581,37 +455,30 @@
|
|
|
581
455
|
white-space: normal;
|
|
582
456
|
word-wrap: break-word;
|
|
583
457
|
}
|
|
584
|
-
|
|
585
458
|
.e-schedule .e-block-indicator {
|
|
586
459
|
color: #fff;
|
|
587
460
|
float: right;
|
|
588
461
|
padding: 0 5px;
|
|
589
462
|
z-index: 1;
|
|
590
463
|
}
|
|
591
|
-
|
|
592
464
|
.e-schedule.e-rtl .e-block-indicator {
|
|
593
465
|
float: left;
|
|
594
466
|
}
|
|
595
|
-
|
|
596
467
|
.e-schedule .e-timeline-view .e-block-indicator,
|
|
597
468
|
.e-schedule .e-timeline-month-view .e-block-indicator {
|
|
598
469
|
position: absolute;
|
|
599
470
|
top: 3px;
|
|
600
471
|
}
|
|
601
|
-
|
|
602
472
|
.e-schedule .e-appointment {
|
|
603
473
|
opacity: 1;
|
|
604
474
|
transition: opacity 100ms linear;
|
|
605
475
|
}
|
|
606
|
-
|
|
607
476
|
.e-schedule .e-appointment .e-subject.e-disable {
|
|
608
477
|
display: none;
|
|
609
478
|
}
|
|
610
|
-
|
|
611
479
|
.e-schedule .e-appointment .e-inline-appointment {
|
|
612
480
|
z-index: 1;
|
|
613
481
|
}
|
|
614
|
-
|
|
615
482
|
.e-schedule .e-appointment .e-inline-subject {
|
|
616
483
|
background-color: transparent;
|
|
617
484
|
border: 0;
|
|
@@ -622,50 +489,35 @@
|
|
|
622
489
|
padding-top: 4px;
|
|
623
490
|
width: 100%;
|
|
624
491
|
}
|
|
625
|
-
|
|
626
492
|
.e-schedule .e-appointment.e-event-action {
|
|
627
|
-
opacity: .4;
|
|
493
|
+
opacity: 0.4;
|
|
628
494
|
}
|
|
629
|
-
|
|
630
495
|
.e-schedule .e-appointment.e-allow-select {
|
|
631
496
|
pointer-events: none;
|
|
632
497
|
}
|
|
633
|
-
|
|
634
498
|
.e-schedule .e-read-only {
|
|
635
|
-
opacity: .8;
|
|
499
|
+
opacity: 0.8;
|
|
636
500
|
}
|
|
637
|
-
|
|
638
|
-
.e-schedule.e-event-action .e-appointment:not(.e-schedule-event-clone),
|
|
639
|
-
.e-schedule.e-event-action .e-block-appointment {
|
|
501
|
+
.e-schedule.e-event-action .e-appointment:not(.e-schedule-event-clone), .e-schedule.e-event-action .e-block-appointment {
|
|
640
502
|
pointer-events: none;
|
|
641
503
|
}
|
|
642
|
-
|
|
643
|
-
.e-schedule.e-event-action .e-drag-clone,
|
|
644
|
-
.e-schedule.e-event-action .e-timeline-view .e-drag-clone {
|
|
504
|
+
.e-schedule.e-event-action .e-drag-clone, .e-schedule.e-event-action .e-timeline-view .e-drag-clone {
|
|
645
505
|
cursor: move;
|
|
646
506
|
}
|
|
647
|
-
|
|
648
507
|
.e-schedule.e-event-action .e-drag-clone .e-top-handler,
|
|
649
|
-
.e-schedule.e-event-action .e-drag-clone .e-bottom-handler,
|
|
650
|
-
.e-schedule.e-event-action .e-timeline-view .e-drag-clone .e-top-handler,
|
|
508
|
+
.e-schedule.e-event-action .e-drag-clone .e-bottom-handler, .e-schedule.e-event-action .e-timeline-view .e-drag-clone .e-top-handler,
|
|
651
509
|
.e-schedule.e-event-action .e-timeline-view .e-drag-clone .e-bottom-handler {
|
|
652
510
|
pointer-events: none;
|
|
653
511
|
}
|
|
654
|
-
|
|
655
512
|
.e-schedule.e-event-action .e-vertical-view .e-appointment-wrapper .e-resize-clone {
|
|
656
513
|
cursor: ns-resize;
|
|
657
514
|
}
|
|
658
|
-
|
|
659
|
-
.e-schedule.e-event-action .e-timeline-view .e-resize-clone,
|
|
660
|
-
.e-schedule.e-event-action .e-timeline-month-view .e-resize-clone,
|
|
661
|
-
.e-schedule.e-event-action .e-all-day-appointment-wrapper .e-resize-clone {
|
|
515
|
+
.e-schedule.e-event-action .e-timeline-view .e-resize-clone, .e-schedule.e-event-action .e-timeline-month-view .e-resize-clone, .e-schedule.e-event-action .e-all-day-appointment-wrapper .e-resize-clone {
|
|
662
516
|
cursor: ew-resize;
|
|
663
517
|
}
|
|
664
|
-
|
|
665
518
|
.e-schedule.e-device .e-appointment {
|
|
666
519
|
overflow: hidden;
|
|
667
520
|
}
|
|
668
|
-
|
|
669
521
|
.e-schedule.e-device .e-appointment.e-appointment-border .e-top-bottom-resize {
|
|
670
522
|
height: 10px;
|
|
671
523
|
left: 50%;
|
|
@@ -673,7 +525,6 @@
|
|
|
673
525
|
transform: translateX(-50%);
|
|
674
526
|
width: 100%;
|
|
675
527
|
}
|
|
676
|
-
|
|
677
528
|
.e-schedule.e-device .e-appointment.e-appointment-border .e-left-right-resize {
|
|
678
529
|
border-radius: 50%;
|
|
679
530
|
height: 100%;
|
|
@@ -682,79 +533,63 @@
|
|
|
682
533
|
transform: translateY(-50%);
|
|
683
534
|
width: 10px;
|
|
684
535
|
}
|
|
685
|
-
|
|
686
536
|
.e-schedule.e-device .e-appointment.e-appointment-border .e-top-handler .e-top-bottom-resize {
|
|
687
537
|
margin-top: -8px;
|
|
688
538
|
}
|
|
689
|
-
|
|
690
539
|
.e-schedule.e-device .e-appointment.e-appointment-border .e-bottom-handler .e-top-bottom-resize {
|
|
691
540
|
margin-top: 8px;
|
|
692
541
|
}
|
|
693
|
-
|
|
694
542
|
.e-schedule.e-device .e-appointment.e-appointment-border .e-left-handler .e-left-right-resize {
|
|
695
543
|
margin-left: -8px;
|
|
696
544
|
}
|
|
697
|
-
|
|
698
545
|
.e-schedule.e-device .e-appointment.e-appointment-border .e-right-handler .e-left-right-resize {
|
|
699
546
|
margin-left: 8px;
|
|
700
547
|
}
|
|
701
|
-
|
|
702
548
|
.e-schedule .e-timeline-year-view .e-event-resize.e-left-handler, .e-schedule .e-timeline-year-view .e-event-resize.e-right-handler {
|
|
703
549
|
height: 100%;
|
|
704
550
|
width: 5px;
|
|
705
551
|
}
|
|
706
|
-
|
|
707
552
|
.e-schedule .e-timeline-year-view .e-event-resize.e-top-handler, .e-schedule .e-timeline-year-view .e-event-resize.e-bottom-handler {
|
|
708
553
|
height: 5px;
|
|
709
554
|
width: 100%;
|
|
710
555
|
}
|
|
711
|
-
|
|
712
556
|
.e-schedule .e-event-resize {
|
|
713
557
|
position: absolute;
|
|
714
558
|
}
|
|
715
|
-
|
|
716
559
|
.e-schedule .e-event-resize.e-left-handler, .e-schedule .e-event-resize.e-right-handler {
|
|
717
560
|
height: 100%;
|
|
718
561
|
width: 10px;
|
|
719
562
|
}
|
|
720
|
-
|
|
721
563
|
.e-schedule .e-event-resize.e-left-handler {
|
|
722
564
|
cursor: ew-resize;
|
|
723
565
|
float: left;
|
|
724
566
|
left: 0;
|
|
725
567
|
}
|
|
726
|
-
|
|
727
568
|
.e-schedule .e-event-resize.e-right-handler {
|
|
728
569
|
cursor: e-resize;
|
|
729
570
|
float: right;
|
|
730
571
|
right: 0;
|
|
731
572
|
}
|
|
732
|
-
|
|
733
573
|
.e-schedule .e-event-resize.e-top-handler, .e-schedule .e-event-resize.e-bottom-handler {
|
|
734
574
|
height: 10px;
|
|
735
575
|
width: 100%;
|
|
736
576
|
}
|
|
737
|
-
|
|
738
577
|
.e-schedule .e-event-resize.e-top-handler {
|
|
739
578
|
cursor: ns-resize;
|
|
740
579
|
top: 0;
|
|
741
580
|
}
|
|
742
|
-
|
|
743
581
|
.e-schedule .e-event-resize.e-bottom-handler {
|
|
744
582
|
bottom: 0;
|
|
745
583
|
cursor: ns-resize;
|
|
746
584
|
}
|
|
747
|
-
|
|
748
585
|
.e-schedule .e-vertical-view.e-timescale-disable .e-content-table,
|
|
749
586
|
.e-schedule .e-vertical-view.e-timescale-disable .e-content-wrap {
|
|
750
587
|
height: 100%;
|
|
751
588
|
}
|
|
752
|
-
|
|
753
589
|
.e-schedule .e-vertical-view.e-timescale-disable .e-all-day-row,
|
|
754
590
|
.e-schedule .e-vertical-view.e-timescale-disable .e-all-day-cells {
|
|
755
591
|
height: 0 !important;
|
|
756
592
|
}
|
|
757
|
-
|
|
758
593
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment {
|
|
759
594
|
background: #22d3ee;
|
|
760
595
|
border: 1px solid #4b5563;
|
|
@@ -767,7 +602,6 @@
|
|
|
767
602
|
overflow: hidden;
|
|
768
603
|
position: absolute;
|
|
769
604
|
}
|
|
770
|
-
|
|
771
605
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-appointment-details {
|
|
772
606
|
display: -ms-flexbox;
|
|
773
607
|
display: flex;
|
|
@@ -776,13 +610,11 @@
|
|
|
776
610
|
padding: 2px 4px 0 2px;
|
|
777
611
|
text-align: left;
|
|
778
612
|
}
|
|
779
|
-
|
|
780
613
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-inner-wrap {
|
|
781
614
|
-ms-flex: auto;
|
|
782
615
|
flex: auto;
|
|
783
616
|
overflow: hidden;
|
|
784
617
|
}
|
|
785
|
-
|
|
786
618
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-subject {
|
|
787
619
|
font-size: 13px;
|
|
788
620
|
font-weight: 500;
|
|
@@ -795,7 +627,6 @@
|
|
|
795
627
|
white-space: normal;
|
|
796
628
|
word-wrap: break-word;
|
|
797
629
|
}
|
|
798
|
-
|
|
799
630
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-time,
|
|
800
631
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-location {
|
|
801
632
|
font-size: 11px;
|
|
@@ -803,42 +634,34 @@
|
|
|
803
634
|
padding-top: 1px;
|
|
804
635
|
text-overflow: ellipsis;
|
|
805
636
|
}
|
|
806
|
-
|
|
807
637
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-disable {
|
|
808
638
|
display: none;
|
|
809
639
|
}
|
|
810
|
-
|
|
811
640
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-recurrence-icon,
|
|
812
641
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-recurrence-edit-icon {
|
|
813
642
|
line-height: 54px;
|
|
814
643
|
padding: 0 5px;
|
|
815
644
|
}
|
|
816
|
-
|
|
817
645
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-left-icon,
|
|
818
646
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment .e-right-icon {
|
|
819
647
|
line-height: 54px;
|
|
820
648
|
padding: 0 2px;
|
|
821
649
|
}
|
|
822
|
-
|
|
823
650
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment.e-appointment-border, .e-schedule .e-vertical-view.e-timescale-disable .e-appointment:focus {
|
|
824
651
|
border: 0;
|
|
825
652
|
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
826
653
|
}
|
|
827
|
-
|
|
828
654
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment.e-allow-select {
|
|
829
655
|
pointer-events: none;
|
|
830
656
|
}
|
|
831
|
-
|
|
832
657
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment-wrapper {
|
|
833
658
|
position: absolute;
|
|
834
659
|
width: 0;
|
|
835
660
|
}
|
|
836
|
-
|
|
837
661
|
.e-schedule .e-vertical-view.e-timescale-disable .e-work-cells {
|
|
838
662
|
height: auto;
|
|
839
663
|
vertical-align: top;
|
|
840
664
|
}
|
|
841
|
-
|
|
842
665
|
.e-schedule .e-vertical-view.e-timescale-disable .e-more-indicator {
|
|
843
666
|
color: #9ca3af;
|
|
844
667
|
cursor: pointer;
|
|
@@ -849,24 +672,19 @@
|
|
|
849
672
|
position: absolute;
|
|
850
673
|
text-overflow: ellipsis;
|
|
851
674
|
}
|
|
852
|
-
|
|
853
675
|
.e-schedule .e-vertical-view.e-timescale-disable .e-more-indicator:focus {
|
|
854
676
|
text-decoration: underline;
|
|
855
677
|
}
|
|
856
|
-
|
|
857
678
|
.e-schedule .e-vertical-view .e-left-indent {
|
|
858
679
|
width: 85px;
|
|
859
680
|
}
|
|
860
|
-
|
|
861
681
|
.e-schedule .e-vertical-view .e-left-indent .e-all-day-cells {
|
|
862
682
|
position: relative;
|
|
863
683
|
}
|
|
864
|
-
|
|
865
684
|
.e-schedule .e-vertical-view .e-date-header-wrap table col,
|
|
866
685
|
.e-schedule .e-vertical-view .e-content-wrap table col {
|
|
867
686
|
width: 36px;
|
|
868
687
|
}
|
|
869
|
-
|
|
870
688
|
.e-schedule .e-vertical-view .e-resource-cells {
|
|
871
689
|
color: #fff;
|
|
872
690
|
font-size: 12px;
|
|
@@ -874,52 +692,43 @@
|
|
|
874
692
|
padding: 8px;
|
|
875
693
|
padding-left: 15px;
|
|
876
694
|
}
|
|
877
|
-
|
|
878
695
|
.e-schedule .e-vertical-view .e-header-cells {
|
|
879
696
|
font-size: 12px;
|
|
880
697
|
height: 60px;
|
|
881
698
|
padding: 8px 8px 0;
|
|
882
699
|
}
|
|
883
|
-
|
|
884
700
|
.e-schedule .e-vertical-view .e-header-cells .e-header-day {
|
|
885
701
|
display: table;
|
|
886
702
|
font-size: 12px;
|
|
887
703
|
line-height: 18px;
|
|
888
704
|
padding-bottom: 4px;
|
|
889
705
|
}
|
|
890
|
-
|
|
891
706
|
.e-schedule .e-vertical-view .e-header-cells .e-header-date {
|
|
892
707
|
cursor: pointer;
|
|
893
708
|
display: table;
|
|
894
709
|
font-size: 16px;
|
|
895
710
|
line-height: 24px;
|
|
896
711
|
}
|
|
897
|
-
|
|
898
712
|
.e-schedule .e-vertical-view .e-header-cells .e-header-date:hover {
|
|
899
713
|
text-decoration: underline;
|
|
900
714
|
}
|
|
901
|
-
|
|
902
715
|
.e-schedule .e-vertical-view .e-header-cells.e-disable-dates .e-header-day {
|
|
903
716
|
cursor: default;
|
|
904
|
-
opacity: .35;
|
|
717
|
+
opacity: 0.35;
|
|
905
718
|
}
|
|
906
|
-
|
|
907
719
|
.e-schedule .e-vertical-view .e-header-cells.e-disable-dates .e-header-date {
|
|
908
720
|
cursor: default;
|
|
909
|
-
opacity: .35;
|
|
721
|
+
opacity: 0.35;
|
|
910
722
|
}
|
|
911
|
-
|
|
912
723
|
.e-schedule .e-vertical-view .e-header-cells.e-disable-dates .e-header-date:hover {
|
|
913
724
|
text-decoration: none;
|
|
914
725
|
}
|
|
915
|
-
|
|
916
726
|
.e-schedule .e-vertical-view .e-row-count-wrapper {
|
|
917
727
|
display: block;
|
|
918
728
|
height: 100%;
|
|
919
729
|
pointer-events: none;
|
|
920
730
|
position: relative;
|
|
921
731
|
}
|
|
922
|
-
|
|
923
732
|
.e-schedule .e-vertical-view .e-row-count-wrapper .e-more-indicator {
|
|
924
733
|
bottom: 0;
|
|
925
734
|
color: #9ca3af;
|
|
@@ -932,15 +741,12 @@
|
|
|
932
741
|
text-overflow: ellipsis;
|
|
933
742
|
width: 100%;
|
|
934
743
|
}
|
|
935
|
-
|
|
936
744
|
.e-schedule .e-vertical-view .e-row-count-wrapper .e-more-indicator:focus {
|
|
937
745
|
text-decoration: underline;
|
|
938
746
|
}
|
|
939
|
-
|
|
940
747
|
.e-schedule .e-vertical-view .e-row-count-wrapper.e-disable {
|
|
941
748
|
display: none;
|
|
942
749
|
}
|
|
943
|
-
|
|
944
750
|
.e-schedule .e-vertical-view .e-all-day-appointment-section {
|
|
945
751
|
bottom: 4px;
|
|
946
752
|
color: #d1d5db;
|
|
@@ -957,62 +763,49 @@
|
|
|
957
763
|
transition: transform 300ms ease-in-out;
|
|
958
764
|
width: 25px;
|
|
959
765
|
}
|
|
960
|
-
|
|
961
766
|
.e-schedule .e-vertical-view .e-all-day-appointment-section.e-disable {
|
|
962
767
|
display: none;
|
|
963
768
|
}
|
|
964
|
-
|
|
965
769
|
.e-schedule .e-vertical-view .e-all-day-appointment-section.e-appointment-expand {
|
|
966
770
|
transform: rotate(0deg);
|
|
967
771
|
}
|
|
968
|
-
|
|
969
772
|
.e-schedule .e-vertical-view .e-all-day-appointment-section.e-appointment-collapse {
|
|
970
773
|
transform: rotate(180deg);
|
|
971
774
|
}
|
|
972
|
-
|
|
973
775
|
.e-schedule .e-vertical-view .e-all-day-appointment-section:hover, .e-schedule .e-vertical-view .e-all-day-appointment-section:focus {
|
|
974
776
|
background: #4b5563;
|
|
975
777
|
border-radius: 100%;
|
|
976
778
|
}
|
|
977
|
-
|
|
978
779
|
.e-schedule .e-vertical-view .e-appointment-hide {
|
|
979
780
|
opacity: 0;
|
|
980
781
|
}
|
|
981
|
-
|
|
982
782
|
.e-schedule .e-vertical-view .e-all-day-cells {
|
|
983
783
|
height: 0;
|
|
984
784
|
padding: 0;
|
|
985
785
|
text-align: center;
|
|
986
786
|
vertical-align: top;
|
|
987
787
|
}
|
|
988
|
-
|
|
989
788
|
.e-schedule .e-vertical-view .e-all-day-cells:first-child.e-animate {
|
|
990
789
|
transition: 250ms ease-out;
|
|
991
790
|
}
|
|
992
|
-
|
|
993
791
|
.e-schedule .e-vertical-view .e-time-cells-wrap table td,
|
|
994
792
|
.e-schedule .e-vertical-view .e-work-cells {
|
|
995
793
|
font-size: 12px;
|
|
996
794
|
height: 36px;
|
|
997
795
|
text-align: center;
|
|
998
796
|
}
|
|
999
|
-
|
|
1000
797
|
.e-schedule .e-vertical-view .e-work-cells {
|
|
1001
798
|
width: 36px;
|
|
1002
799
|
}
|
|
1003
|
-
|
|
1004
800
|
.e-schedule .e-vertical-view .e-work-cells.e-disable-dates {
|
|
1005
801
|
background-color: #374151;
|
|
1006
802
|
}
|
|
1007
|
-
|
|
1008
803
|
.e-schedule .e-vertical-view .e-work-cells.e-disable-dates:hover {
|
|
1009
804
|
background-color: #374151;
|
|
1010
805
|
}
|
|
1011
|
-
|
|
1012
806
|
.e-schedule .e-vertical-view .e-current-time {
|
|
1013
807
|
font-size: 10px;
|
|
1014
808
|
}
|
|
1015
|
-
|
|
1016
809
|
.e-schedule .e-vertical-view .e-clone-time-indicator,
|
|
1017
810
|
.e-schedule .e-vertical-view .e-current-time,
|
|
1018
811
|
.e-schedule .e-vertical-view .e-previous-timeline,
|
|
@@ -1024,44 +817,35 @@
|
|
|
1024
817
|
top: 0;
|
|
1025
818
|
width: 100%;
|
|
1026
819
|
}
|
|
1027
|
-
|
|
1028
820
|
.e-schedule .e-vertical-view .e-previous-timeline,
|
|
1029
821
|
.e-schedule .e-vertical-view .e-current-timeline {
|
|
1030
822
|
z-index: 1;
|
|
1031
823
|
}
|
|
1032
|
-
|
|
1033
824
|
.e-schedule .e-vertical-view .e-date-header-wrap {
|
|
1034
825
|
max-height: 300px;
|
|
1035
826
|
overflow: hidden;
|
|
1036
827
|
}
|
|
1037
|
-
|
|
1038
828
|
.e-schedule .e-vertical-view .e-date-header-wrap.e-all-day-scroll {
|
|
1039
829
|
border-bottom: 1px solid #4b5563;
|
|
1040
830
|
overflow-y: auto;
|
|
1041
831
|
}
|
|
1042
|
-
|
|
1043
832
|
.e-schedule .e-vertical-view .e-date-header-wrap.e-all-day-scroll .e-header-row .e-resource-cells {
|
|
1044
833
|
position: sticky;
|
|
1045
834
|
}
|
|
1046
|
-
|
|
1047
835
|
.e-schedule .e-vertical-view .e-date-header-wrap.e-all-day-scroll .e-header-row .e-header-cells {
|
|
1048
836
|
position: sticky;
|
|
1049
837
|
top: 0;
|
|
1050
838
|
}
|
|
1051
|
-
|
|
1052
839
|
.e-schedule .e-vertical-view .e-date-header-wrap.e-all-day-auto {
|
|
1053
840
|
max-height: unset;
|
|
1054
841
|
}
|
|
1055
|
-
|
|
1056
842
|
.e-schedule .e-vertical-view .e-time-cells-wrap {
|
|
1057
843
|
overflow: hidden;
|
|
1058
844
|
}
|
|
1059
|
-
|
|
1060
845
|
.e-schedule .e-vertical-view .e-content-wrap,
|
|
1061
846
|
.e-schedule .e-vertical-view .e-time-cells-wrap {
|
|
1062
847
|
position: relative;
|
|
1063
848
|
}
|
|
1064
|
-
|
|
1065
849
|
.e-schedule .e-vertical-view .e-timeline-wrapper,
|
|
1066
850
|
.e-schedule .e-vertical-view .e-day-wrapper,
|
|
1067
851
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper {
|
|
@@ -1070,11 +854,9 @@
|
|
|
1070
854
|
padding: 0;
|
|
1071
855
|
position: relative;
|
|
1072
856
|
}
|
|
1073
|
-
|
|
1074
857
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:not(.e-schedule-event-clone) {
|
|
1075
858
|
cursor: default;
|
|
1076
859
|
}
|
|
1077
|
-
|
|
1078
860
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment {
|
|
1079
861
|
background: #22d3ee;
|
|
1080
862
|
border: 1px solid #4b5563;
|
|
@@ -1086,7 +868,6 @@
|
|
|
1086
868
|
overflow: hidden;
|
|
1087
869
|
position: absolute;
|
|
1088
870
|
}
|
|
1089
|
-
|
|
1090
871
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment .e-appointment-details {
|
|
1091
872
|
display: -ms-flexbox;
|
|
1092
873
|
display: flex;
|
|
@@ -1096,7 +877,6 @@
|
|
|
1096
877
|
overflow: hidden;
|
|
1097
878
|
padding: 1px 0 1px 4px;
|
|
1098
879
|
}
|
|
1099
|
-
|
|
1100
880
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment .e-appointment-details .e-subject {
|
|
1101
881
|
-ms-flex: auto;
|
|
1102
882
|
flex: auto;
|
|
@@ -1105,13 +885,11 @@
|
|
|
1105
885
|
overflow: hidden;
|
|
1106
886
|
text-overflow: ellipsis;
|
|
1107
887
|
}
|
|
1108
|
-
|
|
1109
888
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment .e-appointment-details .e-time {
|
|
1110
889
|
display: block;
|
|
1111
890
|
font-size: 11px;
|
|
1112
891
|
padding: 1px 4px 2px 0;
|
|
1113
892
|
}
|
|
1114
|
-
|
|
1115
893
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment .e-appointment-details .e-recurrence-icon,
|
|
1116
894
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment .e-appointment-details .e-recurrence-edit-icon,
|
|
1117
895
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment .e-appointment-details .e-left-icon,
|
|
@@ -1119,20 +897,16 @@
|
|
|
1119
897
|
line-height: 18px;
|
|
1120
898
|
padding: 0 2px;
|
|
1121
899
|
}
|
|
1122
|
-
|
|
1123
900
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment .e-disable {
|
|
1124
901
|
display: none;
|
|
1125
902
|
}
|
|
1126
|
-
|
|
1127
903
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment.e-appointment-border, .e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:focus {
|
|
1128
904
|
border: 0;
|
|
1129
905
|
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
1130
906
|
}
|
|
1131
|
-
|
|
1132
907
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment:not(.e-schedule-event-clone) {
|
|
1133
908
|
cursor: default;
|
|
1134
909
|
}
|
|
1135
|
-
|
|
1136
910
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment {
|
|
1137
911
|
background: #22d3ee;
|
|
1138
912
|
border: 1px solid #4b5563;
|
|
@@ -1141,7 +915,6 @@
|
|
|
1141
915
|
overflow: hidden;
|
|
1142
916
|
position: absolute;
|
|
1143
917
|
}
|
|
1144
|
-
|
|
1145
918
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-appointment-details {
|
|
1146
919
|
-ms-flex: auto;
|
|
1147
920
|
flex: auto;
|
|
@@ -1149,7 +922,6 @@
|
|
|
1149
922
|
text-align: left;
|
|
1150
923
|
line-height: 18px;
|
|
1151
924
|
}
|
|
1152
|
-
|
|
1153
925
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1154
926
|
font-size: 13px;
|
|
1155
927
|
font-weight: 500;
|
|
@@ -1162,7 +934,6 @@
|
|
|
1162
934
|
white-space: normal;
|
|
1163
935
|
word-wrap: break-word;
|
|
1164
936
|
}
|
|
1165
|
-
|
|
1166
937
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-time,
|
|
1167
938
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-location {
|
|
1168
939
|
font-size: 11px;
|
|
@@ -1170,15 +941,12 @@
|
|
|
1170
941
|
padding-top: 1px;
|
|
1171
942
|
text-overflow: ellipsis;
|
|
1172
943
|
}
|
|
1173
|
-
|
|
1174
944
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-time {
|
|
1175
945
|
display: block;
|
|
1176
946
|
}
|
|
1177
|
-
|
|
1178
947
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-disable {
|
|
1179
948
|
display: none;
|
|
1180
949
|
}
|
|
1181
|
-
|
|
1182
950
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
1183
951
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-edit-icon {
|
|
1184
952
|
bottom: 5px;
|
|
@@ -1190,132 +958,105 @@
|
|
|
1190
958
|
right: 5px;
|
|
1191
959
|
width: auto;
|
|
1192
960
|
}
|
|
1193
|
-
|
|
1194
961
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-indicator {
|
|
1195
962
|
display: block;
|
|
1196
963
|
margin: 0 45%;
|
|
1197
964
|
}
|
|
1198
|
-
|
|
1199
965
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-up-icon,
|
|
1200
966
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-down-icon {
|
|
1201
967
|
font-size: 8px;
|
|
1202
968
|
}
|
|
1203
|
-
|
|
1204
969
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-up-icon {
|
|
1205
970
|
margin-top: 3px;
|
|
1206
971
|
top: 0;
|
|
1207
972
|
}
|
|
1208
|
-
|
|
1209
973
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-down-icon {
|
|
1210
974
|
bottom: 6px;
|
|
1211
975
|
position: absolute;
|
|
1212
976
|
}
|
|
1213
|
-
|
|
1214
977
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment.e-appointment-border, .e-schedule .e-vertical-view .e-day-wrapper .e-appointment:focus {
|
|
1215
978
|
border: 0;
|
|
1216
979
|
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
1217
980
|
}
|
|
1218
|
-
|
|
1219
981
|
.e-schedule .e-vertical-view.e-day-view .e-header-date {
|
|
1220
982
|
cursor: default;
|
|
1221
983
|
}
|
|
1222
|
-
|
|
1223
984
|
.e-schedule .e-vertical-view.e-day-view .e-header-date:hover {
|
|
1224
985
|
text-decoration: none;
|
|
1225
986
|
}
|
|
1226
|
-
|
|
1227
987
|
.e-schedule.e-device .e-vertical-view .e-header-cells .e-header-day {
|
|
1228
988
|
font-size: 14px;
|
|
1229
989
|
}
|
|
1230
|
-
|
|
1231
990
|
.e-schedule.e-device .e-vertical-view .e-header-cells .e-header-date {
|
|
1232
991
|
font-size: 18px;
|
|
1233
992
|
}
|
|
1234
|
-
|
|
1235
993
|
.e-schedule.e-device .e-vertical-view .e-header-cells .e-header-date:hover {
|
|
1236
994
|
text-decoration: none;
|
|
1237
995
|
}
|
|
1238
|
-
|
|
1239
996
|
.e-schedule.e-device .e-vertical-view .e-left-indent {
|
|
1240
997
|
width: 35px;
|
|
1241
998
|
}
|
|
1242
|
-
|
|
1243
999
|
.e-schedule.e-device .e-vertical-view .e-clone-time-indicator,
|
|
1244
1000
|
.e-schedule.e-device .e-vertical-view .e-current-time {
|
|
1245
1001
|
font-size: 9px;
|
|
1246
1002
|
}
|
|
1247
|
-
|
|
1248
1003
|
.e-schedule.e-device .e-vertical-view .e-time-cells-wrap {
|
|
1249
1004
|
float: left;
|
|
1250
1005
|
width: 35px;
|
|
1251
1006
|
}
|
|
1252
|
-
|
|
1253
1007
|
.e-schedule.e-device .e-vertical-view .e-time-cells-wrap table td {
|
|
1254
1008
|
font-size: 11px;
|
|
1255
1009
|
}
|
|
1256
|
-
|
|
1257
1010
|
.e-schedule.e-device .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1258
1011
|
font-weight: 500;
|
|
1259
1012
|
min-height: auto;
|
|
1260
1013
|
}
|
|
1261
|
-
|
|
1262
1014
|
.e-schedule.e-rtl {
|
|
1263
1015
|
text-align: right;
|
|
1264
1016
|
}
|
|
1265
|
-
|
|
1266
1017
|
.e-schedule.e-rtl .e-vertical-view.e-timescale-disable .e-appointment-details {
|
|
1267
1018
|
text-align: right;
|
|
1268
1019
|
}
|
|
1269
|
-
|
|
1270
1020
|
.e-schedule.e-rtl .e-vertical-view .e-all-day-appointment-wrapper .e-appointment .e-appointment-details {
|
|
1271
1021
|
padding: 1px 4px 1px 0;
|
|
1272
1022
|
}
|
|
1273
|
-
|
|
1274
1023
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-appointment-details {
|
|
1275
1024
|
line-height: 15px;
|
|
1276
1025
|
text-align: right;
|
|
1277
1026
|
}
|
|
1278
|
-
|
|
1279
1027
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-subject {
|
|
1280
1028
|
font-weight: 500;
|
|
1281
1029
|
margin-left: 15px;
|
|
1282
1030
|
margin-right: auto;
|
|
1283
1031
|
}
|
|
1284
|
-
|
|
1285
1032
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-icon,
|
|
1286
1033
|
.e-schedule.e-rtl .e-vertical-view .e-day-wrapper .e-appointment .e-recurrence-edit-icon {
|
|
1287
1034
|
float: left;
|
|
1288
1035
|
left: 5px;
|
|
1289
1036
|
right: auto;
|
|
1290
1037
|
}
|
|
1291
|
-
|
|
1292
1038
|
.e-schedule.e-rtl.e-device .e-vertical-view .e-time-cells-wrap {
|
|
1293
1039
|
float: right;
|
|
1294
1040
|
}
|
|
1295
|
-
|
|
1296
1041
|
@media screen and (max-width: 480px) {
|
|
1297
1042
|
.e-schedule .e-vertical-view .e-left-indent {
|
|
1298
1043
|
width: 35px;
|
|
1299
1044
|
}
|
|
1300
1045
|
}
|
|
1301
|
-
|
|
1302
1046
|
.e-schedule .e-month-view .e-left-indent,
|
|
1303
1047
|
.e-schedule .e-month-agenda-view .e-left-indent {
|
|
1304
1048
|
border-right: 1px solid #4b5563;
|
|
1305
1049
|
width: 36px;
|
|
1306
1050
|
}
|
|
1307
|
-
|
|
1308
1051
|
.e-schedule .e-month-view .e-week-number-wrapper,
|
|
1309
1052
|
.e-schedule .e-month-agenda-view .e-week-number-wrapper {
|
|
1310
1053
|
overflow: hidden;
|
|
1311
1054
|
position: relative;
|
|
1312
1055
|
}
|
|
1313
|
-
|
|
1314
1056
|
.e-schedule .e-month-view .e-week-number-wrapper .e-schedule-table,
|
|
1315
1057
|
.e-schedule .e-month-agenda-view .e-week-number-wrapper .e-schedule-table {
|
|
1316
1058
|
height: 100%;
|
|
1317
1059
|
}
|
|
1318
|
-
|
|
1319
1060
|
.e-schedule .e-month-view .e-week-number-wrapper .e-week-number,
|
|
1320
1061
|
.e-schedule .e-month-agenda-view .e-week-number-wrapper .e-week-number {
|
|
1321
1062
|
color: #9ca3af;
|
|
@@ -1324,32 +1065,26 @@
|
|
|
1324
1065
|
vertical-align: top;
|
|
1325
1066
|
width: 36px;
|
|
1326
1067
|
}
|
|
1327
|
-
|
|
1328
1068
|
.e-schedule .e-month-view .e-content-wrap table tr:last-child td {
|
|
1329
1069
|
border-bottom-width: 0;
|
|
1330
1070
|
}
|
|
1331
|
-
|
|
1332
1071
|
.e-schedule .e-month-view .e-date-header-wrap {
|
|
1333
1072
|
font-size: 14px;
|
|
1334
1073
|
overflow: hidden;
|
|
1335
1074
|
}
|
|
1336
|
-
|
|
1337
1075
|
.e-schedule .e-month-view .e-week-number {
|
|
1338
1076
|
border-bottom: 1px solid #4b5563;
|
|
1339
1077
|
border-right: 1px solid #4b5563;
|
|
1340
1078
|
height: 70px;
|
|
1341
1079
|
}
|
|
1342
|
-
|
|
1343
1080
|
.e-schedule .e-month-view .e-content-wrap {
|
|
1344
1081
|
display: -ms-flexbox;
|
|
1345
1082
|
display: flex;
|
|
1346
1083
|
font-size: 14px;
|
|
1347
1084
|
}
|
|
1348
|
-
|
|
1349
1085
|
.e-schedule .e-month-view .e-date-header-wrap table col {
|
|
1350
1086
|
width: 36px;
|
|
1351
1087
|
}
|
|
1352
|
-
|
|
1353
1088
|
.e-schedule .e-month-view .e-resource-cells {
|
|
1354
1089
|
color: #fff;
|
|
1355
1090
|
font-size: 14px;
|
|
@@ -1357,45 +1092,36 @@
|
|
|
1357
1092
|
padding: 8px;
|
|
1358
1093
|
padding-left: 15px;
|
|
1359
1094
|
}
|
|
1360
|
-
|
|
1361
1095
|
.e-schedule .e-month-view .e-header-cells {
|
|
1362
1096
|
cursor: default;
|
|
1363
1097
|
font-weight: 400;
|
|
1364
1098
|
height: 34px;
|
|
1365
1099
|
padding: 8px;
|
|
1366
1100
|
}
|
|
1367
|
-
|
|
1368
1101
|
.e-schedule .e-month-view .e-content-table {
|
|
1369
1102
|
height: 100%;
|
|
1370
1103
|
}
|
|
1371
|
-
|
|
1372
1104
|
.e-schedule .e-month-view .e-work-cells {
|
|
1373
1105
|
height: 75px;
|
|
1374
1106
|
vertical-align: top;
|
|
1375
1107
|
width: 36px;
|
|
1376
1108
|
}
|
|
1377
|
-
|
|
1378
1109
|
.e-schedule .e-month-view .e-work-cells.e-disable-date .e-date-header {
|
|
1379
1110
|
visibility: hidden;
|
|
1380
1111
|
}
|
|
1381
|
-
|
|
1382
1112
|
.e-schedule .e-month-view .e-work-cells.e-disable-dates {
|
|
1383
1113
|
background-color: #374151;
|
|
1384
1114
|
}
|
|
1385
|
-
|
|
1386
1115
|
.e-schedule .e-month-view .e-work-cells.e-disable-dates .e-date-header {
|
|
1387
1116
|
cursor: default;
|
|
1388
|
-
opacity: .35;
|
|
1117
|
+
opacity: 0.35;
|
|
1389
1118
|
}
|
|
1390
|
-
|
|
1391
1119
|
.e-schedule .e-month-view .e-work-cells.e-disable-dates .e-date-header:hover {
|
|
1392
1120
|
text-decoration: none;
|
|
1393
1121
|
}
|
|
1394
|
-
|
|
1395
1122
|
.e-schedule .e-month-view .e-work-cells.e-disable-dates:hover {
|
|
1396
1123
|
background-color: #374151;
|
|
1397
1124
|
}
|
|
1398
|
-
|
|
1399
1125
|
.e-schedule .e-month-view .e-date-header {
|
|
1400
1126
|
cursor: pointer;
|
|
1401
1127
|
display: table;
|
|
@@ -1404,27 +1130,21 @@
|
|
|
1404
1130
|
margin: 3px 3px 2px;
|
|
1405
1131
|
text-align: center;
|
|
1406
1132
|
}
|
|
1407
|
-
|
|
1408
1133
|
.e-schedule .e-month-view .e-date-header:hover {
|
|
1409
1134
|
text-decoration: underline;
|
|
1410
1135
|
}
|
|
1411
|
-
|
|
1412
1136
|
.e-schedule .e-month-view .e-appointment-wrapper {
|
|
1413
1137
|
position: absolute;
|
|
1414
1138
|
}
|
|
1415
|
-
|
|
1416
1139
|
.e-schedule .e-month-view .e-new-event {
|
|
1417
1140
|
height: calc(100% - 25px);
|
|
1418
1141
|
}
|
|
1419
|
-
|
|
1420
1142
|
.e-schedule .e-month-view .e-block-indicator {
|
|
1421
1143
|
margin-top: -20px;
|
|
1422
1144
|
}
|
|
1423
|
-
|
|
1424
1145
|
.e-schedule .e-month-view .e-inline-appointment {
|
|
1425
1146
|
z-index: 1;
|
|
1426
1147
|
}
|
|
1427
|
-
|
|
1428
1148
|
.e-schedule .e-month-view .e-appointment {
|
|
1429
1149
|
background: #22d3ee;
|
|
1430
1150
|
border: 1px solid #4b5563;
|
|
@@ -1437,11 +1157,9 @@
|
|
|
1437
1157
|
overflow: hidden;
|
|
1438
1158
|
position: absolute;
|
|
1439
1159
|
}
|
|
1440
|
-
|
|
1441
1160
|
.e-schedule .e-month-view .e-appointment .e-disable {
|
|
1442
1161
|
display: none;
|
|
1443
1162
|
}
|
|
1444
|
-
|
|
1445
1163
|
.e-schedule .e-month-view .e-appointment .e-appointment-details {
|
|
1446
1164
|
display: -ms-flexbox;
|
|
1447
1165
|
display: flex;
|
|
@@ -1450,7 +1168,6 @@
|
|
|
1450
1168
|
line-height: 18px;
|
|
1451
1169
|
overflow: hidden;
|
|
1452
1170
|
}
|
|
1453
|
-
|
|
1454
1171
|
.e-schedule .e-month-view .e-appointment .e-appointment-details .e-subject {
|
|
1455
1172
|
-ms-flex: auto;
|
|
1456
1173
|
flex: auto;
|
|
@@ -1460,17 +1177,14 @@
|
|
|
1460
1177
|
padding: 1px 2px;
|
|
1461
1178
|
text-overflow: ellipsis;
|
|
1462
1179
|
}
|
|
1463
|
-
|
|
1464
1180
|
.e-schedule .e-month-view .e-appointment .e-appointment-details .e-inline-subject {
|
|
1465
1181
|
padding: 4px;
|
|
1466
1182
|
text-align: center;
|
|
1467
1183
|
}
|
|
1468
|
-
|
|
1469
1184
|
.e-schedule .e-month-view .e-appointment .e-appointment-details .e-time {
|
|
1470
1185
|
font-size: 11px;
|
|
1471
1186
|
padding: 1.5px;
|
|
1472
1187
|
}
|
|
1473
|
-
|
|
1474
1188
|
.e-schedule .e-month-view .e-appointment .e-appointment-details .e-recurrence-icon,
|
|
1475
1189
|
.e-schedule .e-month-view .e-appointment .e-appointment-details .e-recurrence-edit-icon,
|
|
1476
1190
|
.e-schedule .e-month-view .e-appointment .e-appointment-details .e-left-icon,
|
|
@@ -1478,21 +1192,17 @@
|
|
|
1478
1192
|
line-height: 26px;
|
|
1479
1193
|
padding: 0 2px;
|
|
1480
1194
|
}
|
|
1481
|
-
|
|
1482
1195
|
.e-schedule .e-month-view .e-appointment.e-appointment-border, .e-schedule .e-month-view .e-appointment:focus {
|
|
1483
1196
|
border: 0;
|
|
1484
1197
|
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
1485
1198
|
}
|
|
1486
|
-
|
|
1487
1199
|
.e-schedule .e-month-view .e-appointment.e-allow-select {
|
|
1488
1200
|
pointer-events: none;
|
|
1489
1201
|
}
|
|
1490
|
-
|
|
1491
1202
|
.e-schedule .e-month-view .e-appointment .e-subject {
|
|
1492
1203
|
padding: 2px;
|
|
1493
1204
|
width: 100%;
|
|
1494
1205
|
}
|
|
1495
|
-
|
|
1496
1206
|
.e-schedule .e-month-view .e-more-indicator {
|
|
1497
1207
|
color: #9ca3af;
|
|
1498
1208
|
cursor: pointer;
|
|
@@ -1503,21 +1213,17 @@
|
|
|
1503
1213
|
position: absolute;
|
|
1504
1214
|
text-overflow: ellipsis;
|
|
1505
1215
|
}
|
|
1506
|
-
|
|
1507
1216
|
.e-schedule .e-month-view .e-more-indicator:focus {
|
|
1508
1217
|
text-decoration: underline;
|
|
1509
1218
|
}
|
|
1510
|
-
|
|
1511
1219
|
.e-schedule.e-rtl .e-month-view .e-left-indent {
|
|
1512
1220
|
border-left: 1px solid #4b5563;
|
|
1513
1221
|
border-right-width: 0;
|
|
1514
1222
|
}
|
|
1515
|
-
|
|
1516
1223
|
.e-schedule.e-rtl .e-month-view .e-week-number {
|
|
1517
1224
|
border-left: 1px solid #4b5563;
|
|
1518
1225
|
border-right-width: 0;
|
|
1519
1226
|
}
|
|
1520
|
-
|
|
1521
1227
|
.e-schedule .e-year-view .e-calendar-wrapper {
|
|
1522
1228
|
display: -ms-flexbox;
|
|
1523
1229
|
display: flex;
|
|
@@ -1526,7 +1232,6 @@
|
|
|
1526
1232
|
-ms-flex-pack: center;
|
|
1527
1233
|
justify-content: center;
|
|
1528
1234
|
}
|
|
1529
|
-
|
|
1530
1235
|
.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
|
|
1531
1236
|
border: 0;
|
|
1532
1237
|
-ms-flex: 0 25%;
|
|
@@ -1535,27 +1240,22 @@
|
|
|
1535
1240
|
min-width: 260px;
|
|
1536
1241
|
padding: 10px;
|
|
1537
1242
|
}
|
|
1538
|
-
|
|
1539
1243
|
.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-header .e-title {
|
|
1540
1244
|
cursor: default;
|
|
1541
1245
|
}
|
|
1542
|
-
|
|
1543
1246
|
.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-content span.e-day {
|
|
1544
1247
|
display: block;
|
|
1545
1248
|
margin: 0 auto;
|
|
1546
1249
|
}
|
|
1547
|
-
|
|
1548
1250
|
.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-other-month {
|
|
1549
1251
|
color: #9ca3af;
|
|
1550
1252
|
pointer-events: visible;
|
|
1551
1253
|
-ms-touch-action: auto;
|
|
1552
1254
|
touch-action: auto;
|
|
1553
1255
|
}
|
|
1554
|
-
|
|
1555
1256
|
.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-other-month.e-today {
|
|
1556
|
-
opacity: .5;
|
|
1257
|
+
opacity: 0.5;
|
|
1557
1258
|
}
|
|
1558
|
-
|
|
1559
1259
|
.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-appointment,
|
|
1560
1260
|
.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-appointment-indicator {
|
|
1561
1261
|
background-color: #22d3ee;
|
|
@@ -1565,29 +1265,23 @@
|
|
|
1565
1265
|
position: relative;
|
|
1566
1266
|
width: 5px;
|
|
1567
1267
|
}
|
|
1568
|
-
|
|
1569
1268
|
.e-schedule .e-year-view .e-calendar-wrapper .e-work-cells.e-disable-dates {
|
|
1570
1269
|
background-color: #374151;
|
|
1571
1270
|
cursor: default;
|
|
1572
1271
|
}
|
|
1573
|
-
|
|
1574
1272
|
.e-schedule .e-year-view .e-calendar-wrapper .e-work-cells.e-disable-dates .e-day {
|
|
1575
1273
|
cursor: default;
|
|
1576
1274
|
}
|
|
1577
|
-
|
|
1578
1275
|
.e-schedule .e-year-view .e-calendar-wrapper .e-work-cells.e-disable-dates:hover {
|
|
1579
1276
|
background-color: #374151;
|
|
1580
1277
|
}
|
|
1581
|
-
|
|
1582
1278
|
.e-schedule .e-year-view .e-date-header-wrap {
|
|
1583
1279
|
font-size: 14px;
|
|
1584
1280
|
overflow: hidden;
|
|
1585
1281
|
}
|
|
1586
|
-
|
|
1587
1282
|
.e-schedule .e-year-view .e-date-header-wrap table col {
|
|
1588
1283
|
width: 36px;
|
|
1589
1284
|
}
|
|
1590
|
-
|
|
1591
1285
|
.e-schedule .e-year-view .e-date-header-wrap table td {
|
|
1592
1286
|
background-color: #1f2937;
|
|
1593
1287
|
border-color: #4b5563;
|
|
@@ -1596,11 +1290,9 @@
|
|
|
1596
1290
|
color: #d1d5db;
|
|
1597
1291
|
text-align: left;
|
|
1598
1292
|
}
|
|
1599
|
-
|
|
1600
1293
|
.e-schedule .e-year-view .e-date-header-wrap table td:first-child {
|
|
1601
1294
|
border-left-width: 0;
|
|
1602
1295
|
}
|
|
1603
|
-
|
|
1604
1296
|
.e-schedule .e-year-view .e-resource-cells {
|
|
1605
1297
|
color: #fff;
|
|
1606
1298
|
font-size: 14px;
|
|
@@ -1608,35 +1300,28 @@
|
|
|
1608
1300
|
padding: 8px;
|
|
1609
1301
|
padding-left: 15px;
|
|
1610
1302
|
}
|
|
1611
|
-
|
|
1612
1303
|
.e-schedule .e-year-view .e-content-wrap table td:first-child {
|
|
1613
1304
|
border-left-width: 0;
|
|
1614
1305
|
}
|
|
1615
|
-
|
|
1616
1306
|
.e-schedule .e-year-view .e-resource .e-month-calendar {
|
|
1617
1307
|
max-width: 100%;
|
|
1618
1308
|
min-width: 100%;
|
|
1619
1309
|
}
|
|
1620
|
-
|
|
1621
1310
|
.e-schedule .e-timeline-year-view .e-date-header-wrap,
|
|
1622
1311
|
.e-schedule .e-timeline-year-view .e-month-header-wrapper {
|
|
1623
1312
|
overflow: hidden;
|
|
1624
1313
|
position: relative;
|
|
1625
1314
|
}
|
|
1626
|
-
|
|
1627
1315
|
.e-schedule .e-timeline-year-view .e-month-header-wrapper .e-schedule-table {
|
|
1628
1316
|
height: 100%;
|
|
1629
1317
|
}
|
|
1630
|
-
|
|
1631
1318
|
.e-schedule .e-timeline-year-view .e-month-header-wrapper .e-schedule-table.e-auto-height {
|
|
1632
1319
|
height: auto;
|
|
1633
1320
|
}
|
|
1634
|
-
|
|
1635
1321
|
.e-schedule .e-timeline-year-view .e-date-header-wrap table col,
|
|
1636
1322
|
.e-schedule .e-timeline-year-view .e-content-wrap table col {
|
|
1637
1323
|
width: 100px;
|
|
1638
1324
|
}
|
|
1639
|
-
|
|
1640
1325
|
.e-schedule .e-timeline-year-view .e-resource-left-td,
|
|
1641
1326
|
.e-schedule .e-timeline-year-view .e-date-header-wrap table td {
|
|
1642
1327
|
background-color: #1f2937;
|
|
@@ -1646,12 +1331,10 @@
|
|
|
1646
1331
|
color: #d1d5db;
|
|
1647
1332
|
text-align: center;
|
|
1648
1333
|
}
|
|
1649
|
-
|
|
1650
1334
|
.e-schedule .e-timeline-year-view .e-resource-left-td.e-current-day,
|
|
1651
1335
|
.e-schedule .e-timeline-year-view .e-date-header-wrap table td.e-current-day {
|
|
1652
1336
|
color: #22d3ee;
|
|
1653
1337
|
}
|
|
1654
|
-
|
|
1655
1338
|
.e-schedule .e-timeline-year-view .e-resource-text {
|
|
1656
1339
|
color: #fff;
|
|
1657
1340
|
font-size: 13px;
|
|
@@ -1659,22 +1342,18 @@
|
|
|
1659
1342
|
padding: 4px 12px;
|
|
1660
1343
|
text-overflow: ellipsis;
|
|
1661
1344
|
}
|
|
1662
|
-
|
|
1663
1345
|
.e-schedule .e-timeline-year-view .e-resource-left-td {
|
|
1664
1346
|
vertical-align: middle;
|
|
1665
1347
|
width: 200px;
|
|
1666
1348
|
}
|
|
1667
|
-
|
|
1668
1349
|
.e-schedule .e-timeline-year-view .e-left-indent-wrap .e-resource-cells,
|
|
1669
1350
|
.e-schedule .e-timeline-year-view .e-date-header-wrap .e-resource-cells {
|
|
1670
1351
|
height: 40px;
|
|
1671
1352
|
}
|
|
1672
|
-
|
|
1673
1353
|
.e-schedule .e-timeline-year-view .e-resource-column-wrap {
|
|
1674
1354
|
overflow: hidden;
|
|
1675
1355
|
position: relative;
|
|
1676
1356
|
}
|
|
1677
|
-
|
|
1678
1357
|
.e-schedule .e-timeline-year-view .e-resource-column-wrap .e-resource-cells {
|
|
1679
1358
|
background-color: #232e3e;
|
|
1680
1359
|
border-color: #4b5563;
|
|
@@ -1686,36 +1365,29 @@
|
|
|
1686
1365
|
padding-right: 0;
|
|
1687
1366
|
vertical-align: middle;
|
|
1688
1367
|
}
|
|
1689
|
-
|
|
1690
1368
|
.e-schedule .e-timeline-year-view .e-resource-column-wrap .e-resource-cells.e-child-node {
|
|
1691
1369
|
background-color: #1f2937;
|
|
1692
1370
|
}
|
|
1693
|
-
|
|
1694
1371
|
.e-schedule .e-timeline-year-view .e-resource-column-wrap .e-resource-cells:focus {
|
|
1695
1372
|
background-color: #4b5563;
|
|
1696
1373
|
}
|
|
1697
|
-
|
|
1698
1374
|
.e-schedule .e-timeline-year-view .e-resource-column-table {
|
|
1699
1375
|
height: 100%;
|
|
1700
1376
|
}
|
|
1701
|
-
|
|
1702
1377
|
.e-schedule .e-timeline-year-view .e-resource-column-table.e-auto-height {
|
|
1703
1378
|
height: auto;
|
|
1704
1379
|
}
|
|
1705
|
-
|
|
1706
1380
|
.e-schedule .e-timeline-year-view .e-resource-tree-icon {
|
|
1707
1381
|
color: #d1d5db;
|
|
1708
1382
|
cursor: pointer;
|
|
1709
1383
|
float: left;
|
|
1710
|
-
font-family:
|
|
1384
|
+
font-family: "e-icons";
|
|
1711
1385
|
font-size: 12px;
|
|
1712
1386
|
padding: 4px 7px;
|
|
1713
1387
|
}
|
|
1714
|
-
|
|
1715
1388
|
.e-schedule .e-timeline-year-view .e-resource-collapse {
|
|
1716
1389
|
transform: rotate(90deg);
|
|
1717
1390
|
}
|
|
1718
|
-
|
|
1719
1391
|
.e-schedule .e-timeline-year-view .e-work-cells {
|
|
1720
1392
|
background-color: #232e3e;
|
|
1721
1393
|
border-color: #4b5563;
|
|
@@ -1724,20 +1396,16 @@
|
|
|
1724
1396
|
color: #fff;
|
|
1725
1397
|
padding: 0;
|
|
1726
1398
|
}
|
|
1727
|
-
|
|
1728
1399
|
.e-schedule .e-timeline-year-view .e-work-cells:hover:not(.e-other-month) {
|
|
1729
1400
|
background: #4b5563;
|
|
1730
1401
|
color: #fff;
|
|
1731
1402
|
}
|
|
1732
|
-
|
|
1733
1403
|
.e-schedule .e-timeline-year-view .e-work-cells.e-work-days {
|
|
1734
1404
|
background-color: #1f2937;
|
|
1735
1405
|
}
|
|
1736
|
-
|
|
1737
1406
|
.e-schedule .e-timeline-year-view .e-work-cells.e-other-month {
|
|
1738
1407
|
color: #9ca3af;
|
|
1739
1408
|
}
|
|
1740
|
-
|
|
1741
1409
|
.e-schedule .e-timeline-year-view .e-work-cells.e-current-day .e-date-header {
|
|
1742
1410
|
background-color: #22d3ee;
|
|
1743
1411
|
border-radius: 50%;
|
|
@@ -1745,77 +1413,60 @@
|
|
|
1745
1413
|
margin: 2px;
|
|
1746
1414
|
width: 20px;
|
|
1747
1415
|
}
|
|
1748
|
-
|
|
1749
1416
|
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell {
|
|
1750
1417
|
background-color: #6b7280;
|
|
1751
1418
|
color: #fff;
|
|
1752
1419
|
}
|
|
1753
|
-
|
|
1754
1420
|
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell .e-more-indicator {
|
|
1755
1421
|
color: #fff;
|
|
1756
1422
|
}
|
|
1757
|
-
|
|
1758
1423
|
.e-schedule .e-timeline-year-view .e-work-cells.e-selected-cell:hover {
|
|
1759
1424
|
background-color: #6b7280;
|
|
1760
1425
|
}
|
|
1761
|
-
|
|
1762
1426
|
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates {
|
|
1763
1427
|
background-color: #374151;
|
|
1764
1428
|
}
|
|
1765
|
-
|
|
1766
1429
|
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header {
|
|
1767
1430
|
cursor: default;
|
|
1768
|
-
opacity: .35;
|
|
1431
|
+
opacity: 0.35;
|
|
1769
1432
|
}
|
|
1770
|
-
|
|
1771
1433
|
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates .e-date-header:hover {
|
|
1772
1434
|
text-decoration: none;
|
|
1773
1435
|
}
|
|
1774
|
-
|
|
1775
1436
|
.e-schedule .e-timeline-year-view .e-work-cells.e-disable-dates:hover {
|
|
1776
1437
|
background-color: #374151;
|
|
1777
1438
|
}
|
|
1778
|
-
|
|
1779
1439
|
.e-schedule .e-timeline-year-view .e-content-table {
|
|
1780
1440
|
height: 100%;
|
|
1781
1441
|
}
|
|
1782
|
-
|
|
1783
1442
|
.e-schedule .e-timeline-year-view .e-content-table.e-auto-height {
|
|
1784
1443
|
height: auto;
|
|
1785
1444
|
}
|
|
1786
|
-
|
|
1787
1445
|
.e-schedule .e-timeline-year-view .e-left-indent td {
|
|
1788
1446
|
border-color: #4b5563;
|
|
1789
1447
|
border-style: solid;
|
|
1790
1448
|
border-width: 0 1px 0 0;
|
|
1791
1449
|
vertical-align: middle;
|
|
1792
1450
|
}
|
|
1793
|
-
|
|
1794
1451
|
.e-schedule .e-timeline-year-view .e-left-indent tr:last-child td {
|
|
1795
1452
|
border-width: 0 1px 1px 0;
|
|
1796
1453
|
}
|
|
1797
|
-
|
|
1798
1454
|
.e-schedule .e-timeline-year-view.e-horizontal .e-left-indent {
|
|
1799
1455
|
padding: 0;
|
|
1800
1456
|
width: 100px;
|
|
1801
1457
|
}
|
|
1802
|
-
|
|
1803
|
-
.e-schedule .e-timeline-year-view.e-vertical .e-left-indent,
|
|
1804
|
-
.e-schedule .e-timeline-year-view.e-vertical .e-left-indent .e-header-cells {
|
|
1458
|
+
.e-schedule .e-timeline-year-view.e-vertical .e-left-indent, .e-schedule .e-timeline-year-view.e-vertical .e-left-indent .e-header-cells {
|
|
1805
1459
|
width: 100px;
|
|
1806
1460
|
}
|
|
1807
|
-
|
|
1808
1461
|
.e-schedule .e-timeline-year-view .e-month-header {
|
|
1809
1462
|
border-bottom: 1px solid #4b5563;
|
|
1810
1463
|
border-right: 1px solid #4b5563;
|
|
1811
1464
|
text-align: center;
|
|
1812
1465
|
color: #d1d5db;
|
|
1813
1466
|
}
|
|
1814
|
-
|
|
1815
1467
|
.e-schedule .e-timeline-year-view .e-month-header.e-current-day {
|
|
1816
1468
|
color: #22d3ee;
|
|
1817
1469
|
}
|
|
1818
|
-
|
|
1819
1470
|
.e-schedule .e-timeline-year-view .e-left-indent,
|
|
1820
1471
|
.e-schedule .e-timeline-year-view .e-header-cells {
|
|
1821
1472
|
cursor: default;
|
|
@@ -1824,21 +1475,17 @@
|
|
|
1824
1475
|
padding: 0;
|
|
1825
1476
|
text-align: center;
|
|
1826
1477
|
}
|
|
1827
|
-
|
|
1828
1478
|
.e-schedule .e-timeline-year-view .e-month-header,
|
|
1829
1479
|
.e-schedule .e-timeline-year-view .e-work-cells {
|
|
1830
1480
|
height: 75px;
|
|
1831
1481
|
}
|
|
1832
|
-
|
|
1833
1482
|
.e-schedule .e-timeline-year-view .e-header-cells,
|
|
1834
1483
|
.e-schedule .e-timeline-year-view .e-work-cells {
|
|
1835
1484
|
width: 100px;
|
|
1836
1485
|
}
|
|
1837
|
-
|
|
1838
1486
|
.e-schedule .e-timeline-year-view .e-work-cells {
|
|
1839
1487
|
vertical-align: top;
|
|
1840
1488
|
}
|
|
1841
|
-
|
|
1842
1489
|
.e-schedule .e-timeline-year-view .e-work-cells .e-date-header {
|
|
1843
1490
|
cursor: pointer;
|
|
1844
1491
|
display: table;
|
|
@@ -1848,24 +1495,26 @@
|
|
|
1848
1495
|
text-align: center;
|
|
1849
1496
|
width: 10px;
|
|
1850
1497
|
}
|
|
1851
|
-
|
|
1852
1498
|
.e-schedule .e-timeline-year-view .e-work-cells .e-date-header:hover {
|
|
1853
1499
|
text-decoration: underline;
|
|
1854
1500
|
}
|
|
1855
|
-
|
|
1501
|
+
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells {
|
|
1502
|
+
background-color: #374151;
|
|
1503
|
+
box-shadow: inset 0 0 0 8px #232e3e;
|
|
1504
|
+
}
|
|
1505
|
+
.e-schedule .e-timeline-year-view.e-virtual-mask .e-work-cells:hover {
|
|
1506
|
+
background-color: #374151;
|
|
1507
|
+
}
|
|
1856
1508
|
.e-schedule .e-timeline-year-view .e-event-table {
|
|
1857
1509
|
position: absolute;
|
|
1858
1510
|
top: 0;
|
|
1859
1511
|
}
|
|
1860
|
-
|
|
1861
1512
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment-wrapper {
|
|
1862
1513
|
position: absolute;
|
|
1863
1514
|
}
|
|
1864
|
-
|
|
1865
1515
|
.e-schedule .e-timeline-year-view .e-event-table .e-inline-appointment {
|
|
1866
1516
|
z-index: 1;
|
|
1867
1517
|
}
|
|
1868
|
-
|
|
1869
1518
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment {
|
|
1870
1519
|
background: #22d3ee;
|
|
1871
1520
|
border: 1px solid #4b5563;
|
|
@@ -1878,11 +1527,9 @@
|
|
|
1878
1527
|
overflow: hidden;
|
|
1879
1528
|
position: absolute;
|
|
1880
1529
|
}
|
|
1881
|
-
|
|
1882
1530
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-hidden {
|
|
1883
1531
|
display: none;
|
|
1884
1532
|
}
|
|
1885
|
-
|
|
1886
1533
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-appointment-details {
|
|
1887
1534
|
display: -ms-flexbox;
|
|
1888
1535
|
display: flex;
|
|
@@ -1891,7 +1538,6 @@
|
|
|
1891
1538
|
line-height: 20px;
|
|
1892
1539
|
overflow: hidden;
|
|
1893
1540
|
}
|
|
1894
|
-
|
|
1895
1541
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-subject {
|
|
1896
1542
|
-ms-flex: auto;
|
|
1897
1543
|
flex: auto;
|
|
@@ -1901,7 +1547,6 @@
|
|
|
1901
1547
|
padding: 1px 2px;
|
|
1902
1548
|
text-overflow: ellipsis;
|
|
1903
1549
|
}
|
|
1904
|
-
|
|
1905
1550
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-time,
|
|
1906
1551
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-location {
|
|
1907
1552
|
font-size: 11px;
|
|
@@ -1909,41 +1554,33 @@
|
|
|
1909
1554
|
padding: 1.5px;
|
|
1910
1555
|
text-overflow: ellipsis;
|
|
1911
1556
|
}
|
|
1912
|
-
|
|
1913
1557
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-disable {
|
|
1914
1558
|
display: none;
|
|
1915
1559
|
}
|
|
1916
|
-
|
|
1917
1560
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-recurrence-icon,
|
|
1918
1561
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-recurrence-edit-icon {
|
|
1919
1562
|
line-height: 38px;
|
|
1920
1563
|
padding: 0 5px;
|
|
1921
1564
|
}
|
|
1922
|
-
|
|
1923
1565
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-indicator {
|
|
1924
1566
|
display: block;
|
|
1925
1567
|
}
|
|
1926
|
-
|
|
1927
1568
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-left-icon,
|
|
1928
1569
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-right-icon {
|
|
1929
1570
|
font-size: 10px;
|
|
1930
1571
|
line-height: 38px;
|
|
1931
1572
|
padding-right: 7px;
|
|
1932
1573
|
}
|
|
1933
|
-
|
|
1934
1574
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment .e-right-icon {
|
|
1935
1575
|
padding-right: 5px;
|
|
1936
1576
|
}
|
|
1937
|
-
|
|
1938
1577
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-appointment-border, .e-schedule .e-timeline-year-view .e-event-table .e-appointment:focus {
|
|
1939
1578
|
border: 0;
|
|
1940
1579
|
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
1941
1580
|
}
|
|
1942
|
-
|
|
1943
1581
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment.e-allow-select {
|
|
1944
1582
|
pointer-events: none;
|
|
1945
1583
|
}
|
|
1946
|
-
|
|
1947
1584
|
.e-schedule .e-timeline-year-view .e-event-table .e-more-indicator {
|
|
1948
1585
|
color: #9ca3af;
|
|
1949
1586
|
cursor: pointer;
|
|
@@ -1954,53 +1591,44 @@
|
|
|
1954
1591
|
position: absolute;
|
|
1955
1592
|
text-overflow: ellipsis;
|
|
1956
1593
|
}
|
|
1957
|
-
|
|
1958
1594
|
.e-schedule .e-timeline-year-view .e-event-table .e-more-indicator.e-hidden {
|
|
1959
1595
|
display: none;
|
|
1960
1596
|
}
|
|
1961
|
-
|
|
1962
1597
|
.e-schedule .e-timeline-year-view .e-event-table .e-more-indicator:focus {
|
|
1963
1598
|
text-decoration: underline;
|
|
1964
1599
|
}
|
|
1965
|
-
|
|
1966
1600
|
.e-schedule.e-device .e-year-view .e-month-calendar {
|
|
1967
1601
|
max-width: 100%;
|
|
1968
1602
|
min-width: 100%;
|
|
1969
1603
|
}
|
|
1970
|
-
|
|
1971
1604
|
.e-schedule .e-timeline-view .e-content-wrap,
|
|
1972
1605
|
.e-schedule .e-timeline-view .e-content-table,
|
|
1973
1606
|
.e-schedule .e-timeline-month-view .e-content-wrap,
|
|
1974
1607
|
.e-schedule .e-timeline-month-view .e-content-table {
|
|
1975
1608
|
height: 100%;
|
|
1976
1609
|
}
|
|
1977
|
-
|
|
1978
1610
|
.e-schedule .e-timeline-view .e-date-header-wrap,
|
|
1979
1611
|
.e-schedule .e-timeline-month-view .e-date-header-wrap {
|
|
1980
1612
|
font-size: 14px;
|
|
1981
1613
|
overflow: hidden;
|
|
1982
1614
|
position: relative;
|
|
1983
1615
|
}
|
|
1984
|
-
|
|
1985
1616
|
.e-schedule .e-timeline-view .e-event-table,
|
|
1986
1617
|
.e-schedule .e-timeline-month-view .e-event-table {
|
|
1987
1618
|
position: absolute;
|
|
1988
1619
|
top: 0;
|
|
1989
1620
|
}
|
|
1990
|
-
|
|
1991
1621
|
.e-schedule .e-timeline-view .e-appointment-container.e-event-container,
|
|
1992
1622
|
.e-schedule .e-timeline-month-view .e-appointment-container.e-event-container {
|
|
1993
1623
|
height: 60px;
|
|
1994
1624
|
position: relative;
|
|
1995
1625
|
}
|
|
1996
|
-
|
|
1997
1626
|
.e-schedule .e-timeline-view .e-date-header-wrap table col,
|
|
1998
1627
|
.e-schedule .e-timeline-view .e-content-wrap table col,
|
|
1999
1628
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table col,
|
|
2000
1629
|
.e-schedule .e-timeline-month-view .e-content-wrap table col {
|
|
2001
1630
|
width: 50px;
|
|
2002
1631
|
}
|
|
2003
|
-
|
|
2004
1632
|
.e-schedule .e-timeline-view .e-date-header-wrap table tbody td,
|
|
2005
1633
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table tbody td {
|
|
2006
1634
|
height: 36px;
|
|
@@ -2009,44 +1637,36 @@
|
|
|
2009
1637
|
text-overflow: ellipsis;
|
|
2010
1638
|
white-space: nowrap;
|
|
2011
1639
|
}
|
|
2012
|
-
|
|
2013
1640
|
.e-schedule .e-timeline-view .e-date-header-wrap table tbody td.e-time-slots,
|
|
2014
1641
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table tbody td.e-time-slots {
|
|
2015
1642
|
overflow: inherit;
|
|
2016
1643
|
background-color: #374151;
|
|
2017
1644
|
}
|
|
2018
|
-
|
|
2019
1645
|
.e-schedule .e-timeline-view .e-date-header-wrap table tbody td > span,
|
|
2020
1646
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table tbody td > span {
|
|
2021
1647
|
position: relative;
|
|
2022
1648
|
}
|
|
2023
|
-
|
|
2024
1649
|
.e-schedule .e-timeline-view .e-navigate:hover,
|
|
2025
1650
|
.e-schedule .e-timeline-month-view .e-navigate:hover {
|
|
2026
1651
|
cursor: pointer;
|
|
2027
1652
|
text-decoration: underline;
|
|
2028
1653
|
}
|
|
2029
|
-
|
|
2030
1654
|
.e-schedule .e-timeline-view .e-navigate:focus,
|
|
2031
1655
|
.e-schedule .e-timeline-month-view .e-navigate:focus {
|
|
2032
1656
|
text-decoration: underline;
|
|
2033
1657
|
}
|
|
2034
|
-
|
|
2035
1658
|
.e-schedule .e-timeline-view .e-work-cells,
|
|
2036
1659
|
.e-schedule .e-timeline-month-view .e-work-cells {
|
|
2037
1660
|
height: 60px;
|
|
2038
1661
|
}
|
|
2039
|
-
|
|
2040
1662
|
.e-schedule .e-timeline-view .e-work-cells.e-disable-dates,
|
|
2041
1663
|
.e-schedule .e-timeline-month-view .e-work-cells.e-disable-dates {
|
|
2042
1664
|
background-color: #374151;
|
|
2043
1665
|
}
|
|
2044
|
-
|
|
2045
1666
|
.e-schedule .e-timeline-view .e-work-cells.e-disable-dates:hover,
|
|
2046
1667
|
.e-schedule .e-timeline-month-view .e-work-cells.e-disable-dates:hover {
|
|
2047
1668
|
background-color: #374151;
|
|
2048
1669
|
}
|
|
2049
|
-
|
|
2050
1670
|
.e-schedule .e-timeline-view .e-resource-text,
|
|
2051
1671
|
.e-schedule .e-timeline-month-view .e-resource-text {
|
|
2052
1672
|
color: #fff;
|
|
@@ -2055,7 +1675,6 @@
|
|
|
2055
1675
|
padding: 4px 12px;
|
|
2056
1676
|
text-overflow: ellipsis;
|
|
2057
1677
|
}
|
|
2058
|
-
|
|
2059
1678
|
.e-schedule .e-timeline-view .e-resource-left-td,
|
|
2060
1679
|
.e-schedule .e-timeline-month-view .e-resource-left-td {
|
|
2061
1680
|
background-color: #1f2937;
|
|
@@ -2066,7 +1685,6 @@
|
|
|
2066
1685
|
vertical-align: middle;
|
|
2067
1686
|
width: 200px;
|
|
2068
1687
|
}
|
|
2069
|
-
|
|
2070
1688
|
.e-schedule .e-timeline-view .e-resource-cells,
|
|
2071
1689
|
.e-schedule .e-timeline-month-view .e-resource-cells {
|
|
2072
1690
|
background-color: #232e3e;
|
|
@@ -2079,73 +1697,59 @@
|
|
|
2079
1697
|
padding-right: 0;
|
|
2080
1698
|
vertical-align: middle;
|
|
2081
1699
|
}
|
|
2082
|
-
|
|
2083
1700
|
.e-schedule .e-timeline-view .e-resource-cells:focus,
|
|
2084
1701
|
.e-schedule .e-timeline-month-view .e-resource-cells:focus {
|
|
2085
1702
|
background-color: #4b5563;
|
|
2086
1703
|
}
|
|
2087
|
-
|
|
2088
1704
|
.e-schedule .e-timeline-view .e-resource-column-wrap,
|
|
2089
1705
|
.e-schedule .e-timeline-month-view .e-resource-column-wrap {
|
|
2090
1706
|
overflow: hidden;
|
|
2091
1707
|
position: relative;
|
|
2092
1708
|
}
|
|
2093
|
-
|
|
2094
1709
|
.e-schedule .e-timeline-view .e-resource-column-table,
|
|
2095
1710
|
.e-schedule .e-timeline-month-view .e-resource-column-table {
|
|
2096
1711
|
height: 100%;
|
|
2097
1712
|
}
|
|
2098
|
-
|
|
2099
1713
|
.e-schedule .e-timeline-view .e-auto-height,
|
|
2100
1714
|
.e-schedule .e-timeline-month-view .e-auto-height {
|
|
2101
1715
|
height: auto;
|
|
2102
1716
|
}
|
|
2103
|
-
|
|
2104
|
-
.e-schedule .e-timeline-view.e-ignore-whitespace .e-work-cells,
|
|
2105
|
-
.e-schedule .e-timeline-view.e-ignore-whitespace .e-resource-cells,
|
|
2106
|
-
.e-schedule .e-timeline-view.e-ignore-whitespace .e-event-container,
|
|
1717
|
+
.e-schedule .e-timeline-view.e-ignore-whitespace .e-work-cells, .e-schedule .e-timeline-view.e-ignore-whitespace .e-resource-cells, .e-schedule .e-timeline-view.e-ignore-whitespace .e-event-container,
|
|
2107
1718
|
.e-schedule .e-timeline-month-view.e-ignore-whitespace .e-work-cells,
|
|
2108
1719
|
.e-schedule .e-timeline-month-view.e-ignore-whitespace .e-resource-cells,
|
|
2109
1720
|
.e-schedule .e-timeline-month-view.e-ignore-whitespace .e-event-container {
|
|
2110
1721
|
height: 42px;
|
|
2111
1722
|
}
|
|
2112
|
-
|
|
2113
1723
|
.e-schedule .e-timeline-view.e-virtual-mask .e-work-cells,
|
|
2114
1724
|
.e-schedule .e-timeline-month-view.e-virtual-mask .e-work-cells {
|
|
2115
1725
|
background-color: #374151;
|
|
2116
1726
|
box-shadow: inset 0 0 0 8px #232e3e;
|
|
2117
1727
|
}
|
|
2118
|
-
|
|
2119
1728
|
.e-schedule .e-timeline-view .e-resource-tree-icon,
|
|
2120
1729
|
.e-schedule .e-timeline-month-view .e-resource-tree-icon {
|
|
2121
1730
|
color: #d1d5db;
|
|
2122
1731
|
cursor: pointer;
|
|
2123
1732
|
float: left;
|
|
2124
|
-
font-family:
|
|
1733
|
+
font-family: "e-icons";
|
|
2125
1734
|
font-size: 12px;
|
|
2126
1735
|
padding: 4px 7px;
|
|
2127
1736
|
}
|
|
2128
|
-
|
|
2129
1737
|
.e-schedule .e-timeline-view .e-resource-collapse,
|
|
2130
1738
|
.e-schedule .e-timeline-month-view .e-resource-collapse {
|
|
2131
1739
|
transform: rotate(90deg);
|
|
2132
1740
|
}
|
|
2133
|
-
|
|
2134
1741
|
.e-schedule .e-timeline-view .e-child-node,
|
|
2135
1742
|
.e-schedule .e-timeline-month-view .e-child-node {
|
|
2136
1743
|
background-color: #1f2937;
|
|
2137
1744
|
}
|
|
2138
|
-
|
|
2139
1745
|
.e-schedule .e-timeline-view .e-appointment-wrapper,
|
|
2140
1746
|
.e-schedule .e-timeline-month-view .e-appointment-wrapper {
|
|
2141
1747
|
position: absolute;
|
|
2142
1748
|
}
|
|
2143
|
-
|
|
2144
1749
|
.e-schedule .e-timeline-view .e-inline-appointment,
|
|
2145
1750
|
.e-schedule .e-timeline-month-view .e-inline-appointment {
|
|
2146
1751
|
z-index: 1;
|
|
2147
1752
|
}
|
|
2148
|
-
|
|
2149
1753
|
.e-schedule .e-timeline-view .e-appointment,
|
|
2150
1754
|
.e-schedule .e-timeline-month-view .e-appointment {
|
|
2151
1755
|
background: #22d3ee;
|
|
@@ -2159,7 +1763,6 @@
|
|
|
2159
1763
|
overflow: hidden;
|
|
2160
1764
|
position: absolute;
|
|
2161
1765
|
}
|
|
2162
|
-
|
|
2163
1766
|
.e-schedule .e-timeline-view .e-appointment .e-appointment-details,
|
|
2164
1767
|
.e-schedule .e-timeline-month-view .e-appointment .e-appointment-details {
|
|
2165
1768
|
display: -ms-flexbox;
|
|
@@ -2169,14 +1772,12 @@
|
|
|
2169
1772
|
overflow: hidden;
|
|
2170
1773
|
padding: 0 4px;
|
|
2171
1774
|
}
|
|
2172
|
-
|
|
2173
1775
|
.e-schedule .e-timeline-view .e-appointment .e-appointment-details .e-inner-wrap,
|
|
2174
1776
|
.e-schedule .e-timeline-month-view .e-appointment .e-appointment-details .e-inner-wrap {
|
|
2175
1777
|
-ms-flex: auto;
|
|
2176
1778
|
flex: auto;
|
|
2177
1779
|
overflow: hidden;
|
|
2178
1780
|
}
|
|
2179
|
-
|
|
2180
1781
|
.e-schedule .e-timeline-view .e-appointment .e-subject,
|
|
2181
1782
|
.e-schedule .e-timeline-month-view .e-appointment .e-subject {
|
|
2182
1783
|
font-size: 13px;
|
|
@@ -2188,7 +1789,6 @@
|
|
|
2188
1789
|
padding-top: 4px;
|
|
2189
1790
|
text-overflow: ellipsis;
|
|
2190
1791
|
}
|
|
2191
|
-
|
|
2192
1792
|
.e-schedule .e-timeline-view .e-appointment .e-time,
|
|
2193
1793
|
.e-schedule .e-timeline-view .e-appointment .e-location,
|
|
2194
1794
|
.e-schedule .e-timeline-month-view .e-appointment .e-time,
|
|
@@ -2198,18 +1798,15 @@
|
|
|
2198
1798
|
padding-top: 1px;
|
|
2199
1799
|
text-overflow: ellipsis;
|
|
2200
1800
|
}
|
|
2201
|
-
|
|
2202
1801
|
.e-schedule .e-timeline-view .e-appointment .e-time,
|
|
2203
1802
|
.e-schedule .e-timeline-month-view .e-appointment .e-time {
|
|
2204
1803
|
display: block;
|
|
2205
1804
|
line-height: 1.4;
|
|
2206
1805
|
}
|
|
2207
|
-
|
|
2208
1806
|
.e-schedule .e-timeline-view .e-appointment .e-disable,
|
|
2209
1807
|
.e-schedule .e-timeline-month-view .e-appointment .e-disable {
|
|
2210
1808
|
display: none;
|
|
2211
1809
|
}
|
|
2212
|
-
|
|
2213
1810
|
.e-schedule .e-timeline-view .e-appointment .e-recurrence-icon,
|
|
2214
1811
|
.e-schedule .e-timeline-view .e-appointment .e-recurrence-edit-icon,
|
|
2215
1812
|
.e-schedule .e-timeline-month-view .e-appointment .e-recurrence-icon,
|
|
@@ -2217,12 +1814,10 @@
|
|
|
2217
1814
|
line-height: 38px;
|
|
2218
1815
|
padding: 0 5px;
|
|
2219
1816
|
}
|
|
2220
|
-
|
|
2221
1817
|
.e-schedule .e-timeline-view .e-appointment .e-indicator,
|
|
2222
1818
|
.e-schedule .e-timeline-month-view .e-appointment .e-indicator {
|
|
2223
1819
|
display: block;
|
|
2224
1820
|
}
|
|
2225
|
-
|
|
2226
1821
|
.e-schedule .e-timeline-view .e-appointment .e-left-icon,
|
|
2227
1822
|
.e-schedule .e-timeline-view .e-appointment .e-right-icon,
|
|
2228
1823
|
.e-schedule .e-timeline-month-view .e-appointment .e-left-icon,
|
|
@@ -2231,24 +1826,20 @@
|
|
|
2231
1826
|
line-height: 38px;
|
|
2232
1827
|
padding-right: 7px;
|
|
2233
1828
|
}
|
|
2234
|
-
|
|
2235
1829
|
.e-schedule .e-timeline-view .e-appointment .e-right-icon,
|
|
2236
1830
|
.e-schedule .e-timeline-month-view .e-appointment .e-right-icon {
|
|
2237
1831
|
padding-right: 5px;
|
|
2238
1832
|
}
|
|
2239
|
-
|
|
2240
1833
|
.e-schedule .e-timeline-view .e-appointment.e-appointment-border, .e-schedule .e-timeline-view .e-appointment:focus,
|
|
2241
1834
|
.e-schedule .e-timeline-month-view .e-appointment.e-appointment-border,
|
|
2242
1835
|
.e-schedule .e-timeline-month-view .e-appointment:focus {
|
|
2243
1836
|
border: 0;
|
|
2244
1837
|
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
2245
1838
|
}
|
|
2246
|
-
|
|
2247
1839
|
.e-schedule .e-timeline-view .e-appointment.e-allow-select,
|
|
2248
1840
|
.e-schedule .e-timeline-month-view .e-appointment.e-allow-select {
|
|
2249
1841
|
pointer-events: none;
|
|
2250
1842
|
}
|
|
2251
|
-
|
|
2252
1843
|
.e-schedule .e-timeline-view .e-more-indicator,
|
|
2253
1844
|
.e-schedule .e-timeline-month-view .e-more-indicator {
|
|
2254
1845
|
color: #9ca3af;
|
|
@@ -2260,150 +1851,122 @@
|
|
|
2260
1851
|
position: absolute;
|
|
2261
1852
|
text-overflow: ellipsis;
|
|
2262
1853
|
}
|
|
2263
|
-
|
|
2264
1854
|
.e-schedule .e-timeline-view .e-more-indicator:focus,
|
|
2265
1855
|
.e-schedule .e-timeline-month-view .e-more-indicator:focus {
|
|
2266
1856
|
text-decoration: underline;
|
|
2267
1857
|
}
|
|
2268
|
-
|
|
2269
1858
|
.e-schedule .e-timeline-view .e-navigate {
|
|
2270
1859
|
font-size: 14px;
|
|
2271
1860
|
}
|
|
2272
|
-
|
|
2273
1861
|
.e-schedule .e-timeline-view .e-clone-time-indicator,
|
|
2274
1862
|
.e-schedule .e-timeline-view .e-current-time {
|
|
2275
1863
|
bottom: 0;
|
|
2276
1864
|
position: absolute;
|
|
2277
1865
|
}
|
|
2278
|
-
|
|
2279
1866
|
.e-schedule .e-timeline-view .e-current-timeline {
|
|
2280
1867
|
position: absolute;
|
|
2281
1868
|
top: 0;
|
|
2282
1869
|
}
|
|
2283
|
-
|
|
2284
1870
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table col,
|
|
2285
1871
|
.e-schedule .e-timeline-month-view .e-content-wrap table col {
|
|
2286
1872
|
width: 70px;
|
|
2287
1873
|
}
|
|
2288
|
-
|
|
2289
1874
|
.e-schedule .e-virtual-scroll .e-content-table {
|
|
2290
1875
|
position: absolute;
|
|
2291
1876
|
transform: translateY(0);
|
|
2292
1877
|
}
|
|
2293
|
-
|
|
2294
1878
|
.e-schedule .e-virtual-scroll .e-content-table.e-virtual-relative {
|
|
2295
1879
|
position: relative;
|
|
2296
1880
|
}
|
|
2297
|
-
|
|
2298
1881
|
.e-schedule .e-virtual-scroll .e-content-wrap.e-transition {
|
|
2299
1882
|
transition: all 1000ms linear;
|
|
2300
1883
|
}
|
|
2301
|
-
|
|
2302
1884
|
.e-schedule.e-rtl .e-timeline-view .e-appointment .e-left-icon,
|
|
2303
1885
|
.e-schedule.e-rtl .e-timeline-view .e-appointment .e-right-icon,
|
|
2304
1886
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment .e-left-icon,
|
|
2305
1887
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment .e-right-icon {
|
|
2306
1888
|
padding: 0 0 0 5px;
|
|
2307
1889
|
}
|
|
2308
|
-
|
|
2309
1890
|
.e-schedule.e-rtl .e-timeline-view .e-inline-appointment,
|
|
2310
1891
|
.e-schedule.e-rtl .e-timeline-month-view .e-inline-appointment {
|
|
2311
1892
|
z-index: 1;
|
|
2312
1893
|
}
|
|
2313
|
-
|
|
2314
1894
|
.e-schedule.e-rtl .e-timeline-view .e-resource-left-td,
|
|
2315
1895
|
.e-schedule.e-rtl .e-timeline-month-view .e-resource-left-td {
|
|
2316
1896
|
border-width: 0 0 1px 1px;
|
|
2317
1897
|
}
|
|
2318
|
-
|
|
2319
1898
|
.e-schedule.e-rtl .e-timeline-view .e-resource-cells,
|
|
2320
1899
|
.e-schedule.e-rtl .e-timeline-month-view .e-resource-cells {
|
|
2321
1900
|
border-width: 0 0 1px 1px;
|
|
2322
1901
|
padding-right: 15px;
|
|
2323
1902
|
}
|
|
2324
|
-
|
|
2325
1903
|
.e-schedule.e-rtl .e-timeline-view .e-resource-tree-icon,
|
|
2326
1904
|
.e-schedule.e-rtl .e-timeline-month-view .e-resource-tree-icon {
|
|
2327
1905
|
float: right;
|
|
2328
1906
|
}
|
|
2329
|
-
|
|
2330
1907
|
.e-schedule.e-rtl .e-timeline-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap,
|
|
2331
1908
|
.e-schedule.e-rtl .e-timeline-month-view .e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
2332
1909
|
text-align: right;
|
|
2333
1910
|
}
|
|
2334
|
-
|
|
2335
1911
|
.e-schedule.e-device .e-month-view .e-date-header-wrap,
|
|
2336
1912
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap,
|
|
2337
1913
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap {
|
|
2338
1914
|
font-size: 16px;
|
|
2339
1915
|
}
|
|
2340
|
-
|
|
2341
1916
|
.e-schedule.e-device .e-month-view .e-date-header-wrap td,
|
|
2342
1917
|
.e-schedule.e-device .e-timeline-view .e-date-header-wrap td,
|
|
2343
1918
|
.e-schedule.e-device .e-timeline-month-view .e-date-header-wrap td {
|
|
2344
1919
|
border-left-width: 0;
|
|
2345
1920
|
border-right-width: 0;
|
|
2346
1921
|
}
|
|
2347
|
-
|
|
2348
1922
|
.e-schedule.e-device .e-month-view .e-content-wrap,
|
|
2349
1923
|
.e-schedule.e-device .e-timeline-view .e-content-wrap,
|
|
2350
1924
|
.e-schedule.e-device .e-timeline-month-view .e-content-wrap {
|
|
2351
1925
|
font-size: 14px;
|
|
2352
1926
|
}
|
|
2353
|
-
|
|
2354
1927
|
.e-schedule.e-device .e-month-view .e-date-header:hover,
|
|
2355
1928
|
.e-schedule.e-device .e-timeline-view .e-date-header:hover,
|
|
2356
1929
|
.e-schedule.e-device .e-timeline-month-view .e-date-header:hover {
|
|
2357
1930
|
text-decoration: none;
|
|
2358
1931
|
}
|
|
2359
|
-
|
|
2360
1932
|
.e-schedule.e-device .e-month-view .e-more-indicator,
|
|
2361
1933
|
.e-schedule.e-device .e-timeline-view .e-more-indicator,
|
|
2362
1934
|
.e-schedule.e-device .e-timeline-month-view .e-more-indicator {
|
|
2363
1935
|
font-size: 12px;
|
|
2364
1936
|
}
|
|
2365
|
-
|
|
2366
1937
|
.e-schedule.e-device .e-month-view .e-navigate:hover,
|
|
2367
1938
|
.e-schedule.e-device .e-timeline-view .e-navigate:hover,
|
|
2368
1939
|
.e-schedule.e-device .e-timeline-month-view .e-navigate:hover {
|
|
2369
1940
|
text-decoration: none;
|
|
2370
1941
|
}
|
|
2371
|
-
|
|
2372
1942
|
.e-schedule .e-month-agenda-view .e-schedule-resource-toolbar .e-resource-menu {
|
|
2373
1943
|
margin-top: 6px;
|
|
2374
1944
|
}
|
|
2375
|
-
|
|
2376
1945
|
.e-schedule .e-month-agenda-view .e-schedule-resource-toolbar .e-resource-menu.e-disable {
|
|
2377
1946
|
display: none;
|
|
2378
1947
|
}
|
|
2379
|
-
|
|
2380
1948
|
.e-schedule .e-month-agenda-view .e-schedule-resource-toolbar .e-resource-level-title .e-icon-next {
|
|
2381
1949
|
margin-top: 4px;
|
|
2382
1950
|
}
|
|
2383
|
-
|
|
2384
1951
|
.e-schedule .e-month-agenda-view .e-week-number-wrapper .e-week-number {
|
|
2385
1952
|
border-right: 1px solid #4b5563;
|
|
2386
1953
|
height: 40px;
|
|
2387
1954
|
padding-top: 8px;
|
|
2388
1955
|
}
|
|
2389
|
-
|
|
2390
1956
|
.e-schedule .e-month-agenda-view .e-wrapper-container {
|
|
2391
1957
|
position: relative;
|
|
2392
1958
|
}
|
|
2393
|
-
|
|
2394
1959
|
.e-schedule .e-month-agenda-view .e-week-number-wrapper .e-schedule-table,
|
|
2395
1960
|
.e-schedule .e-month-agenda-view .e-content-table {
|
|
2396
1961
|
border-bottom: 2px solid #4b5563;
|
|
2397
1962
|
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
|
|
2398
1963
|
}
|
|
2399
|
-
|
|
2400
1964
|
.e-schedule .e-month-agenda-view .e-resource-column {
|
|
2401
1965
|
border-bottom: 1px solid #4b5563;
|
|
2402
1966
|
border-right: 1px solid #4b5563;
|
|
2403
1967
|
vertical-align: top;
|
|
2404
1968
|
width: 75px;
|
|
2405
1969
|
}
|
|
2406
|
-
|
|
2407
1970
|
.e-schedule .e-month-agenda-view .e-resource-name {
|
|
2408
1971
|
color: #fff;
|
|
2409
1972
|
font-size: 16px;
|
|
@@ -2412,24 +1975,19 @@
|
|
|
2412
1975
|
padding: 8px;
|
|
2413
1976
|
text-overflow: ellipsis;
|
|
2414
1977
|
}
|
|
2415
|
-
|
|
2416
1978
|
.e-schedule .e-month-agenda-view .e-day-padding {
|
|
2417
1979
|
padding-left: 8px;
|
|
2418
1980
|
}
|
|
2419
|
-
|
|
2420
1981
|
.e-schedule .e-month-agenda-view .e-day-border {
|
|
2421
1982
|
border-bottom: 1px solid #4b5563;
|
|
2422
1983
|
}
|
|
2423
|
-
|
|
2424
1984
|
.e-schedule .e-month-agenda-view .e-date-header-wrap {
|
|
2425
1985
|
font-size: 16px;
|
|
2426
1986
|
overflow: hidden;
|
|
2427
1987
|
}
|
|
2428
|
-
|
|
2429
1988
|
.e-schedule .e-month-agenda-view .e-content-wrap {
|
|
2430
1989
|
font-size: 14px;
|
|
2431
1990
|
}
|
|
2432
|
-
|
|
2433
1991
|
.e-schedule .e-month-agenda-view .e-header-cells {
|
|
2434
1992
|
cursor: default;
|
|
2435
1993
|
font-weight: 400;
|
|
@@ -2437,21 +1995,17 @@
|
|
|
2437
1995
|
padding: 5px;
|
|
2438
1996
|
text-align: center;
|
|
2439
1997
|
}
|
|
2440
|
-
|
|
2441
1998
|
.e-schedule .e-month-agenda-view .e-work-cells {
|
|
2442
1999
|
height: 40px;
|
|
2443
2000
|
position: relative;
|
|
2444
2001
|
vertical-align: top;
|
|
2445
2002
|
}
|
|
2446
|
-
|
|
2447
2003
|
.e-schedule .e-month-agenda-view .e-work-cells.e-disable-dates {
|
|
2448
2004
|
background-color: #374151;
|
|
2449
2005
|
}
|
|
2450
|
-
|
|
2451
2006
|
.e-schedule .e-month-agenda-view .e-work-cells.e-disable-dates:hover {
|
|
2452
2007
|
background-color: #374151;
|
|
2453
2008
|
}
|
|
2454
|
-
|
|
2455
2009
|
.e-schedule .e-month-agenda-view .e-date-header {
|
|
2456
2010
|
height: 24px;
|
|
2457
2011
|
line-height: 24.5px;
|
|
@@ -2459,37 +2013,30 @@
|
|
|
2459
2013
|
text-align: center;
|
|
2460
2014
|
width: 24px;
|
|
2461
2015
|
}
|
|
2462
|
-
|
|
2463
2016
|
.e-schedule .e-month-agenda-view .e-appointment-container {
|
|
2464
2017
|
min-height: 40px;
|
|
2465
2018
|
}
|
|
2466
|
-
|
|
2467
2019
|
.e-schedule .e-month-agenda-view .e-appointment-wrap {
|
|
2468
2020
|
background-color: #1f2937;
|
|
2469
2021
|
overflow: auto;
|
|
2470
2022
|
padding: 0 8px;
|
|
2471
2023
|
}
|
|
2472
|
-
|
|
2473
2024
|
.e-schedule .e-month-agenda-view .e-appointment {
|
|
2474
2025
|
border-left: 3px solid #22d3ee;
|
|
2475
2026
|
border-right: 0;
|
|
2476
2027
|
cursor: default;
|
|
2477
2028
|
padding: 0 16px;
|
|
2478
2029
|
}
|
|
2479
|
-
|
|
2480
2030
|
.e-schedule .e-month-agenda-view .e-appointment:hover {
|
|
2481
2031
|
background: #4b5563;
|
|
2482
2032
|
}
|
|
2483
|
-
|
|
2484
2033
|
.e-schedule .e-month-agenda-view .e-appointment.e-appointment-border, .e-schedule .e-month-agenda-view .e-appointment:focus {
|
|
2485
2034
|
background: #6b7280;
|
|
2486
2035
|
}
|
|
2487
|
-
|
|
2488
2036
|
.e-schedule .e-month-agenda-view .e-subject-wrap {
|
|
2489
2037
|
display: -ms-flexbox;
|
|
2490
2038
|
display: flex;
|
|
2491
2039
|
}
|
|
2492
|
-
|
|
2493
2040
|
.e-schedule .e-month-agenda-view .e-subject {
|
|
2494
2041
|
color: #fff;
|
|
2495
2042
|
font-size: 14px;
|
|
@@ -2497,14 +2044,12 @@
|
|
|
2497
2044
|
overflow: hidden;
|
|
2498
2045
|
text-overflow: ellipsis;
|
|
2499
2046
|
}
|
|
2500
|
-
|
|
2501
2047
|
.e-schedule .e-month-agenda-view .e-recurrence-icon,
|
|
2502
2048
|
.e-schedule .e-month-agenda-view .e-recurrence-edit-icon {
|
|
2503
2049
|
color: #9ca3af;
|
|
2504
2050
|
line-height: 26px;
|
|
2505
2051
|
padding: 0 10px;
|
|
2506
2052
|
}
|
|
2507
|
-
|
|
2508
2053
|
.e-schedule .e-month-agenda-view .e-date-time {
|
|
2509
2054
|
color: #9ca3af;
|
|
2510
2055
|
font-size: 12px;
|
|
@@ -2512,7 +2057,6 @@
|
|
|
2512
2057
|
overflow: hidden;
|
|
2513
2058
|
text-overflow: ellipsis;
|
|
2514
2059
|
}
|
|
2515
|
-
|
|
2516
2060
|
.e-schedule .e-month-agenda-view .e-location {
|
|
2517
2061
|
color: #9ca3af;
|
|
2518
2062
|
font-size: 12px;
|
|
@@ -2521,7 +2065,6 @@
|
|
|
2521
2065
|
padding-left: 8px;
|
|
2522
2066
|
text-overflow: ellipsis;
|
|
2523
2067
|
}
|
|
2524
|
-
|
|
2525
2068
|
.e-schedule .e-month-agenda-view .e-no-event {
|
|
2526
2069
|
color: #9ca3af;
|
|
2527
2070
|
cursor: default;
|
|
@@ -2529,16 +2072,13 @@
|
|
|
2529
2072
|
height: 100%;
|
|
2530
2073
|
padding: 8px 4px;
|
|
2531
2074
|
}
|
|
2532
|
-
|
|
2533
2075
|
.e-schedule .e-month-agenda-view .e-agenda-item.e-month-agenda-view {
|
|
2534
2076
|
padding: 16px 0 0;
|
|
2535
2077
|
}
|
|
2536
|
-
|
|
2537
2078
|
.e-schedule .e-month-agenda-view .e-agenda-parent.e-month-agenda-view {
|
|
2538
2079
|
margin: 0;
|
|
2539
2080
|
padding: 0;
|
|
2540
2081
|
}
|
|
2541
|
-
|
|
2542
2082
|
.e-schedule .e-month-agenda-view .e-work-cells .e-appointment-indicator {
|
|
2543
2083
|
background: #22d3ee;
|
|
2544
2084
|
border-radius: 50%;
|
|
@@ -2547,22 +2087,18 @@
|
|
|
2547
2087
|
margin: 1px auto;
|
|
2548
2088
|
width: 6px;
|
|
2549
2089
|
}
|
|
2550
|
-
|
|
2551
2090
|
.e-schedule.e-rtl .e-month-agenda-view .e-left-indent {
|
|
2552
2091
|
border-left: 1px solid #4b5563;
|
|
2553
2092
|
border-right-width: 0;
|
|
2554
2093
|
}
|
|
2555
|
-
|
|
2556
2094
|
.e-schedule.e-rtl .e-month-agenda-view .e-week-number {
|
|
2557
2095
|
border-left: 1px solid #4b5563;
|
|
2558
2096
|
border-right-width: 0;
|
|
2559
2097
|
}
|
|
2560
|
-
|
|
2561
2098
|
.e-schedule.e-rtl .e-month-agenda-view .e-appointment {
|
|
2562
2099
|
border-left: 0;
|
|
2563
2100
|
border-right: 3px solid #22d3ee;
|
|
2564
2101
|
}
|
|
2565
|
-
|
|
2566
2102
|
.e-schedule.e-rtl .e-month-agenda-view .e-resource-column {
|
|
2567
2103
|
border-bottom: 1px solid #4b5563;
|
|
2568
2104
|
border-left: 1px solid #4b5563;
|
|
@@ -2570,33 +2106,26 @@
|
|
|
2570
2106
|
vertical-align: top;
|
|
2571
2107
|
width: 75px;
|
|
2572
2108
|
}
|
|
2573
|
-
|
|
2574
2109
|
.e-schedule.e-rtl .e-month-agenda-view .e-resource-column .e-resource-name {
|
|
2575
2110
|
white-space: normal;
|
|
2576
2111
|
}
|
|
2577
|
-
|
|
2578
2112
|
.e-schedule.e-rtl .e-month-agenda-view .e-day-padding {
|
|
2579
2113
|
padding-right: 8px;
|
|
2580
2114
|
}
|
|
2581
|
-
|
|
2582
2115
|
.e-schedule.e-device .e-month-agenda-view .e-date-header-wrap {
|
|
2583
2116
|
font-size: 16px;
|
|
2584
2117
|
}
|
|
2585
|
-
|
|
2586
2118
|
.e-schedule.e-device .e-month-agenda-view .e-content-wrap {
|
|
2587
2119
|
font-size: 14px;
|
|
2588
2120
|
}
|
|
2589
|
-
|
|
2590
2121
|
.e-schedule .e-agenda-view {
|
|
2591
2122
|
background-color: #1f2937;
|
|
2592
2123
|
}
|
|
2593
|
-
|
|
2594
2124
|
.e-schedule .e-agenda-view .e-content-wrap table td:first-child,
|
|
2595
2125
|
.e-schedule .e-agenda-view .e-date-column {
|
|
2596
2126
|
vertical-align: top;
|
|
2597
2127
|
width: 75px;
|
|
2598
2128
|
}
|
|
2599
|
-
|
|
2600
2129
|
.e-schedule .e-agenda-view .e-resource-column {
|
|
2601
2130
|
border-bottom: 1px solid #4b5563;
|
|
2602
2131
|
border-right: 1px solid #4b5563;
|
|
@@ -2604,85 +2133,67 @@
|
|
|
2604
2133
|
vertical-align: top;
|
|
2605
2134
|
width: 75px;
|
|
2606
2135
|
}
|
|
2607
|
-
|
|
2608
2136
|
.e-schedule .e-agenda-view .e-month-header {
|
|
2609
2137
|
background: #22d3ee;
|
|
2610
2138
|
height: 100px;
|
|
2611
2139
|
padding-top: 12px;
|
|
2612
2140
|
vertical-align: top;
|
|
2613
2141
|
}
|
|
2614
|
-
|
|
2615
2142
|
.e-schedule .e-agenda-view .e-month-header .e-date-header {
|
|
2616
2143
|
color: #000;
|
|
2617
2144
|
font-size: 18px;
|
|
2618
2145
|
}
|
|
2619
|
-
|
|
2620
2146
|
.e-schedule .e-agenda-view .e-day-date-header {
|
|
2621
2147
|
color: #d1d5db;
|
|
2622
2148
|
cursor: default;
|
|
2623
2149
|
padding: 8px 34px 14px 18px;
|
|
2624
2150
|
}
|
|
2625
|
-
|
|
2626
2151
|
.e-schedule .e-agenda-view .e-day-date-header .e-m-date {
|
|
2627
2152
|
font-size: 16px;
|
|
2628
2153
|
}
|
|
2629
|
-
|
|
2630
2154
|
.e-schedule .e-agenda-view .e-day-date-header .e-m-day {
|
|
2631
2155
|
font-size: 12px;
|
|
2632
2156
|
}
|
|
2633
|
-
|
|
2634
2157
|
.e-schedule .e-agenda-view .e-day-date-header.e-current-day {
|
|
2635
2158
|
color: #22d3ee;
|
|
2636
2159
|
}
|
|
2637
|
-
|
|
2638
2160
|
.e-schedule .e-agenda-view .e-day-border {
|
|
2639
2161
|
border-bottom: 1px solid #4b5563;
|
|
2640
2162
|
}
|
|
2641
|
-
|
|
2642
2163
|
.e-schedule .e-agenda-view .e-date-border {
|
|
2643
2164
|
border-bottom: 1px solid #4b5563;
|
|
2644
2165
|
border-right: 1px solid #4b5563;
|
|
2645
2166
|
}
|
|
2646
|
-
|
|
2647
2167
|
.e-schedule .e-agenda-view .e-day-padding {
|
|
2648
2168
|
padding-left: 8px;
|
|
2649
2169
|
}
|
|
2650
|
-
|
|
2651
2170
|
.e-schedule .e-agenda-view .e-date-header {
|
|
2652
2171
|
font-size: 20px;
|
|
2653
2172
|
}
|
|
2654
|
-
|
|
2655
2173
|
.e-schedule .e-agenda-view .e-day-header {
|
|
2656
2174
|
font-size: 12px;
|
|
2657
2175
|
}
|
|
2658
|
-
|
|
2659
2176
|
.e-schedule .e-agenda-view .e-subject-wrap {
|
|
2660
2177
|
display: -ms-flexbox;
|
|
2661
2178
|
display: flex;
|
|
2662
2179
|
margin-bottom: 4px;
|
|
2663
2180
|
}
|
|
2664
|
-
|
|
2665
2181
|
.e-schedule .e-agenda-view .e-active-appointment-agenda .e-subject {
|
|
2666
2182
|
color: #fff;
|
|
2667
2183
|
}
|
|
2668
|
-
|
|
2669
2184
|
.e-schedule .e-agenda-view .e-active-appointment-agenda .e-date-time {
|
|
2670
2185
|
color: #fff;
|
|
2671
2186
|
}
|
|
2672
|
-
|
|
2673
2187
|
.e-schedule .e-agenda-view .e-active-appointment-agenda .e-resource-name {
|
|
2674
2188
|
color: #fff;
|
|
2675
2189
|
}
|
|
2676
|
-
|
|
2677
2190
|
.e-schedule .e-agenda-view .e-active-appointment-agenda .e-recurrence-icon,
|
|
2678
2191
|
.e-schedule .e-agenda-view .e-active-appointment-agenda .e-recurrence-edit-icon {
|
|
2679
2192
|
color: #fff;
|
|
2680
2193
|
}
|
|
2681
|
-
|
|
2682
2194
|
.e-schedule .e-agenda-view .e-active-appointment-agenda .e-location {
|
|
2683
2195
|
color: #fff;
|
|
2684
2196
|
}
|
|
2685
|
-
|
|
2686
2197
|
.e-schedule .e-agenda-view .e-subject {
|
|
2687
2198
|
color: #fff;
|
|
2688
2199
|
font-size: 14px;
|
|
@@ -2690,7 +2201,6 @@
|
|
|
2690
2201
|
overflow: hidden;
|
|
2691
2202
|
text-overflow: ellipsis;
|
|
2692
2203
|
}
|
|
2693
|
-
|
|
2694
2204
|
.e-schedule .e-agenda-view .e-resource-name {
|
|
2695
2205
|
color: #fff;
|
|
2696
2206
|
font-size: 12px;
|
|
@@ -2699,14 +2209,12 @@
|
|
|
2699
2209
|
padding: 8px;
|
|
2700
2210
|
text-overflow: ellipsis;
|
|
2701
2211
|
}
|
|
2702
|
-
|
|
2703
2212
|
.e-schedule .e-agenda-view .e-recurrence-icon,
|
|
2704
2213
|
.e-schedule .e-agenda-view .e-recurrence-edit-icon {
|
|
2705
2214
|
color: #fff;
|
|
2706
2215
|
line-height: 21px;
|
|
2707
2216
|
padding: 0 10px;
|
|
2708
2217
|
}
|
|
2709
|
-
|
|
2710
2218
|
.e-schedule .e-agenda-view .e-date-time {
|
|
2711
2219
|
color: #9ca3af;
|
|
2712
2220
|
font-size: 12px;
|
|
@@ -2714,7 +2222,6 @@
|
|
|
2714
2222
|
overflow: hidden;
|
|
2715
2223
|
text-overflow: ellipsis;
|
|
2716
2224
|
}
|
|
2717
|
-
|
|
2718
2225
|
.e-schedule .e-agenda-view .e-location {
|
|
2719
2226
|
color: #9ca3af;
|
|
2720
2227
|
font-size: 12px;
|
|
@@ -2723,38 +2230,31 @@
|
|
|
2723
2230
|
padding-left: 8px;
|
|
2724
2231
|
text-overflow: ellipsis;
|
|
2725
2232
|
}
|
|
2726
|
-
|
|
2727
2233
|
.e-schedule .e-agenda-view .e-agenda-item {
|
|
2728
2234
|
padding: 10px 0;
|
|
2729
2235
|
}
|
|
2730
|
-
|
|
2731
2236
|
.e-schedule .e-agenda-view .e-agenda-parent {
|
|
2732
2237
|
margin: 0;
|
|
2733
2238
|
padding: 0;
|
|
2734
2239
|
}
|
|
2735
|
-
|
|
2736
2240
|
.e-schedule .e-agenda-view .e-appointment {
|
|
2737
2241
|
border-left: 3px solid #22d3ee;
|
|
2738
2242
|
border-right: 0;
|
|
2739
2243
|
cursor: default;
|
|
2740
2244
|
padding: 0 12px;
|
|
2741
2245
|
}
|
|
2742
|
-
|
|
2743
2246
|
.e-schedule .e-agenda-view .e-appointment:hover {
|
|
2744
2247
|
background: #4b5563;
|
|
2745
2248
|
}
|
|
2746
|
-
|
|
2747
2249
|
.e-schedule .e-agenda-view .e-appointment.e-appointment-border, .e-schedule .e-agenda-view .e-appointment:focus {
|
|
2748
2250
|
background: #6b7280;
|
|
2749
2251
|
}
|
|
2750
|
-
|
|
2751
2252
|
.e-schedule .e-agenda-view .e-appointment.e-template {
|
|
2752
2253
|
display: -ms-inline-flexbox;
|
|
2753
2254
|
display: inline-flex;
|
|
2754
2255
|
-ms-flex-direction: row-reverse;
|
|
2755
2256
|
flex-direction: row-reverse;
|
|
2756
2257
|
}
|
|
2757
|
-
|
|
2758
2258
|
.e-schedule .e-agenda-view .e-no-event {
|
|
2759
2259
|
color: #9ca3af;
|
|
2760
2260
|
cursor: default;
|
|
@@ -2762,7 +2262,6 @@
|
|
|
2762
2262
|
line-height: 52px;
|
|
2763
2263
|
padding: 0 11px;
|
|
2764
2264
|
}
|
|
2765
|
-
|
|
2766
2265
|
.e-schedule .e-agenda-view .e-empty-event {
|
|
2767
2266
|
color: #9ca3af;
|
|
2768
2267
|
cursor: default;
|
|
@@ -2770,12 +2269,10 @@
|
|
|
2770
2269
|
line-height: 52px;
|
|
2771
2270
|
padding: 0 11px;
|
|
2772
2271
|
}
|
|
2773
|
-
|
|
2774
2272
|
.e-schedule.e-device .e-agenda-view .e-m-date,
|
|
2775
2273
|
.e-schedule.e-device .e-month-agenda-view .e-m-date {
|
|
2776
2274
|
font-size: 18px;
|
|
2777
2275
|
}
|
|
2778
|
-
|
|
2779
2276
|
.e-schedule.e-device .e-agenda-view .e-resource-name,
|
|
2780
2277
|
.e-schedule.e-device .e-agenda-view .e-m-day,
|
|
2781
2278
|
.e-schedule.e-device .e-month-agenda-view .e-resource-name,
|
|
@@ -2783,12 +2280,10 @@
|
|
|
2783
2280
|
color: #fff;
|
|
2784
2281
|
font-size: 14px;
|
|
2785
2282
|
}
|
|
2786
|
-
|
|
2787
2283
|
.e-schedule.e-rtl .e-agenda-view .e-appointment {
|
|
2788
2284
|
border-left: 0;
|
|
2789
2285
|
border-right: 3px solid #22d3ee;
|
|
2790
2286
|
}
|
|
2791
|
-
|
|
2792
2287
|
.e-schedule.e-rtl .e-agenda-view .e-resource-column {
|
|
2793
2288
|
border-bottom: 1px solid #4b5563;
|
|
2794
2289
|
border-left: 1px solid #4b5563;
|
|
@@ -2796,15 +2291,12 @@
|
|
|
2796
2291
|
vertical-align: top;
|
|
2797
2292
|
width: 75px;
|
|
2798
2293
|
}
|
|
2799
|
-
|
|
2800
2294
|
.e-schedule.e-rtl .e-agenda-view .e-resource-column .e-resource-name {
|
|
2801
2295
|
white-space: normal;
|
|
2802
2296
|
}
|
|
2803
|
-
|
|
2804
2297
|
.e-schedule.e-rtl .e-agenda-view .e-day-padding {
|
|
2805
2298
|
padding-right: 8px;
|
|
2806
2299
|
}
|
|
2807
|
-
|
|
2808
2300
|
.e-schedule.e-rtl .e-agenda-view .e-date-border {
|
|
2809
2301
|
border-bottom: 1px solid #4b5563;
|
|
2810
2302
|
border-left: 1px solid #4b5563;
|
|
@@ -2820,66 +2312,54 @@
|
|
|
2820
2312
|
height: 54px;
|
|
2821
2313
|
min-height: 54px;
|
|
2822
2314
|
}
|
|
2823
|
-
|
|
2824
2315
|
.e-bigger .e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text,
|
|
2825
2316
|
.e-bigger.e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
|
|
2826
2317
|
font-size: 16px;
|
|
2827
2318
|
}
|
|
2828
|
-
|
|
2829
2319
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-item.e-date-range .e-tbar-btn-text,
|
|
2830
2320
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-item.e-date-range .e-tbar-btn-text {
|
|
2831
2321
|
font-size: 16px;
|
|
2832
2322
|
}
|
|
2833
|
-
|
|
2834
2323
|
.e-bigger .e-schedule .e-schedule-toolbar .e-icon-down-arrow,
|
|
2835
2324
|
.e-bigger.e-schedule .e-schedule-toolbar .e-icon-down-arrow {
|
|
2836
2325
|
font-size: 18px;
|
|
2837
2326
|
}
|
|
2838
|
-
|
|
2839
2327
|
.e-bigger .e-schedule .e-schedule-toolbar .e-schedule .e-toolbar .e-hor-nav,
|
|
2840
2328
|
.e-bigger.e-schedule .e-schedule-toolbar .e-schedule .e-toolbar .e-hor-nav {
|
|
2841
2329
|
min-height: 54px;
|
|
2842
2330
|
min-width: 32px;
|
|
2843
2331
|
z-index: 0;
|
|
2844
2332
|
}
|
|
2845
|
-
|
|
2846
2333
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-item .e-btn.e-tbar-btn .e-icons.e-btn-icon,
|
|
2847
2334
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-item .e-btn.e-tbar-btn .e-icons.e-btn-icon {
|
|
2848
2335
|
font-size: 22px;
|
|
2849
2336
|
}
|
|
2850
|
-
|
|
2851
2337
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-item .e-tbar-btn-text,
|
|
2852
2338
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-item .e-tbar-btn-text {
|
|
2853
2339
|
line-height: inherit;
|
|
2854
2340
|
}
|
|
2855
|
-
|
|
2856
2341
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items,
|
|
2857
2342
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
2858
2343
|
min-height: 54px;
|
|
2859
2344
|
}
|
|
2860
|
-
|
|
2861
2345
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item,
|
|
2862
2346
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2863
2347
|
min-height: 54px;
|
|
2864
2348
|
}
|
|
2865
|
-
|
|
2866
2349
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2867
2350
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2868
2351
|
min-width: 34px;
|
|
2869
2352
|
}
|
|
2870
|
-
|
|
2871
2353
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|
|
2872
2354
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator {
|
|
2873
2355
|
height: calc(100% - 15px);
|
|
2874
2356
|
margin: 7.5px 3px;
|
|
2875
2357
|
min-height: 38px;
|
|
2876
2358
|
}
|
|
2877
|
-
|
|
2878
2359
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-icons,
|
|
2879
2360
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-icons {
|
|
2880
2361
|
min-width: 24px;
|
|
2881
2362
|
}
|
|
2882
|
-
|
|
2883
2363
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn,
|
|
2884
2364
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control,
|
|
2885
2365
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn,
|
|
@@ -2891,14 +2371,6 @@
|
|
|
2891
2371
|
min-width: 24px;
|
|
2892
2372
|
padding: 10px 8px 6px;
|
|
2893
2373
|
}
|
|
2894
|
-
|
|
2895
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons,
|
|
2896
|
-
.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,
|
|
2897
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons,
|
|
2898
|
-
.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 {
|
|
2899
|
-
padding: 0;
|
|
2900
|
-
}
|
|
2901
|
-
|
|
2902
2374
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-icon-right,
|
|
2903
2375
|
.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,
|
|
2904
2376
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-icon-right,
|
|
@@ -2906,7 +2378,6 @@
|
|
|
2906
2378
|
padding: 4px 0 0 12px;
|
|
2907
2379
|
font-size: 22px;
|
|
2908
2380
|
}
|
|
2909
|
-
|
|
2910
2381
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn .e-btn-icon,
|
|
2911
2382
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-btn-icon,
|
|
2912
2383
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn .e-btn-icon,
|
|
@@ -2914,78 +2385,64 @@
|
|
|
2914
2385
|
height: 25px;
|
|
2915
2386
|
padding-bottom: 2px;
|
|
2916
2387
|
}
|
|
2917
|
-
|
|
2918
2388
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-tbar-btn-text,
|
|
2919
2389
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-tbar-btn-text {
|
|
2920
2390
|
font-size: 16px;
|
|
2921
2391
|
}
|
|
2922
|
-
|
|
2923
2392
|
.e-bigger .e-schedule .e-more-popup-wrapper .e-header-day,
|
|
2924
2393
|
.e-bigger.e-schedule .e-more-popup-wrapper .e-header-day {
|
|
2925
2394
|
font-size: 14px;
|
|
2926
2395
|
}
|
|
2927
|
-
|
|
2928
2396
|
.e-bigger .e-schedule .e-vertical-view .e-header-cells .e-header-day,
|
|
2929
2397
|
.e-bigger.e-schedule .e-vertical-view .e-header-cells .e-header-day {
|
|
2930
2398
|
font-size: 14px;
|
|
2931
2399
|
}
|
|
2932
|
-
|
|
2933
2400
|
.e-bigger .e-schedule .e-vertical-view .e-header-cells .e-header-date,
|
|
2934
2401
|
.e-bigger.e-schedule .e-vertical-view .e-header-cells .e-header-date {
|
|
2935
2402
|
font-size: 18px;
|
|
2936
2403
|
}
|
|
2937
|
-
|
|
2938
2404
|
.e-bigger .e-schedule .e-vertical-view .e-resource-cells,
|
|
2939
2405
|
.e-bigger.e-schedule .e-vertical-view .e-resource-cells {
|
|
2940
2406
|
font-size: 14px;
|
|
2941
2407
|
}
|
|
2942
|
-
|
|
2943
2408
|
.e-bigger .e-schedule .e-vertical-view .e-time-cells-wrap table td,
|
|
2944
2409
|
.e-bigger.e-schedule .e-vertical-view .e-time-cells-wrap table td {
|
|
2945
2410
|
font-size: 14px;
|
|
2946
2411
|
}
|
|
2947
|
-
|
|
2948
2412
|
.e-bigger .e-schedule .e-vertical-view .e-clone-time-indicator,
|
|
2949
2413
|
.e-bigger .e-schedule .e-vertical-view .e-current-time,
|
|
2950
2414
|
.e-bigger.e-schedule .e-vertical-view .e-clone-time-indicator,
|
|
2951
2415
|
.e-bigger.e-schedule .e-vertical-view .e-current-time {
|
|
2952
2416
|
font-size: 12px;
|
|
2953
2417
|
}
|
|
2954
|
-
|
|
2955
2418
|
.e-bigger .e-schedule.e-device .e-vertical-view .e-time-cells-wrap table td,
|
|
2956
2419
|
.e-bigger.e-schedule.e-device .e-vertical-view .e-time-cells-wrap table td {
|
|
2957
2420
|
font-size: 11px;
|
|
2958
2421
|
}
|
|
2959
|
-
|
|
2960
2422
|
.e-bigger .e-schedule.e-device .e-vertical-view .e-clone-time-indicator,
|
|
2961
2423
|
.e-bigger .e-schedule.e-device .e-vertical-view .e-current-time,
|
|
2962
2424
|
.e-bigger.e-schedule.e-device .e-vertical-view .e-clone-time-indicator,
|
|
2963
2425
|
.e-bigger.e-schedule.e-device .e-vertical-view .e-current-time {
|
|
2964
2426
|
font-size: 12px;
|
|
2965
2427
|
}
|
|
2966
|
-
|
|
2967
2428
|
.e-bigger .e-schedule .e-month-view .e-header-cells,
|
|
2968
2429
|
.e-bigger.e-schedule .e-month-view .e-header-cells {
|
|
2969
2430
|
height: 38px;
|
|
2970
2431
|
}
|
|
2971
|
-
|
|
2972
2432
|
.e-bigger .e-schedule .e-month-view .e-resource-cells,
|
|
2973
2433
|
.e-bigger .e-schedule .e-month-view .e-date-header-wrap,
|
|
2974
2434
|
.e-bigger.e-schedule .e-month-view .e-resource-cells,
|
|
2975
2435
|
.e-bigger.e-schedule .e-month-view .e-date-header-wrap {
|
|
2976
2436
|
font-size: 16px;
|
|
2977
2437
|
}
|
|
2978
|
-
|
|
2979
2438
|
.e-bigger .e-schedule .e-month-view .e-content-wrap,
|
|
2980
2439
|
.e-bigger.e-schedule .e-month-view .e-content-wrap {
|
|
2981
2440
|
font-size: 16px;
|
|
2982
2441
|
}
|
|
2983
|
-
|
|
2984
2442
|
.e-bigger .e-schedule .e-month-view .e-m-date,
|
|
2985
2443
|
.e-bigger.e-schedule .e-month-view .e-m-date {
|
|
2986
2444
|
font-size: 18px;
|
|
2987
2445
|
}
|
|
2988
|
-
|
|
2989
2446
|
.e-bigger .e-schedule .e-month-view .e-resource-name,
|
|
2990
2447
|
.e-bigger .e-schedule .e-month-view .e-m-day,
|
|
2991
2448
|
.e-bigger.e-schedule .e-month-view .e-resource-name,
|
|
@@ -2996,23 +2453,18 @@
|
|
|
2996
2453
|
.e-schedule.e-multi-drag .e-vertical-view .e-all-day-appointment-wrapper .e-appointment.e-appointment-border, .e-schedule.e-multi-drag .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:focus {
|
|
2997
2454
|
border: 1px solid rgba(75, 85, 99, 0.5);
|
|
2998
2455
|
}
|
|
2999
|
-
|
|
3000
2456
|
.e-schedule.e-multi-drag .e-vertical-view.e-timescale-disable .e-appointment.e-appointment-border, .e-schedule.e-multi-drag .e-vertical-view.e-timescale-disable .e-appointment:focus {
|
|
3001
2457
|
border: 1px solid rgba(75, 85, 99, 0.5);
|
|
3002
2458
|
}
|
|
3003
|
-
|
|
3004
2459
|
.e-schedule.e-multi-drag .e-vertical-view .e-day-wrapper .e-appointment.e-appointment-border, .e-schedule.e-multi-drag .e-vertical-view .e-day-wrapper .e-appointment:focus {
|
|
3005
2460
|
border: 1px solid rgba(75, 85, 99, 0.5);
|
|
3006
2461
|
}
|
|
3007
|
-
|
|
3008
2462
|
.e-schedule.e-multi-drag .e-month-view .e-appointment.e-appointment-border, .e-schedule.e-multi-drag .e-month-view .e-appointment:focus {
|
|
3009
2463
|
border: 1px solid rgba(75, 85, 99, 0.5);
|
|
3010
2464
|
}
|
|
3011
|
-
|
|
3012
2465
|
.e-schedule.e-multi-drag .e-timeline-year-view .e-event-table .e-appointment.e-appointment-border, .e-schedule.e-multi-drag .e-timeline-year-view .e-event-table .e-appointment:focus {
|
|
3013
2466
|
border: 1px solid rgba(75, 85, 99, 0.5);
|
|
3014
2467
|
}
|
|
3015
|
-
|
|
3016
2468
|
.e-schedule.e-multi-drag .e-timeline-view .e-appointment.e-appointment-border, .e-schedule.e-multi-drag .e-timeline-view .e-appointment:focus,
|
|
3017
2469
|
.e-schedule.e-multi-drag .e-timeline-month-view .e-appointment.e-appointment-border,
|
|
3018
2470
|
.e-schedule.e-multi-drag .e-timeline-month-view .e-appointment:focus {
|
|
@@ -3041,7 +2493,6 @@
|
|
|
3041
2493
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
3042
2494
|
width: 420px;
|
|
3043
2495
|
}
|
|
3044
|
-
|
|
3045
2496
|
@media screen and (max-width: 767px) {
|
|
3046
2497
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
3047
2498
|
width: 289px;
|
|
@@ -3054,23 +2505,18 @@
|
|
|
3054
2505
|
user-select: none;
|
|
3055
2506
|
width: 320px;
|
|
3056
2507
|
}
|
|
3057
|
-
|
|
3058
2508
|
.e-dialog.e-quick-dialog .e-disable {
|
|
3059
2509
|
display: none;
|
|
3060
2510
|
}
|
|
3061
|
-
|
|
3062
2511
|
.e-dialog.e-quick-dialog .e-dlg-header-content {
|
|
3063
2512
|
border-bottom: none;
|
|
3064
2513
|
}
|
|
3065
|
-
|
|
3066
2514
|
.e-dialog.e-quick-dialog .e-footer-content {
|
|
3067
2515
|
border-top: none;
|
|
3068
2516
|
}
|
|
3069
|
-
|
|
3070
2517
|
.e-dialog.e-quick-dialog .e-quick-dialog-cancel {
|
|
3071
2518
|
box-shadow: none;
|
|
3072
2519
|
}
|
|
3073
|
-
|
|
3074
2520
|
.e-dialog.e-quick-dialog.e-rtl {
|
|
3075
2521
|
text-align: right;
|
|
3076
2522
|
}
|
|
@@ -3083,50 +2529,40 @@
|
|
|
3083
2529
|
.e-schedule-dialog .e-disable {
|
|
3084
2530
|
display: none;
|
|
3085
2531
|
}
|
|
3086
|
-
|
|
3087
2532
|
.e-schedule-dialog .e-icon-disable {
|
|
3088
|
-
opacity: .5;
|
|
2533
|
+
opacity: 0.5;
|
|
3089
2534
|
}
|
|
3090
|
-
|
|
3091
2535
|
.e-schedule-dialog .e-dlg-header-content {
|
|
3092
2536
|
padding-bottom: 8px;
|
|
3093
2537
|
}
|
|
3094
|
-
|
|
3095
2538
|
.e-schedule-dialog .e-dlg-content {
|
|
3096
2539
|
padding-bottom: 12px;
|
|
3097
2540
|
position: relative;
|
|
3098
2541
|
background-color: #1f2937;
|
|
3099
2542
|
}
|
|
3100
|
-
|
|
3101
2543
|
.e-schedule-dialog .e-event-delete {
|
|
3102
2544
|
float: left;
|
|
3103
2545
|
}
|
|
3104
|
-
|
|
3105
2546
|
.e-schedule-dialog .e-subject-container,
|
|
3106
2547
|
.e-schedule-dialog .e-start-container,
|
|
3107
2548
|
.e-schedule-dialog .e-description-label {
|
|
3108
2549
|
padding-right: 8px;
|
|
3109
2550
|
}
|
|
3110
|
-
|
|
3111
2551
|
.e-schedule-dialog .e-start-time-zone-container {
|
|
3112
2552
|
padding-left: 4px;
|
|
3113
2553
|
padding-right: 8px;
|
|
3114
2554
|
}
|
|
3115
|
-
|
|
3116
2555
|
.e-schedule-dialog .e-location-container,
|
|
3117
2556
|
.e-schedule-dialog .e-end-container {
|
|
3118
2557
|
padding-left: 8px;
|
|
3119
2558
|
}
|
|
3120
|
-
|
|
3121
2559
|
.e-schedule-dialog .e-end-time-zone-container {
|
|
3122
2560
|
padding-left: 8px;
|
|
3123
2561
|
padding-right: 4px;
|
|
3124
2562
|
}
|
|
3125
|
-
|
|
3126
2563
|
.e-schedule-dialog .e-all-day-container {
|
|
3127
2564
|
padding-right: 16px;
|
|
3128
2565
|
}
|
|
3129
|
-
|
|
3130
2566
|
.e-schedule-dialog .e-time-zone-row {
|
|
3131
2567
|
display: -ms-flexbox;
|
|
3132
2568
|
display: flex;
|
|
@@ -3134,27 +2570,23 @@
|
|
|
3134
2570
|
margin-bottom: 0;
|
|
3135
2571
|
overflow: hidden;
|
|
3136
2572
|
padding-bottom: 0;
|
|
3137
|
-
transition: .3s ease-in-out;
|
|
2573
|
+
transition: 0.3s ease-in-out;
|
|
3138
2574
|
width: 100%;
|
|
3139
2575
|
}
|
|
3140
|
-
|
|
3141
2576
|
.e-schedule-dialog .e-time-zone-row .e-start-time-zone-container,
|
|
3142
2577
|
.e-schedule-dialog .e-time-zone-row .e-end-time-zone-container {
|
|
3143
2578
|
display: none;
|
|
3144
2579
|
transform: translateY(-100%);
|
|
3145
2580
|
}
|
|
3146
|
-
|
|
3147
2581
|
.e-schedule-dialog .e-time-zone-row.e-enable {
|
|
3148
2582
|
height: 54px;
|
|
3149
2583
|
margin-bottom: 12px;
|
|
3150
2584
|
}
|
|
3151
|
-
|
|
3152
2585
|
.e-schedule-dialog .e-time-zone-row.e-enable .e-start-time-zone-container,
|
|
3153
2586
|
.e-schedule-dialog .e-time-zone-row.e-enable .e-end-time-zone-container {
|
|
3154
2587
|
display: block;
|
|
3155
2588
|
transform: translateY(0);
|
|
3156
2589
|
}
|
|
3157
|
-
|
|
3158
2590
|
.e-schedule-dialog .e-title-location-row,
|
|
3159
2591
|
.e-schedule-dialog .e-start-end-row,
|
|
3160
2592
|
.e-schedule-dialog .e-start-input-container,
|
|
@@ -3164,12 +2596,10 @@
|
|
|
3164
2596
|
padding-bottom: 12px;
|
|
3165
2597
|
width: 100%;
|
|
3166
2598
|
}
|
|
3167
|
-
|
|
3168
2599
|
.e-schedule-dialog .e-resources {
|
|
3169
2600
|
padding-bottom: 12px;
|
|
3170
2601
|
width: 100%;
|
|
3171
2602
|
}
|
|
3172
|
-
|
|
3173
2603
|
.e-schedule-dialog .e-all-day-time-zone-row {
|
|
3174
2604
|
display: -ms-flexbox;
|
|
3175
2605
|
display: flex;
|
|
@@ -3177,7 +2607,6 @@
|
|
|
3177
2607
|
padding-top: 4px;
|
|
3178
2608
|
width: 100%;
|
|
3179
2609
|
}
|
|
3180
|
-
|
|
3181
2610
|
.e-schedule-dialog .e-subject-container,
|
|
3182
2611
|
.e-schedule-dialog .e-location-container,
|
|
3183
2612
|
.e-schedule-dialog .e-start-container,
|
|
@@ -3186,54 +2615,44 @@
|
|
|
3186
2615
|
.e-schedule-dialog .e-end-time-zone-container {
|
|
3187
2616
|
width: 50%;
|
|
3188
2617
|
}
|
|
3189
|
-
|
|
3190
2618
|
.e-schedule-dialog .e-description,
|
|
3191
2619
|
.e-schedule-dialog .e-float-input .e-description {
|
|
3192
2620
|
height: 50px;
|
|
3193
2621
|
resize: vertical;
|
|
3194
2622
|
}
|
|
3195
|
-
|
|
3196
2623
|
.e-schedule-dialog .e-repeat-container,
|
|
3197
2624
|
.e-schedule-dialog .e-input-group .e-input-group-icon.e-icon-disable {
|
|
3198
2625
|
display: none;
|
|
3199
2626
|
}
|
|
3200
|
-
|
|
3201
2627
|
.e-schedule-dialog .e-footer-content {
|
|
3202
2628
|
margin-top: 4px;
|
|
3203
2629
|
}
|
|
3204
|
-
|
|
3205
2630
|
.e-schedule-dialog.e-rtl {
|
|
3206
2631
|
text-align: right;
|
|
3207
2632
|
}
|
|
3208
|
-
|
|
3209
2633
|
.e-schedule-dialog.e-rtl .e-all-day-container {
|
|
3210
2634
|
margin-left: 16px;
|
|
3211
2635
|
margin-right: 0;
|
|
3212
2636
|
}
|
|
3213
|
-
|
|
3214
2637
|
.e-schedule-dialog.e-rtl .e-subject-container,
|
|
3215
2638
|
.e-schedule-dialog.e-rtl .e-start-container,
|
|
3216
2639
|
.e-schedule-dialog.e-rtl .e-description-label {
|
|
3217
2640
|
padding-left: 8px;
|
|
3218
2641
|
padding-right: 0;
|
|
3219
2642
|
}
|
|
3220
|
-
|
|
3221
2643
|
.e-schedule-dialog.e-rtl .e-start-time-zone-container {
|
|
3222
2644
|
padding-left: 8px;
|
|
3223
2645
|
padding-right: 4px;
|
|
3224
2646
|
}
|
|
3225
|
-
|
|
3226
2647
|
.e-schedule-dialog.e-rtl .e-location-container,
|
|
3227
2648
|
.e-schedule-dialog.e-rtl .e-end-container {
|
|
3228
2649
|
padding-left: 0;
|
|
3229
2650
|
padding-right: 8px;
|
|
3230
2651
|
}
|
|
3231
|
-
|
|
3232
2652
|
.e-schedule-dialog.e-rtl .e-end-time-zone-container {
|
|
3233
2653
|
padding-left: 4px;
|
|
3234
2654
|
padding-right: 8px;
|
|
3235
2655
|
}
|
|
3236
|
-
|
|
3237
2656
|
.e-schedule-dialog.e-rtl .e-event-delete {
|
|
3238
2657
|
float: right;
|
|
3239
2658
|
}
|
|
@@ -3244,7 +2663,6 @@
|
|
|
3244
2663
|
padding: 0 10px;
|
|
3245
2664
|
text-indent: 10px;
|
|
3246
2665
|
}
|
|
3247
|
-
|
|
3248
2666
|
.e-ddl.e-popup .e-resource-template .e-resource-color {
|
|
3249
2667
|
height: 14px;
|
|
3250
2668
|
margin-top: 10px;
|
|
@@ -3254,64 +2672,52 @@
|
|
|
3254
2672
|
.e-bigger .e-ddl.e-popup .e-resource-template {
|
|
3255
2673
|
padding: 0 15px;
|
|
3256
2674
|
}
|
|
3257
|
-
|
|
3258
2675
|
.e-bigger .e-ddl.e-popup .e-resource-template .e-resource-color {
|
|
3259
2676
|
height: 16px;
|
|
3260
2677
|
margin-top: 14px;
|
|
3261
2678
|
width: 16px;
|
|
3262
2679
|
}
|
|
3263
|
-
|
|
3264
2680
|
.e-bigger .e-schedule-dialog .e-disable {
|
|
3265
2681
|
display: none;
|
|
3266
2682
|
}
|
|
3267
|
-
|
|
3268
2683
|
.e-bigger .e-schedule-dialog .e-dlg-header-content {
|
|
3269
2684
|
padding-bottom: 8px;
|
|
3270
2685
|
}
|
|
3271
|
-
|
|
3272
2686
|
.e-bigger .e-schedule-dialog .e-dlg-content {
|
|
3273
2687
|
padding-bottom: 12px;
|
|
3274
2688
|
position: relative;
|
|
3275
2689
|
}
|
|
3276
|
-
|
|
3277
2690
|
.e-bigger .e-schedule-dialog .e-event-cancel,
|
|
3278
2691
|
.e-bigger .e-schedule-dialog .e-event-delete {
|
|
3279
2692
|
border: none;
|
|
3280
2693
|
box-shadow: none;
|
|
3281
2694
|
}
|
|
3282
|
-
|
|
3283
2695
|
.e-bigger .e-schedule-dialog .e-footer-content .e-btn.e-event-delete {
|
|
3284
2696
|
float: left;
|
|
3285
2697
|
margin-left: 0;
|
|
3286
2698
|
}
|
|
3287
|
-
|
|
3288
2699
|
.e-bigger .e-schedule-dialog .e-subject-container,
|
|
3289
2700
|
.e-bigger .e-schedule-dialog .e-start-container,
|
|
3290
2701
|
.e-bigger .e-schedule-dialog .e-start-time-zone-container,
|
|
3291
2702
|
.e-bigger .e-schedule-dialog .e-description-label {
|
|
3292
2703
|
padding-right: 12px;
|
|
3293
2704
|
}
|
|
3294
|
-
|
|
3295
2705
|
.e-bigger .e-schedule-dialog .e-location-container,
|
|
3296
2706
|
.e-bigger .e-schedule-dialog .e-end-container,
|
|
3297
2707
|
.e-bigger .e-schedule-dialog .e-end-time-zone-container {
|
|
3298
2708
|
padding-left: 12px;
|
|
3299
2709
|
}
|
|
3300
|
-
|
|
3301
2710
|
.e-bigger .e-schedule-dialog .e-all-day-container {
|
|
3302
2711
|
padding-right: 16px;
|
|
3303
2712
|
}
|
|
3304
|
-
|
|
3305
2713
|
.e-bigger .e-schedule-dialog .e-time-zone-row {
|
|
3306
2714
|
display: none;
|
|
3307
2715
|
}
|
|
3308
|
-
|
|
3309
2716
|
.e-bigger .e-schedule-dialog .e-time-zone-row.e-enable {
|
|
3310
2717
|
display: -ms-flexbox;
|
|
3311
2718
|
display: flex;
|
|
3312
2719
|
height: 64px;
|
|
3313
2720
|
}
|
|
3314
|
-
|
|
3315
2721
|
.e-bigger .e-schedule-dialog .e-title-location-row,
|
|
3316
2722
|
.e-bigger .e-schedule-dialog .e-start-end-row,
|
|
3317
2723
|
.e-bigger .e-schedule-dialog .e-start-input-container,
|
|
@@ -3322,12 +2728,10 @@
|
|
|
3322
2728
|
padding-bottom: 12px;
|
|
3323
2729
|
width: 100%;
|
|
3324
2730
|
}
|
|
3325
|
-
|
|
3326
2731
|
.e-bigger .e-schedule-dialog .e-resources {
|
|
3327
2732
|
padding-bottom: 12px;
|
|
3328
2733
|
width: 100%;
|
|
3329
2734
|
}
|
|
3330
|
-
|
|
3331
2735
|
.e-bigger .e-schedule-dialog .e-all-day-time-zone-row {
|
|
3332
2736
|
display: -ms-flexbox;
|
|
3333
2737
|
display: flex;
|
|
@@ -3335,7 +2739,6 @@
|
|
|
3335
2739
|
padding-top: 0;
|
|
3336
2740
|
width: 100%;
|
|
3337
2741
|
}
|
|
3338
|
-
|
|
3339
2742
|
.e-bigger .e-schedule-dialog .e-subject-container,
|
|
3340
2743
|
.e-bigger .e-schedule-dialog .e-location-container,
|
|
3341
2744
|
.e-bigger .e-schedule-dialog .e-start-container,
|
|
@@ -3344,7 +2747,6 @@
|
|
|
3344
2747
|
.e-bigger .e-schedule-dialog .e-end-time-zone-container {
|
|
3345
2748
|
width: 50%;
|
|
3346
2749
|
}
|
|
3347
|
-
|
|
3348
2750
|
.e-bigger .e-schedule-dialog .e-location-container,
|
|
3349
2751
|
.e-bigger .e-schedule-dialog .e-end-container,
|
|
3350
2752
|
.e-bigger .e-schedule-dialog .e-end-time-zone-container,
|
|
@@ -3355,29 +2757,24 @@
|
|
|
3355
2757
|
.e-bigger .e-schedule-dialog .e-repeat-container {
|
|
3356
2758
|
padding-top: 0;
|
|
3357
2759
|
}
|
|
3358
|
-
|
|
3359
2760
|
.e-bigger .e-schedule-dialog .e-all-day-time-zone-row {
|
|
3360
2761
|
padding-bottom: 16px;
|
|
3361
2762
|
padding-top: 10px;
|
|
3362
2763
|
}
|
|
3363
|
-
|
|
3364
2764
|
.e-bigger .e-schedule-dialog .e-description,
|
|
3365
2765
|
.e-bigger .e-schedule-dialog .e-float-input .e-description {
|
|
3366
2766
|
height: 50px;
|
|
3367
2767
|
resize: vertical;
|
|
3368
2768
|
}
|
|
3369
|
-
|
|
3370
2769
|
.e-bigger .e-schedule-dialog .e-time-zone-row,
|
|
3371
2770
|
.e-bigger .e-schedule-dialog .e-repeat-container,
|
|
3372
2771
|
.e-bigger .e-schedule-dialog .e-input-group .e-input-group-icon.e-icon-disable {
|
|
3373
2772
|
display: none;
|
|
3374
2773
|
}
|
|
3375
|
-
|
|
3376
2774
|
.e-bigger .e-schedule-dialog.e-rtl .e-all-day-container {
|
|
3377
2775
|
margin-left: 20px;
|
|
3378
2776
|
margin-right: 0;
|
|
3379
2777
|
}
|
|
3380
|
-
|
|
3381
2778
|
.e-bigger .e-schedule-dialog.e-rtl .e-subject-container,
|
|
3382
2779
|
.e-bigger .e-schedule-dialog.e-rtl .e-start-container,
|
|
3383
2780
|
.e-bigger .e-schedule-dialog.e-rtl .e-start-time-zone-container,
|
|
@@ -3385,14 +2782,12 @@
|
|
|
3385
2782
|
padding-left: 12px;
|
|
3386
2783
|
padding-right: 0;
|
|
3387
2784
|
}
|
|
3388
|
-
|
|
3389
2785
|
.e-bigger .e-schedule-dialog.e-rtl .e-location-container,
|
|
3390
2786
|
.e-bigger .e-schedule-dialog.e-rtl .e-end-container,
|
|
3391
2787
|
.e-bigger .e-schedule-dialog.e-rtl .e-end-time-zone-container {
|
|
3392
2788
|
padding-left: 0;
|
|
3393
2789
|
padding-right: 12px;
|
|
3394
2790
|
}
|
|
3395
|
-
|
|
3396
2791
|
.e-bigger .e-schedule-dialog.e-rtl .e-event-delete {
|
|
3397
2792
|
float: right;
|
|
3398
2793
|
}
|
|
@@ -3401,13 +2796,11 @@
|
|
|
3401
2796
|
.e-schedule-dialog.e-device .e-dlg-header * {
|
|
3402
2797
|
width: 100%;
|
|
3403
2798
|
}
|
|
3404
|
-
|
|
3405
2799
|
.e-schedule-dialog.e-device .e-dlg-header-content {
|
|
3406
2800
|
background: #1f2937;
|
|
3407
2801
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
|
|
3408
2802
|
margin-bottom: 3px;
|
|
3409
2803
|
}
|
|
3410
|
-
|
|
3411
2804
|
.e-schedule-dialog.e-device .e-title-location-row,
|
|
3412
2805
|
.e-schedule-dialog.e-device .e-start-end-row,
|
|
3413
2806
|
.e-schedule-dialog.e-device .e-time-zone-row,
|
|
@@ -3415,11 +2808,9 @@
|
|
|
3415
2808
|
.e-schedule-dialog.e-device .e-end-input-container {
|
|
3416
2809
|
display: inline;
|
|
3417
2810
|
}
|
|
3418
|
-
|
|
3419
2811
|
.e-schedule-dialog.e-device .e-time-zone-row.e-enable {
|
|
3420
2812
|
display: inline;
|
|
3421
2813
|
}
|
|
3422
|
-
|
|
3423
2814
|
.e-schedule-dialog.e-device .e-subject-container,
|
|
3424
2815
|
.e-schedule-dialog.e-device .e-location-container,
|
|
3425
2816
|
.e-schedule-dialog.e-device .e-start-container,
|
|
@@ -3429,14 +2820,12 @@
|
|
|
3429
2820
|
padding-left: 0;
|
|
3430
2821
|
width: 100%;
|
|
3431
2822
|
}
|
|
3432
|
-
|
|
3433
2823
|
.e-schedule-dialog.e-device .e-subject-container,
|
|
3434
2824
|
.e-schedule-dialog.e-device .e-start-container,
|
|
3435
2825
|
.e-schedule-dialog.e-device .e-start-time-zone-container,
|
|
3436
2826
|
.e-schedule-dialog.e-device .e-description-label {
|
|
3437
2827
|
padding-right: 0;
|
|
3438
2828
|
}
|
|
3439
|
-
|
|
3440
2829
|
.e-schedule-dialog.e-device .e-location-container,
|
|
3441
2830
|
.e-schedule-dialog.e-device .e-end-container,
|
|
3442
2831
|
.e-schedule-dialog.e-device .e-end-time-zone-container,
|
|
@@ -3447,41 +2836,33 @@
|
|
|
3447
2836
|
.e-schedule-dialog.e-device .e-repeat-container {
|
|
3448
2837
|
padding-top: 20px;
|
|
3449
2838
|
}
|
|
3450
|
-
|
|
3451
2839
|
.e-schedule-dialog.e-device .e-all-day-time-zone-row {
|
|
3452
2840
|
padding-top: 20px;
|
|
3453
2841
|
}
|
|
3454
|
-
|
|
3455
2842
|
.e-schedule-dialog.e-device .e-resources {
|
|
3456
2843
|
padding-bottom: 0;
|
|
3457
2844
|
padding-top: 20px;
|
|
3458
2845
|
}
|
|
3459
|
-
|
|
3460
2846
|
.e-schedule-dialog.e-device .e-description,
|
|
3461
2847
|
.e-schedule-dialog.e-device .e-float-input .e-description {
|
|
3462
2848
|
height: 60px;
|
|
3463
2849
|
resize: vertical;
|
|
3464
2850
|
}
|
|
3465
|
-
|
|
3466
2851
|
.e-schedule-dialog.e-device .e-all-day-time-zone-row {
|
|
3467
2852
|
margin-top: 0;
|
|
3468
2853
|
padding-bottom: 0;
|
|
3469
2854
|
}
|
|
3470
|
-
|
|
3471
2855
|
.e-schedule-dialog.e-device .e-repeat-parent-row {
|
|
3472
2856
|
padding-top: 8px;
|
|
3473
2857
|
}
|
|
3474
|
-
|
|
3475
2858
|
.e-schedule-dialog.e-device .e-all-day-container {
|
|
3476
2859
|
margin-right: 20px;
|
|
3477
2860
|
}
|
|
3478
|
-
|
|
3479
2861
|
.e-schedule-dialog.e-device .e-title-header {
|
|
3480
2862
|
display: -ms-flexbox;
|
|
3481
2863
|
display: flex;
|
|
3482
2864
|
width: 100%;
|
|
3483
2865
|
}
|
|
3484
|
-
|
|
3485
2866
|
.e-schedule-dialog.e-device .e-save-icon,
|
|
3486
2867
|
.e-schedule-dialog.e-device .e-back-icon,
|
|
3487
2868
|
.e-schedule-dialog.e-device .e-forward-icon {
|
|
@@ -3489,62 +2870,50 @@
|
|
|
3489
2870
|
line-height: normal;
|
|
3490
2871
|
color: #d1d5db;
|
|
3491
2872
|
}
|
|
3492
|
-
|
|
3493
2873
|
.e-schedule-dialog.e-device .e-save-icon {
|
|
3494
2874
|
text-align: right;
|
|
3495
2875
|
}
|
|
3496
|
-
|
|
3497
2876
|
.e-schedule-dialog.e-device .e-time-zone-row,
|
|
3498
2877
|
.e-schedule-dialog.e-device .e-input-group .e-input-group-icon.e-icon-disable {
|
|
3499
2878
|
display: none;
|
|
3500
2879
|
}
|
|
3501
|
-
|
|
3502
2880
|
.e-schedule-dialog.e-device .e-repeat-container {
|
|
3503
2881
|
display: block;
|
|
3504
2882
|
}
|
|
3505
|
-
|
|
3506
2883
|
.e-schedule-dialog.e-device .e-icon-down-arrow {
|
|
3507
2884
|
font-size: 18px;
|
|
3508
2885
|
}
|
|
3509
|
-
|
|
3510
2886
|
.e-schedule-dialog.e-device.e-rtl .e-save-icon {
|
|
3511
2887
|
text-align: left;
|
|
3512
2888
|
}
|
|
3513
|
-
|
|
3514
2889
|
.e-schedule-dialog.e-device.e-rtl .e-all-day-container {
|
|
3515
2890
|
margin-left: 20px;
|
|
3516
2891
|
margin-right: 0;
|
|
3517
2892
|
}
|
|
3518
|
-
|
|
3519
2893
|
.e-schedule-dialog.e-device.e-rtl .e-subject-container,
|
|
3520
2894
|
.e-schedule-dialog.e-device.e-rtl .e-start-container,
|
|
3521
2895
|
.e-schedule-dialog.e-device.e-rtl .e-start-time-zone-container,
|
|
3522
2896
|
.e-schedule-dialog.e-device.e-rtl .e-description-label {
|
|
3523
2897
|
padding-left: 0;
|
|
3524
2898
|
}
|
|
3525
|
-
|
|
3526
2899
|
.e-schedule-dialog.e-device.e-rtl .e-location-container,
|
|
3527
2900
|
.e-schedule-dialog.e-device.e-rtl .e-end-container,
|
|
3528
2901
|
.e-schedule-dialog.e-device.e-rtl .e-end-time-zone-container,
|
|
3529
2902
|
.e-schedule-dialog.e-device.e-rtl .e-all-day-container {
|
|
3530
2903
|
padding-right: 0;
|
|
3531
2904
|
}
|
|
3532
|
-
|
|
3533
2905
|
.e-schedule-dialog.e-device .e-recurrence-container {
|
|
3534
2906
|
position: relative;
|
|
3535
2907
|
}
|
|
3536
|
-
|
|
3537
2908
|
.e-schedule-dialog.e-device .e-recurrence-container.e-hide {
|
|
3538
2909
|
display: none;
|
|
3539
2910
|
}
|
|
3540
|
-
|
|
3541
2911
|
.e-schedule-dialog.e-device .e-recurrence-container .e-recurrence-edit-button {
|
|
3542
2912
|
border: 0;
|
|
3543
2913
|
box-shadow: none;
|
|
3544
2914
|
margin: -3px 5px;
|
|
3545
2915
|
position: absolute;
|
|
3546
2916
|
}
|
|
3547
|
-
|
|
3548
2917
|
.e-schedule-dialog.e-device .e-recurrence-container .e-recurrence-edit-button .e-recurrence-edit.e-icons {
|
|
3549
2918
|
font-size: 12px;
|
|
3550
2919
|
position: relative;
|
|
@@ -3566,24 +2935,20 @@
|
|
|
3566
2935
|
width: 100%;
|
|
3567
2936
|
border: 1px solid #4b5563;
|
|
3568
2937
|
}
|
|
3569
|
-
|
|
3570
2938
|
.e-quick-popup-wrapper .e-hidden {
|
|
3571
2939
|
display: none;
|
|
3572
2940
|
}
|
|
3573
|
-
|
|
3574
2941
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper {
|
|
3575
2942
|
position: absolute;
|
|
3576
2943
|
right: 6px;
|
|
3577
2944
|
top: 4px;
|
|
3578
2945
|
padding: 2px 8px 0 0;
|
|
3579
2946
|
}
|
|
3580
|
-
|
|
3581
2947
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-edit,
|
|
3582
2948
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-delete,
|
|
3583
2949
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close {
|
|
3584
2950
|
color: #d1d5db;
|
|
3585
2951
|
}
|
|
3586
|
-
|
|
3587
2952
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-edit:focus, .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-edit:hover,
|
|
3588
2953
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-delete:focus,
|
|
3589
2954
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-delete:hover,
|
|
@@ -3592,26 +2957,21 @@
|
|
|
3592
2957
|
background: #6b7280;
|
|
3593
2958
|
color: #d1d5db;
|
|
3594
2959
|
}
|
|
3595
|
-
|
|
3596
2960
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-edit .e-close-icon,
|
|
3597
2961
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-delete .e-close-icon,
|
|
3598
2962
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close .e-close-icon {
|
|
3599
2963
|
font-size: 18px;
|
|
3600
2964
|
}
|
|
3601
|
-
|
|
3602
2965
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-content {
|
|
3603
2966
|
padding: 40px 18px 12px;
|
|
3604
2967
|
}
|
|
3605
|
-
|
|
3606
2968
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table {
|
|
3607
2969
|
width: 100%;
|
|
3608
2970
|
}
|
|
3609
|
-
|
|
3610
2971
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-schedule-form > span {
|
|
3611
2972
|
margin-bottom: 4px;
|
|
3612
2973
|
margin-top: 14px;
|
|
3613
2974
|
}
|
|
3614
|
-
|
|
3615
2975
|
.e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
3616
2976
|
font-size: 22px;
|
|
3617
2977
|
height: 40px;
|
|
@@ -3619,27 +2979,22 @@
|
|
|
3619
2979
|
line-height: 22px;
|
|
3620
2980
|
padding: 2px 10px;
|
|
3621
2981
|
}
|
|
3622
|
-
|
|
3623
2982
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper {
|
|
3624
2983
|
padding: 6px 8px 0 0;
|
|
3625
2984
|
}
|
|
3626
|
-
|
|
3627
2985
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit,
|
|
3628
2986
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete {
|
|
3629
2987
|
display: none;
|
|
3630
2988
|
}
|
|
3631
|
-
|
|
3632
2989
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-close {
|
|
3633
2990
|
position: relative;
|
|
3634
2991
|
right: 2px;
|
|
3635
2992
|
}
|
|
3636
|
-
|
|
3637
2993
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit,
|
|
3638
2994
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete,
|
|
3639
2995
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-close {
|
|
3640
2996
|
color: #d1d5db;
|
|
3641
2997
|
}
|
|
3642
|
-
|
|
3643
2998
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit:focus, .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit:hover,
|
|
3644
2999
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete:focus,
|
|
3645
3000
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete:hover,
|
|
@@ -3648,29 +3003,24 @@
|
|
|
3648
3003
|
background: rgba(255, 255, 255, 0.15);
|
|
3649
3004
|
color: #22d3ee;
|
|
3650
3005
|
}
|
|
3651
|
-
|
|
3652
3006
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit-icon,
|
|
3653
3007
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete-icon,
|
|
3654
3008
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-close-icon {
|
|
3655
3009
|
font-size: 18px;
|
|
3656
3010
|
}
|
|
3657
|
-
|
|
3658
3011
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit:disabled:hover,
|
|
3659
3012
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete:disabled:hover {
|
|
3660
3013
|
background: none;
|
|
3661
3014
|
}
|
|
3662
|
-
|
|
3663
3015
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit:disabled > .e-edit-icon,
|
|
3664
3016
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit:disabled > .e-delete-icon,
|
|
3665
3017
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete:disabled > .e-edit-icon,
|
|
3666
3018
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete:disabled > .e-delete-icon {
|
|
3667
|
-
opacity: .5;
|
|
3019
|
+
opacity: 0.5;
|
|
3668
3020
|
}
|
|
3669
|
-
|
|
3670
3021
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-subject-wrap {
|
|
3671
3022
|
padding: 12px 18px;
|
|
3672
3023
|
}
|
|
3673
|
-
|
|
3674
3024
|
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-subject-wrap .e-subject {
|
|
3675
3025
|
cursor: default;
|
|
3676
3026
|
font-size: 20px;
|
|
@@ -3683,11 +3033,9 @@
|
|
|
3683
3033
|
border-radius: 4px;
|
|
3684
3034
|
padding: 8px;
|
|
3685
3035
|
}
|
|
3686
|
-
|
|
3687
3036
|
.e-quick-popup-wrapper .e-event-popup .e-popup-content {
|
|
3688
3037
|
padding: 0 18px 12px;
|
|
3689
3038
|
}
|
|
3690
|
-
|
|
3691
3039
|
.e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper,
|
|
3692
3040
|
.e-quick-popup-wrapper .e-event-popup .e-header-icon-wrapper {
|
|
3693
3041
|
display: -ms-flexbox;
|
|
@@ -3695,7 +3043,6 @@
|
|
|
3695
3043
|
-ms-flex-pack: end;
|
|
3696
3044
|
justify-content: flex-end;
|
|
3697
3045
|
}
|
|
3698
|
-
|
|
3699
3046
|
.e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper .e-edit,
|
|
3700
3047
|
.e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper .e-delete,
|
|
3701
3048
|
.e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper .e-close,
|
|
@@ -3705,7 +3052,6 @@
|
|
|
3705
3052
|
background-color: transparent;
|
|
3706
3053
|
border: 0;
|
|
3707
3054
|
}
|
|
3708
|
-
|
|
3709
3055
|
.e-quick-popup-wrapper .e-cell-popup .e-date-time,
|
|
3710
3056
|
.e-quick-popup-wrapper .e-cell-popup .e-location,
|
|
3711
3057
|
.e-quick-popup-wrapper .e-cell-popup .e-time-zone,
|
|
@@ -3721,7 +3067,6 @@
|
|
|
3721
3067
|
display: flex;
|
|
3722
3068
|
padding-top: 12px;
|
|
3723
3069
|
}
|
|
3724
|
-
|
|
3725
3070
|
.e-quick-popup-wrapper .e-cell-popup .e-date-time-icon,
|
|
3726
3071
|
.e-quick-popup-wrapper .e-cell-popup .e-location-icon,
|
|
3727
3072
|
.e-quick-popup-wrapper .e-cell-popup .e-time-zone-icon,
|
|
@@ -3734,11 +3079,10 @@
|
|
|
3734
3079
|
.e-quick-popup-wrapper .e-event-popup .e-resource-icon {
|
|
3735
3080
|
color: #9ca3af;
|
|
3736
3081
|
font-size: 18px;
|
|
3737
|
-
padding-right:
|
|
3082
|
+
padding-right: 12px;
|
|
3738
3083
|
font-size: 18px;
|
|
3739
3084
|
padding: 2px 12px 0 0;
|
|
3740
3085
|
}
|
|
3741
|
-
|
|
3742
3086
|
.e-quick-popup-wrapper .e-cell-popup .e-date-time-details,
|
|
3743
3087
|
.e-quick-popup-wrapper .e-cell-popup .e-location-details,
|
|
3744
3088
|
.e-quick-popup-wrapper .e-cell-popup .e-time-zone-details,
|
|
@@ -3753,54 +3097,42 @@
|
|
|
3753
3097
|
cursor: default;
|
|
3754
3098
|
font-size: 14px;
|
|
3755
3099
|
}
|
|
3756
|
-
|
|
3757
3100
|
.e-quick-popup-wrapper .e-popup-table td:last-child {
|
|
3758
3101
|
padding-top: 0;
|
|
3759
3102
|
}
|
|
3760
|
-
|
|
3761
3103
|
.e-quick-popup-wrapper .e-popup-footer {
|
|
3762
3104
|
display: block;
|
|
3763
3105
|
padding: 8px 18px 8px 18px;
|
|
3764
3106
|
text-align: right;
|
|
3765
|
-
background-color: #232e3e;
|
|
3766
|
-
border-radius: 0 0 6px 6px;
|
|
3767
3107
|
}
|
|
3768
|
-
|
|
3769
3108
|
.e-quick-popup-wrapper .e-popup-footer .e-event-edit {
|
|
3770
3109
|
margin-right: 8px;
|
|
3771
3110
|
}
|
|
3772
|
-
|
|
3773
3111
|
.e-quick-popup-wrapper .e-popup-footer .e-event-edit,
|
|
3774
3112
|
.e-quick-popup-wrapper .e-popup-footer .e-event-delete {
|
|
3775
3113
|
right: auto;
|
|
3776
3114
|
}
|
|
3777
|
-
|
|
3778
3115
|
.e-quick-popup-wrapper .e-popup-footer .e-event-edit:disabled,
|
|
3779
3116
|
.e-quick-popup-wrapper .e-popup-footer .e-event-delete:disabled {
|
|
3780
3117
|
color: #fff;
|
|
3781
3118
|
}
|
|
3782
|
-
|
|
3783
3119
|
.e-quick-popup-wrapper .e-popup-footer .e-event-details {
|
|
3784
3120
|
border: none;
|
|
3785
3121
|
margin-right: 8px;
|
|
3786
3122
|
right: auto;
|
|
3787
3123
|
text-transform: capitalize;
|
|
3788
3124
|
}
|
|
3789
|
-
|
|
3790
3125
|
.e-quick-popup-wrapper.e-rtl {
|
|
3791
3126
|
text-align: right;
|
|
3792
3127
|
}
|
|
3793
|
-
|
|
3794
3128
|
.e-quick-popup-wrapper.e-rtl .e-cell-popup .e-header-icon-wrapper {
|
|
3795
3129
|
left: 6px;
|
|
3796
3130
|
right: auto;
|
|
3797
3131
|
}
|
|
3798
|
-
|
|
3799
3132
|
.e-quick-popup-wrapper.e-rtl .e-cell-popup .e-popup-footer {
|
|
3800
3133
|
padding: 8px 18px 8px 8px;
|
|
3801
3134
|
text-align: left;
|
|
3802
3135
|
}
|
|
3803
|
-
|
|
3804
3136
|
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-date-time-wrapper,
|
|
3805
3137
|
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-location-details,
|
|
3806
3138
|
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-time-zone-details,
|
|
@@ -3808,27 +3140,21 @@
|
|
|
3808
3140
|
.e-quick-popup-wrapper.e-rtl .e-popup-content .e-resource-details {
|
|
3809
3141
|
margin-right: 10px;
|
|
3810
3142
|
}
|
|
3811
|
-
|
|
3812
3143
|
.e-quick-popup-wrapper.e-rtl .e-event-details {
|
|
3813
3144
|
margin-left: 8px;
|
|
3814
3145
|
}
|
|
3815
|
-
|
|
3816
3146
|
.e-quick-popup-wrapper.e-rtl .e-popup-footer {
|
|
3817
3147
|
padding: 8px 8px 8px 18px;
|
|
3818
3148
|
}
|
|
3819
|
-
|
|
3820
3149
|
.e-quick-popup-wrapper.e-rtl .e-date-time-icon {
|
|
3821
3150
|
padding: 0 0 0 13px;
|
|
3822
3151
|
}
|
|
3823
|
-
|
|
3824
3152
|
.e-quick-popup-wrapper.e-rtl .e-event-popup .e-date-time-icon {
|
|
3825
3153
|
padding: 0 13px;
|
|
3826
3154
|
}
|
|
3827
|
-
|
|
3828
3155
|
.e-quick-popup-wrapper.e-rtl .e-event-edit {
|
|
3829
3156
|
margin-left: 8px;
|
|
3830
3157
|
}
|
|
3831
|
-
|
|
3832
3158
|
.e-quick-popup-wrapper.e-device {
|
|
3833
3159
|
bottom: 0;
|
|
3834
3160
|
height: 100%;
|
|
@@ -3843,17 +3169,14 @@
|
|
|
3843
3169
|
width: 100%;
|
|
3844
3170
|
z-index: 1004;
|
|
3845
3171
|
}
|
|
3846
|
-
|
|
3847
3172
|
.e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper {
|
|
3848
3173
|
background-color: #1f2937;
|
|
3849
3174
|
}
|
|
3850
|
-
|
|
3851
3175
|
.e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit,
|
|
3852
3176
|
.e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete,
|
|
3853
3177
|
.e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-close {
|
|
3854
3178
|
opacity: 1;
|
|
3855
3179
|
}
|
|
3856
|
-
|
|
3857
3180
|
.e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit:focus, .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit:hover,
|
|
3858
3181
|
.e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete:focus,
|
|
3859
3182
|
.e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete:hover,
|
|
@@ -3861,40 +3184,33 @@
|
|
|
3861
3184
|
.e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-close:hover {
|
|
3862
3185
|
background: none;
|
|
3863
3186
|
}
|
|
3864
|
-
|
|
3865
3187
|
.e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-edit.e-btn.e-small.e-round,
|
|
3866
3188
|
.e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-delete.e-btn.e-small.e-round,
|
|
3867
3189
|
.e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-close.e-btn.e-small.e-round {
|
|
3868
3190
|
height: 2.5em;
|
|
3869
3191
|
width: 2.5em;
|
|
3870
3192
|
}
|
|
3871
|
-
|
|
3872
3193
|
.e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-edit,
|
|
3873
3194
|
.e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-delete {
|
|
3874
3195
|
display: block;
|
|
3875
3196
|
}
|
|
3876
|
-
|
|
3877
3197
|
.e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-close {
|
|
3878
3198
|
margin-left: 0;
|
|
3879
3199
|
margin-right: auto;
|
|
3880
3200
|
-ms-flex-order: -1;
|
|
3881
3201
|
order: -1;
|
|
3882
3202
|
}
|
|
3883
|
-
|
|
3884
3203
|
.e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-subject-wrap {
|
|
3885
3204
|
padding: 12px 24px;
|
|
3886
3205
|
}
|
|
3887
|
-
|
|
3888
3206
|
.e-quick-popup-wrapper.e-device .e-event-popup .e-popup-content {
|
|
3889
3207
|
padding: 12px 24px;
|
|
3890
3208
|
}
|
|
3891
|
-
|
|
3892
3209
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header {
|
|
3893
3210
|
display: -ms-flexbox;
|
|
3894
3211
|
display: flex;
|
|
3895
3212
|
padding: 15px;
|
|
3896
3213
|
}
|
|
3897
|
-
|
|
3898
3214
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close,
|
|
3899
3215
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit,
|
|
3900
3216
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-delete {
|
|
@@ -3905,7 +3221,6 @@
|
|
|
3905
3221
|
background-color: #1f2937;
|
|
3906
3222
|
color: #d1d5db;
|
|
3907
3223
|
}
|
|
3908
|
-
|
|
3909
3224
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close:focus, .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close:hover,
|
|
3910
3225
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit:focus,
|
|
3911
3226
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit:hover,
|
|
@@ -3913,7 +3228,6 @@
|
|
|
3913
3228
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-delete:hover {
|
|
3914
3229
|
background: none;
|
|
3915
3230
|
}
|
|
3916
|
-
|
|
3917
3231
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-subject {
|
|
3918
3232
|
font-size: 15px;
|
|
3919
3233
|
font-weight: 500;
|
|
@@ -3922,13 +3236,11 @@
|
|
|
3922
3236
|
padding: 4px 5px;
|
|
3923
3237
|
width: calc(100% - 95px);
|
|
3924
3238
|
}
|
|
3925
|
-
|
|
3926
3239
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-close-icon,
|
|
3927
3240
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-edit-icon,
|
|
3928
3241
|
.e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-delete-icon {
|
|
3929
3242
|
font-size: 14px;
|
|
3930
3243
|
}
|
|
3931
|
-
|
|
3932
3244
|
.e-quick-popup-wrapper.e-device.e-rtl .e-event-popup .e-popup-header .e-close {
|
|
3933
3245
|
margin-left: auto;
|
|
3934
3246
|
margin-right: 0;
|
|
@@ -3937,48 +3249,39 @@
|
|
|
3937
3249
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
3938
3250
|
font-size: 24px;
|
|
3939
3251
|
}
|
|
3940
|
-
|
|
3941
3252
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content {
|
|
3942
3253
|
padding: 48px 24px 16px;
|
|
3943
3254
|
}
|
|
3944
|
-
|
|
3945
3255
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-date-time-icon,
|
|
3946
3256
|
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-date-time-icon {
|
|
3947
3257
|
padding-right: 16px;
|
|
3948
3258
|
}
|
|
3949
|
-
|
|
3950
3259
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close .e-close-icon {
|
|
3951
3260
|
font-size: 16px;
|
|
3952
3261
|
}
|
|
3953
|
-
|
|
3954
3262
|
.e-bigger .e-quick-popup-wrapper.e-rtl .e-cell-popup .e-date-time-icon {
|
|
3955
3263
|
padding-right: 0;
|
|
3956
3264
|
}
|
|
3957
|
-
|
|
3958
3265
|
.e-bigger .e-quick-popup-wrapper.e-rtl .e-event-popup .e-date-time-icon {
|
|
3959
3266
|
padding-right: 16px;
|
|
3960
3267
|
}
|
|
3961
|
-
|
|
3962
3268
|
.e-bigger .e-quick-popup-wrapper .e-edit.e-btn.e-small.e-round,
|
|
3963
3269
|
.e-bigger .e-quick-popup-wrapper .e-delete.e-btn.e-small.e-round,
|
|
3964
3270
|
.e-bigger .e-quick-popup-wrapper .e-close.e-btn.e-small.e-round {
|
|
3965
3271
|
height: 2em;
|
|
3966
3272
|
width: 2em;
|
|
3967
3273
|
}
|
|
3968
|
-
|
|
3969
3274
|
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-close-icon,
|
|
3970
3275
|
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit-icon,
|
|
3971
3276
|
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete-icon {
|
|
3972
3277
|
font-size: 14px;
|
|
3973
3278
|
font-size: 22px;
|
|
3974
3279
|
}
|
|
3975
|
-
|
|
3976
3280
|
.e-bigger .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-close-icon,
|
|
3977
3281
|
.e-bigger .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-edit-icon,
|
|
3978
3282
|
.e-bigger .e-quick-popup-wrapper.e-device .e-event-popup .e-popup-header .e-header-icon-wrapper .e-delete-icon {
|
|
3979
3283
|
font-size: 14px;
|
|
3980
3284
|
}
|
|
3981
|
-
|
|
3982
3285
|
.e-bigger .e-quick-popup-wrapper.e-device .e-multiple-event-popup .e-popup-header .e-subject {
|
|
3983
3286
|
padding: 0 5px 0 8px;
|
|
3984
3287
|
}
|
|
@@ -3987,18 +3290,18 @@
|
|
|
3987
3290
|
padding: 12px 2px 16px;
|
|
3988
3291
|
}
|
|
3989
3292
|
|
|
3293
|
+
.e-bigger .e-agenda-view .e-appointment {
|
|
3294
|
+
padding: 7px 16px;
|
|
3295
|
+
}
|
|
3990
3296
|
.e-bigger .e-agenda-view .e-subject {
|
|
3991
3297
|
font-size: 16px;
|
|
3992
3298
|
}
|
|
3993
|
-
|
|
3994
3299
|
.e-bigger .e-agenda-view .e-date-time {
|
|
3995
3300
|
font-size: 14px;
|
|
3996
3301
|
}
|
|
3997
|
-
|
|
3998
3302
|
.e-bigger .e-agenda-view .e-day-date-header .e-m-date {
|
|
3999
3303
|
font-size: 20px;
|
|
4000
3304
|
}
|
|
4001
|
-
|
|
4002
3305
|
.e-bigger .e-agenda-view .e-day-date-header .e-m-day {
|
|
4003
3306
|
font-size: 14px;
|
|
4004
3307
|
}
|
|
@@ -4007,12 +3310,10 @@
|
|
|
4007
3310
|
font-size: 14px;
|
|
4008
3311
|
padding-left: 12px;
|
|
4009
3312
|
}
|
|
4010
|
-
|
|
4011
3313
|
.e-bigger .e-timeline-view .e-navigate {
|
|
4012
3314
|
font-size: 16px;
|
|
4013
3315
|
padding: 8px 0 8px 8px;
|
|
4014
3316
|
}
|
|
4015
|
-
|
|
4016
3317
|
.e-bigger .e-timeline-view .e-date-header-wrap table tbody td > span {
|
|
4017
3318
|
font-size: 16px;
|
|
4018
3319
|
padding: 8px 0 8px 8px;
|
|
@@ -4029,11 +3330,9 @@
|
|
|
4029
3330
|
width: 100px;
|
|
4030
3331
|
z-index: 9;
|
|
4031
3332
|
}
|
|
4032
|
-
|
|
4033
3333
|
.e-appointment.e-schedule-event-clone.e-drag-clone {
|
|
4034
3334
|
cursor: move;
|
|
4035
3335
|
}
|
|
4036
|
-
|
|
4037
3336
|
.e-appointment.e-schedule-event-clone .e-recurrence-icon,
|
|
4038
3337
|
.e-appointment.e-schedule-event-clone .e-recurrence-edit-icon,
|
|
4039
3338
|
.e-appointment.e-schedule-event-clone .e-indicator.e-left-icon,
|
|
@@ -4042,7 +3341,6 @@
|
|
|
4042
3341
|
.e-appointment.e-schedule-event-clone .e-event-resize.e-right-handler {
|
|
4043
3342
|
display: none;
|
|
4044
3343
|
}
|
|
4045
|
-
|
|
4046
3344
|
.e-appointment.e-schedule-event-clone .e-appointment-details {
|
|
4047
3345
|
-ms-flex: auto;
|
|
4048
3346
|
flex: auto;
|
|
@@ -4050,13 +3348,11 @@
|
|
|
4050
3348
|
padding: 0 4px;
|
|
4051
3349
|
text-align: left;
|
|
4052
3350
|
}
|
|
4053
|
-
|
|
4054
3351
|
.e-appointment.e-schedule-event-clone .e-appointment-details .e-inner-wrap {
|
|
4055
3352
|
-ms-flex: auto;
|
|
4056
3353
|
flex: auto;
|
|
4057
3354
|
overflow: hidden;
|
|
4058
3355
|
}
|
|
4059
|
-
|
|
4060
3356
|
.e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
4061
3357
|
font-size: 13px;
|
|
4062
3358
|
font-weight: 500;
|
|
@@ -4067,22 +3363,18 @@
|
|
|
4067
3363
|
padding-top: 4px;
|
|
4068
3364
|
text-overflow: ellipsis;
|
|
4069
3365
|
}
|
|
4070
|
-
|
|
4071
3366
|
.e-appointment.e-schedule-event-clone .e-appointment-details .e-time {
|
|
4072
3367
|
font-size: 11px;
|
|
4073
3368
|
overflow: hidden;
|
|
4074
3369
|
padding-top: 1px;
|
|
4075
3370
|
text-overflow: ellipsis;
|
|
4076
3371
|
}
|
|
4077
|
-
|
|
4078
3372
|
.e-appointment.e-schedule-event-clone .e-appointment-details .e-location {
|
|
4079
3373
|
display: none;
|
|
4080
3374
|
}
|
|
4081
|
-
|
|
4082
3375
|
.e-appointment.e-schedule-event-clone.e-month-event .e-appointment-details .e-subject {
|
|
4083
3376
|
padding: 3px 2px;
|
|
4084
3377
|
}
|
|
4085
|
-
|
|
4086
3378
|
.e-appointment.e-schedule-event-clone.e-month-event .e-appointment-details .e-time {
|
|
4087
3379
|
display: none;
|
|
4088
3380
|
}
|
|
@@ -4090,7 +3382,6 @@
|
|
|
4090
3382
|
.e-vertical-view .e-all-day-appointment-wrapper .e-appointment.e-schedule-event-clone .e-appointment-details .e-subject {
|
|
4091
3383
|
padding: 3px 0 1px 4px;
|
|
4092
3384
|
}
|
|
4093
|
-
|
|
4094
3385
|
.e-vertical-view .e-all-day-appointment-wrapper .e-appointment.e-schedule-event-clone .e-appointment-details .e-time {
|
|
4095
3386
|
display: none;
|
|
4096
3387
|
}
|
|
@@ -4109,27 +3400,24 @@
|
|
|
4109
3400
|
padding: 8px 0;
|
|
4110
3401
|
width: 225px;
|
|
4111
3402
|
}
|
|
4112
|
-
|
|
4113
3403
|
.e-bigger .e-more-popup-wrapper .e-more-appointment-wrapper,
|
|
4114
3404
|
.e-more-popup-wrapper .e-more-appointment-wrapper {
|
|
4115
3405
|
margin: 0 4px;
|
|
4116
3406
|
}
|
|
4117
|
-
|
|
4118
3407
|
.e-bigger .e-more-popup-wrapper .e-more-event-popup,
|
|
4119
3408
|
.e-more-popup-wrapper .e-more-event-popup {
|
|
4120
3409
|
height: 100%;
|
|
4121
3410
|
position: relative;
|
|
4122
3411
|
width: 100%;
|
|
4123
3412
|
}
|
|
4124
|
-
|
|
4125
3413
|
.e-bigger .e-more-popup-wrapper .e-more-event-header,
|
|
4126
3414
|
.e-more-popup-wrapper .e-more-event-header {
|
|
4127
3415
|
height: 35px;
|
|
4128
3416
|
margin: 0 8px 4px 14px;
|
|
4129
3417
|
}
|
|
4130
|
-
|
|
4131
3418
|
.e-bigger .e-more-popup-wrapper .e-more-event-content,
|
|
4132
3419
|
.e-more-popup-wrapper .e-more-event-content {
|
|
3420
|
+
color: #fff;
|
|
4133
3421
|
height: calc(100% - 35px);
|
|
4134
3422
|
max-height: 150px;
|
|
4135
3423
|
overflow-y: auto;
|
|
@@ -4137,24 +3425,20 @@
|
|
|
4137
3425
|
padding-right: 10px;
|
|
4138
3426
|
padding: 10px 10px 0;
|
|
4139
3427
|
}
|
|
4140
|
-
|
|
4141
3428
|
.e-bigger .e-more-popup-wrapper .e-more-event-content .e-appointment-border,
|
|
4142
3429
|
.e-more-popup-wrapper .e-more-event-content .e-appointment-border {
|
|
4143
3430
|
border: 0;
|
|
4144
3431
|
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
4145
3432
|
}
|
|
4146
|
-
|
|
4147
3433
|
.e-bigger .e-more-popup-wrapper .e-more-event-date-header,
|
|
4148
3434
|
.e-more-popup-wrapper .e-more-event-date-header {
|
|
4149
3435
|
height: 100%;
|
|
4150
3436
|
width: calc(100% - 25px);
|
|
4151
3437
|
}
|
|
4152
|
-
|
|
4153
3438
|
.e-bigger .e-more-popup-wrapper .e-more-event-date-header .e-current-date,
|
|
4154
3439
|
.e-more-popup-wrapper .e-more-event-date-header .e-current-date {
|
|
4155
3440
|
color: #22d3ee;
|
|
4156
3441
|
}
|
|
4157
|
-
|
|
4158
3442
|
.e-bigger .e-more-popup-wrapper .e-header-day,
|
|
4159
3443
|
.e-more-popup-wrapper .e-header-day {
|
|
4160
3444
|
color: #fff;
|
|
@@ -4162,7 +3446,6 @@
|
|
|
4162
3446
|
line-height: 1;
|
|
4163
3447
|
padding-bottom: 2px;
|
|
4164
3448
|
}
|
|
4165
|
-
|
|
4166
3449
|
.e-bigger .e-more-popup-wrapper .e-header-date,
|
|
4167
3450
|
.e-more-popup-wrapper .e-header-date {
|
|
4168
3451
|
color: #fff;
|
|
@@ -4170,18 +3453,15 @@
|
|
|
4170
3453
|
line-height: 1;
|
|
4171
3454
|
max-width: 15%;
|
|
4172
3455
|
}
|
|
4173
|
-
|
|
4174
3456
|
.e-bigger .e-more-popup-wrapper .e-header-date:hover,
|
|
4175
3457
|
.e-more-popup-wrapper .e-header-date:hover {
|
|
4176
3458
|
cursor: pointer;
|
|
4177
3459
|
text-decoration: underline;
|
|
4178
3460
|
}
|
|
4179
|
-
|
|
4180
3461
|
.e-bigger .e-more-popup-wrapper .e-header-date:focus,
|
|
4181
3462
|
.e-more-popup-wrapper .e-header-date:focus {
|
|
4182
3463
|
text-decoration: underline;
|
|
4183
3464
|
}
|
|
4184
|
-
|
|
4185
3465
|
.e-bigger .e-more-popup-wrapper .e-more-event-close,
|
|
4186
3466
|
.e-more-popup-wrapper .e-more-event-close {
|
|
4187
3467
|
background-color: transparent;
|
|
@@ -4195,18 +3475,15 @@
|
|
|
4195
3475
|
width: 25px;
|
|
4196
3476
|
padding: 1px;
|
|
4197
3477
|
}
|
|
4198
|
-
|
|
4199
3478
|
.e-bigger .e-more-popup-wrapper .e-more-event-close .e-close-icon,
|
|
4200
3479
|
.e-more-popup-wrapper .e-more-event-close .e-close-icon {
|
|
4201
3480
|
font-size: 9px;
|
|
4202
3481
|
font-size: 14px;
|
|
4203
3482
|
}
|
|
4204
|
-
|
|
4205
3483
|
.e-bigger .e-more-popup-wrapper .e-more-event-close .e-btn-icon,
|
|
4206
3484
|
.e-more-popup-wrapper .e-more-event-close .e-btn-icon {
|
|
4207
3485
|
margin-top: 8px;
|
|
4208
3486
|
}
|
|
4209
|
-
|
|
4210
3487
|
.e-bigger .e-more-popup-wrapper .e-more-event-close:focus, .e-bigger .e-more-popup-wrapper .e-more-event-close:hover,
|
|
4211
3488
|
.e-more-popup-wrapper .e-more-event-close:focus,
|
|
4212
3489
|
.e-more-popup-wrapper .e-more-event-close:hover {
|
|
@@ -4214,7 +3491,6 @@
|
|
|
4214
3491
|
border-radius: 50%;
|
|
4215
3492
|
color: #d1d5db;
|
|
4216
3493
|
}
|
|
4217
|
-
|
|
4218
3494
|
.e-bigger .e-more-popup-wrapper .e-appointment,
|
|
4219
3495
|
.e-more-popup-wrapper .e-appointment {
|
|
4220
3496
|
background: #22d3ee;
|
|
@@ -4228,7 +3504,6 @@
|
|
|
4228
3504
|
padding: 2px 0;
|
|
4229
3505
|
width: 100%;
|
|
4230
3506
|
}
|
|
4231
|
-
|
|
4232
3507
|
.e-bigger .e-more-popup-wrapper .e-appointment .e-subject,
|
|
4233
3508
|
.e-more-popup-wrapper .e-appointment .e-subject {
|
|
4234
3509
|
color: #000;
|
|
@@ -4241,7 +3516,6 @@
|
|
|
4241
3516
|
text-overflow: ellipsis;
|
|
4242
3517
|
white-space: nowrap;
|
|
4243
3518
|
}
|
|
4244
|
-
|
|
4245
3519
|
.e-bigger .e-more-popup-wrapper .e-appointment .e-recurrence-icon,
|
|
4246
3520
|
.e-bigger .e-more-popup-wrapper .e-appointment .e-recurrence-edit-icon,
|
|
4247
3521
|
.e-more-popup-wrapper .e-appointment .e-recurrence-icon,
|
|
@@ -4249,14 +3523,12 @@
|
|
|
4249
3523
|
line-height: 26px;
|
|
4250
3524
|
padding: 0 2px;
|
|
4251
3525
|
}
|
|
4252
|
-
|
|
4253
3526
|
.e-bigger .e-more-popup-wrapper .e-appointment.e-appointment-border, .e-bigger .e-more-popup-wrapper .e-appointment:focus,
|
|
4254
3527
|
.e-more-popup-wrapper .e-appointment.e-appointment-border,
|
|
4255
3528
|
.e-more-popup-wrapper .e-appointment:focus {
|
|
4256
3529
|
border: 0;
|
|
4257
3530
|
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
4258
3531
|
}
|
|
4259
|
-
|
|
4260
3532
|
.e-bigger .e-more-popup-wrapper.e-device,
|
|
4261
3533
|
.e-more-popup-wrapper.e-device {
|
|
4262
3534
|
bottom: 0;
|
|
@@ -4270,22 +3542,18 @@
|
|
|
4270
3542
|
width: 100%;
|
|
4271
3543
|
z-index: 1002;
|
|
4272
3544
|
}
|
|
4273
|
-
|
|
4274
3545
|
.e-bigger .e-more-popup-wrapper.e-device .e-more-event-content,
|
|
4275
3546
|
.e-more-popup-wrapper.e-device .e-more-event-content {
|
|
4276
3547
|
max-height: unset;
|
|
4277
3548
|
}
|
|
4278
|
-
|
|
4279
3549
|
.e-bigger .e-more-popup-wrapper.e-rtl .e-header-date,
|
|
4280
3550
|
.e-more-popup-wrapper.e-rtl .e-header-date {
|
|
4281
3551
|
padding-right: 10px;
|
|
4282
3552
|
}
|
|
4283
|
-
|
|
4284
3553
|
.e-bigger .e-more-popup-wrapper.e-rtl .e-header-day,
|
|
4285
3554
|
.e-more-popup-wrapper.e-rtl .e-header-day {
|
|
4286
3555
|
padding-right: 10px;
|
|
4287
3556
|
}
|
|
4288
|
-
|
|
4289
3557
|
.e-bigger .e-more-popup-wrapper.e-rtl .e-more-event-close,
|
|
4290
3558
|
.e-more-popup-wrapper.e-rtl .e-more-event-close {
|
|
4291
3559
|
left: 6px;
|
|
@@ -4297,32 +3565,26 @@
|
|
|
4297
3565
|
background-color: #1f2937;
|
|
4298
3566
|
border: 1px solid #4b5563;
|
|
4299
3567
|
}
|
|
4300
|
-
|
|
4301
3568
|
.e-schedule .e-date-header-wrap {
|
|
4302
3569
|
border-color: #4b5563;
|
|
4303
3570
|
border-style: solid;
|
|
4304
3571
|
border-width: 0;
|
|
4305
3572
|
position: relative;
|
|
4306
3573
|
}
|
|
4307
|
-
|
|
4308
3574
|
.e-schedule .e-header-calendar {
|
|
4309
3575
|
background-color: #374151;
|
|
4310
3576
|
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
4311
3577
|
}
|
|
4312
|
-
|
|
4313
3578
|
.e-schedule .e-vertical-view .e-date-header-wrap table tbody td:first-child,
|
|
4314
3579
|
.e-schedule .e-vertical-view .e-content-wrap table td:first-child {
|
|
4315
3580
|
border-left-width: 0;
|
|
4316
3581
|
}
|
|
4317
|
-
|
|
4318
3582
|
.e-schedule .e-vertical-view .e-date-header-wrap .e-all-day-cells {
|
|
4319
3583
|
background-color: #1f2937;
|
|
4320
3584
|
}
|
|
4321
|
-
|
|
4322
3585
|
.e-schedule .e-vertical-view .e-date-header-wrap .e-all-day-cells:hover {
|
|
4323
3586
|
background: #4b5563;
|
|
4324
3587
|
}
|
|
4325
|
-
|
|
4326
3588
|
.e-schedule .e-vertical-view .e-left-indent-wrap table tbody td {
|
|
4327
3589
|
background-color: #1f2937;
|
|
4328
3590
|
border-color: #4b5563;
|
|
@@ -4330,11 +3592,9 @@
|
|
|
4330
3592
|
border-width: 0 1px 1px 0;
|
|
4331
3593
|
color: #d1d5db;
|
|
4332
3594
|
}
|
|
4333
|
-
|
|
4334
3595
|
.e-schedule .e-vertical-view .e-left-indent-wrap table tbody td.e-header-cells {
|
|
4335
3596
|
border-bottom-width: 0;
|
|
4336
3597
|
}
|
|
4337
|
-
|
|
4338
3598
|
.e-schedule .e-vertical-view .e-left-indent-wrap table tbody td.e-header-cells.e-week-number {
|
|
4339
3599
|
color: #9ca3af;
|
|
4340
3600
|
font-size: 14px;
|
|
@@ -4342,11 +3602,9 @@
|
|
|
4342
3602
|
text-align: center;
|
|
4343
3603
|
vertical-align: top;
|
|
4344
3604
|
}
|
|
4345
|
-
|
|
4346
3605
|
.e-schedule .e-vertical-view .e-left-indent-wrap table tbody td.e-resource-cells {
|
|
4347
3606
|
border-bottom-color: transparent;
|
|
4348
3607
|
}
|
|
4349
|
-
|
|
4350
3608
|
.e-schedule .e-vertical-view .e-date-header-wrap table tbody td {
|
|
4351
3609
|
background-color: #1f2937;
|
|
4352
3610
|
border-color: #4b5563;
|
|
@@ -4355,11 +3613,9 @@
|
|
|
4355
3613
|
color: #d1d5db;
|
|
4356
3614
|
text-align: left;
|
|
4357
3615
|
}
|
|
4358
|
-
|
|
4359
3616
|
.e-schedule .e-vertical-view .e-date-header-wrap table tbody td.e-header-cells {
|
|
4360
3617
|
border-bottom-width: 0;
|
|
4361
3618
|
}
|
|
4362
|
-
|
|
4363
3619
|
.e-schedule .e-vertical-view .e-time-cells-wrap table td {
|
|
4364
3620
|
background-color: #1f2937;
|
|
4365
3621
|
border-color: #4b5563;
|
|
@@ -4368,20 +3624,16 @@
|
|
|
4368
3624
|
color: #9ca3af;
|
|
4369
3625
|
background-color: #374151;
|
|
4370
3626
|
}
|
|
4371
|
-
|
|
4372
3627
|
.e-schedule .e-vertical-view .e-time-cells-wrap table td {
|
|
4373
3628
|
border-bottom-color: transparent;
|
|
4374
3629
|
}
|
|
4375
|
-
|
|
4376
3630
|
.e-schedule .e-vertical-view .e-header-cells {
|
|
4377
3631
|
background-color: #1f2937;
|
|
4378
3632
|
}
|
|
4379
|
-
|
|
4380
3633
|
.e-schedule .e-vertical-view .e-header-cells.e-current-day {
|
|
4381
3634
|
color: #22d3ee;
|
|
4382
3635
|
font-weight: 500;
|
|
4383
3636
|
}
|
|
4384
|
-
|
|
4385
3637
|
.e-schedule .e-vertical-view .e-work-cells {
|
|
4386
3638
|
background-color: #232e3e;
|
|
4387
3639
|
border-color: #4b5563;
|
|
@@ -4389,68 +3641,53 @@
|
|
|
4389
3641
|
border-width: 0 0 1px 1px;
|
|
4390
3642
|
padding: 0;
|
|
4391
3643
|
}
|
|
4392
|
-
|
|
4393
3644
|
.e-schedule .e-vertical-view .e-work-cells:hover {
|
|
4394
3645
|
background: #4b5563;
|
|
4395
3646
|
color: #fff;
|
|
4396
3647
|
}
|
|
4397
|
-
|
|
4398
3648
|
.e-schedule .e-vertical-view .e-alternate-cells {
|
|
4399
3649
|
border-bottom-style: dotted;
|
|
4400
3650
|
}
|
|
4401
|
-
|
|
4402
3651
|
.e-schedule .e-vertical-view .e-work-hours {
|
|
4403
3652
|
background-color: #1f2937;
|
|
4404
3653
|
}
|
|
4405
|
-
|
|
4406
3654
|
.e-schedule .e-vertical-view .e-all-day-cells {
|
|
4407
3655
|
background-color: #1f2937;
|
|
4408
3656
|
}
|
|
4409
|
-
|
|
4410
3657
|
.e-schedule .e-vertical-view .e-all-day-cells.e-current-day {
|
|
4411
3658
|
color: #22d3ee;
|
|
4412
3659
|
}
|
|
4413
|
-
|
|
4414
3660
|
.e-schedule .e-vertical-view .e-all-day-cells.e-selected-cell {
|
|
4415
3661
|
background-color: #6b7280;
|
|
4416
3662
|
color: #fff;
|
|
4417
3663
|
}
|
|
4418
|
-
|
|
4419
3664
|
.e-schedule .e-vertical-view .e-all-day-cells.e-selected-cell:hover {
|
|
4420
3665
|
background-color: #6b7280;
|
|
4421
3666
|
}
|
|
4422
|
-
|
|
4423
3667
|
.e-schedule .e-vertical-view .e-selected-cell {
|
|
4424
3668
|
background-color: #6b7280;
|
|
4425
3669
|
color: #fff;
|
|
4426
3670
|
}
|
|
4427
|
-
|
|
4428
3671
|
.e-schedule .e-vertical-view .e-selected-cell:hover {
|
|
4429
3672
|
background-color: #6b7280;
|
|
4430
3673
|
}
|
|
4431
|
-
|
|
4432
3674
|
.e-schedule .e-vertical-view .e-clone-time-indicator,
|
|
4433
3675
|
.e-schedule .e-vertical-view .e-current-time {
|
|
4434
3676
|
color: #22d3ee;
|
|
4435
3677
|
}
|
|
4436
|
-
|
|
4437
3678
|
.e-schedule .e-vertical-view .e-current-timeline {
|
|
4438
3679
|
border-top: 1px solid #22d3ee;
|
|
4439
3680
|
}
|
|
4440
|
-
|
|
4441
3681
|
.e-schedule .e-vertical-view .e-previous-timeline {
|
|
4442
3682
|
border-top: 1px dotted #22d3ee;
|
|
4443
3683
|
}
|
|
4444
|
-
|
|
4445
3684
|
.e-schedule .e-vertical-view.e-by-date .e-date-header-wrap table tbody td.e-header-cells {
|
|
4446
3685
|
border-bottom-width: 1px;
|
|
4447
3686
|
}
|
|
4448
|
-
|
|
4449
3687
|
.e-schedule .e-month-view .e-date-header-wrap table td:first-child,
|
|
4450
3688
|
.e-schedule .e-month-view .e-content-wrap table td:first-child {
|
|
4451
3689
|
border-left-width: 0;
|
|
4452
3690
|
}
|
|
4453
|
-
|
|
4454
3691
|
.e-schedule .e-month-view .e-date-header-wrap table td,
|
|
4455
3692
|
.e-schedule .e-month-agenda-view .e-date-header-wrap table td {
|
|
4456
3693
|
background-color: #1f2937;
|
|
@@ -4463,13 +3700,11 @@
|
|
|
4463
3700
|
text-align: center;
|
|
4464
3701
|
text-transform: uppercase;
|
|
4465
3702
|
}
|
|
4466
|
-
|
|
4467
3703
|
.e-schedule .e-month-view .e-date-header-wrap table td.e-current-day,
|
|
4468
3704
|
.e-schedule .e-month-agenda-view .e-date-header-wrap table td.e-current-day {
|
|
4469
3705
|
color: #22d3ee;
|
|
4470
3706
|
font-weight: 500;
|
|
4471
3707
|
}
|
|
4472
|
-
|
|
4473
3708
|
.e-schedule .e-month-view .e-work-cells,
|
|
4474
3709
|
.e-schedule .e-month-agenda-view .e-work-cells {
|
|
4475
3710
|
background-color: #232e3e;
|
|
@@ -4479,23 +3714,19 @@
|
|
|
4479
3714
|
color: #fff;
|
|
4480
3715
|
padding: 0;
|
|
4481
3716
|
}
|
|
4482
|
-
|
|
4483
3717
|
.e-schedule .e-month-view .e-work-cells:hover,
|
|
4484
3718
|
.e-schedule .e-month-agenda-view .e-work-cells:hover {
|
|
4485
3719
|
background: #4b5563;
|
|
4486
3720
|
color: #fff;
|
|
4487
3721
|
}
|
|
4488
|
-
|
|
4489
3722
|
.e-schedule .e-month-view .e-work-days,
|
|
4490
3723
|
.e-schedule .e-month-agenda-view .e-work-days {
|
|
4491
3724
|
background-color: #1f2937;
|
|
4492
3725
|
}
|
|
4493
|
-
|
|
4494
3726
|
.e-schedule .e-month-view .e-other-month,
|
|
4495
3727
|
.e-schedule .e-month-agenda-view .e-other-month {
|
|
4496
3728
|
color: #9ca3af;
|
|
4497
3729
|
}
|
|
4498
|
-
|
|
4499
3730
|
.e-schedule .e-month-view .e-current-date .e-date-header,
|
|
4500
3731
|
.e-schedule .e-month-agenda-view .e-current-date .e-date-header {
|
|
4501
3732
|
background-color: #22d3ee;
|
|
@@ -4503,48 +3734,39 @@
|
|
|
4503
3734
|
color: #000;
|
|
4504
3735
|
width: 20px;
|
|
4505
3736
|
}
|
|
4506
|
-
|
|
4507
3737
|
.e-schedule .e-month-view .e-selected-cell,
|
|
4508
3738
|
.e-schedule .e-month-agenda-view .e-selected-cell {
|
|
4509
3739
|
background-color: #6b7280;
|
|
4510
3740
|
color: #fff;
|
|
4511
3741
|
}
|
|
4512
|
-
|
|
4513
3742
|
.e-schedule .e-month-view .e-selected-cell .e-more-indicator,
|
|
4514
3743
|
.e-schedule .e-month-agenda-view .e-selected-cell .e-more-indicator {
|
|
4515
3744
|
color: #fff;
|
|
4516
3745
|
}
|
|
4517
|
-
|
|
4518
3746
|
.e-schedule .e-month-view .e-selected-cell:hover,
|
|
4519
3747
|
.e-schedule .e-month-agenda-view .e-selected-cell:hover {
|
|
4520
3748
|
background-color: #6b7280;
|
|
4521
3749
|
}
|
|
4522
|
-
|
|
4523
3750
|
.e-schedule .e-month-agenda-view .e-date-header-wrap table td {
|
|
4524
3751
|
border-width: 0 0 1px 0;
|
|
4525
3752
|
text-align: center;
|
|
4526
3753
|
}
|
|
4527
|
-
|
|
4528
3754
|
.e-schedule .e-month-agenda-view .e-work-cells {
|
|
4529
3755
|
border-width: 0;
|
|
4530
3756
|
}
|
|
4531
|
-
|
|
4532
3757
|
.e-schedule .e-month-agenda-view .e-current-date .e-date-header {
|
|
4533
3758
|
width: 24px;
|
|
4534
3759
|
}
|
|
4535
|
-
|
|
4536
3760
|
.e-schedule .e-timeline-view .e-date-header-wrap table td:first-child,
|
|
4537
3761
|
.e-schedule .e-timeline-view .e-content-wrap table td:first-child,
|
|
4538
3762
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table td:first-child,
|
|
4539
3763
|
.e-schedule .e-timeline-month-view .e-content-wrap table td:first-child {
|
|
4540
3764
|
border-left-width: 0;
|
|
4541
3765
|
}
|
|
4542
|
-
|
|
4543
3766
|
.e-schedule .e-timeline-view .e-content-wrap table tr:last-child td,
|
|
4544
3767
|
.e-schedule .e-timeline-month-view .e-content-wrap table tr:last-child td {
|
|
4545
3768
|
border-bottom-width: 0;
|
|
4546
3769
|
}
|
|
4547
|
-
|
|
4548
3770
|
.e-schedule .e-timeline-view .e-date-header-wrap table td,
|
|
4549
3771
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table td {
|
|
4550
3772
|
background-color: #1f2937;
|
|
@@ -4553,13 +3775,11 @@
|
|
|
4553
3775
|
border-width: 0 0 1px 1px;
|
|
4554
3776
|
color: #d1d5db;
|
|
4555
3777
|
}
|
|
4556
|
-
|
|
4557
3778
|
.e-schedule .e-timeline-view .e-date-header-wrap table td.e-current-day,
|
|
4558
3779
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table td.e-current-day {
|
|
4559
3780
|
color: #22d3ee;
|
|
4560
3781
|
font-weight: 500;
|
|
4561
3782
|
}
|
|
4562
|
-
|
|
4563
3783
|
.e-schedule .e-timeline-view .e-work-cells,
|
|
4564
3784
|
.e-schedule .e-timeline-month-view .e-work-cells {
|
|
4565
3785
|
background-color: #232e3e;
|
|
@@ -4569,137 +3789,110 @@
|
|
|
4569
3789
|
color: #fff;
|
|
4570
3790
|
padding: 0;
|
|
4571
3791
|
}
|
|
4572
|
-
|
|
4573
3792
|
.e-schedule .e-timeline-view .e-work-cells:hover:not(.e-resource-group-cells),
|
|
4574
3793
|
.e-schedule .e-timeline-month-view .e-work-cells:hover:not(.e-resource-group-cells) {
|
|
4575
3794
|
background: #4b5563;
|
|
4576
3795
|
color: #fff;
|
|
4577
3796
|
}
|
|
4578
|
-
|
|
4579
3797
|
.e-schedule .e-timeline-view.e-virtual-mask .e-work-cells:hover,
|
|
4580
3798
|
.e-schedule .e-timeline-month-view.e-virtual-mask .e-work-cells:hover {
|
|
4581
3799
|
background-color: #374151;
|
|
4582
3800
|
}
|
|
4583
|
-
|
|
4584
3801
|
.e-schedule .e-timeline-view .e-work-days,
|
|
4585
3802
|
.e-schedule .e-timeline-month-view .e-work-days {
|
|
4586
3803
|
background-color: #1f2937;
|
|
4587
3804
|
}
|
|
4588
|
-
|
|
4589
3805
|
.e-schedule .e-timeline-view .e-resource-group-cells,
|
|
4590
3806
|
.e-schedule .e-timeline-month-view .e-resource-group-cells {
|
|
4591
3807
|
background-color: #232e3e;
|
|
4592
3808
|
}
|
|
4593
|
-
|
|
4594
3809
|
.e-schedule .e-timeline-view .e-selected-cell,
|
|
4595
3810
|
.e-schedule .e-timeline-month-view .e-selected-cell {
|
|
4596
3811
|
background-color: #6b7280;
|
|
4597
3812
|
color: #fff;
|
|
4598
3813
|
}
|
|
4599
|
-
|
|
4600
3814
|
.e-schedule .e-timeline-view .e-selected-cell:hover:not(.e-resource-group-cells),
|
|
4601
3815
|
.e-schedule .e-timeline-month-view .e-selected-cell:hover:not(.e-resource-group-cells) {
|
|
4602
3816
|
background-color: #6b7280;
|
|
4603
3817
|
}
|
|
4604
|
-
|
|
4605
3818
|
.e-schedule .e-timeline-view .e-work-hours {
|
|
4606
3819
|
background-color: #1f2937;
|
|
4607
3820
|
}
|
|
4608
|
-
|
|
4609
3821
|
.e-schedule .e-timeline-view .e-resource-group-cells {
|
|
4610
3822
|
background-color: #232e3e;
|
|
4611
3823
|
}
|
|
4612
|
-
|
|
4613
3824
|
.e-schedule .e-timeline-view .e-selected-cell {
|
|
4614
3825
|
background-color: #6b7280;
|
|
4615
3826
|
color: #fff;
|
|
4616
3827
|
}
|
|
4617
|
-
|
|
4618
3828
|
.e-schedule .e-timeline-view .e-selected-cell:hover {
|
|
4619
3829
|
background-color: #6b7280;
|
|
4620
3830
|
}
|
|
4621
|
-
|
|
4622
3831
|
.e-schedule .e-timeline-view .e-alternate-cells {
|
|
4623
3832
|
border-left-style: dotted;
|
|
4624
3833
|
}
|
|
4625
|
-
|
|
4626
3834
|
.e-schedule .e-timeline-view .e-header-row .e-time-cells {
|
|
4627
3835
|
border-left-width: 0;
|
|
4628
3836
|
}
|
|
4629
|
-
|
|
4630
3837
|
.e-schedule .e-timeline-view .e-clone-time-indicator,
|
|
4631
3838
|
.e-schedule .e-timeline-view .e-current-time {
|
|
4632
3839
|
color: #22d3ee;
|
|
4633
3840
|
font-size: 10px;
|
|
4634
3841
|
}
|
|
4635
|
-
|
|
4636
3842
|
.e-schedule .e-timeline-view .e-current-timeline {
|
|
4637
3843
|
border-left: 1px solid #22d3ee;
|
|
4638
3844
|
}
|
|
4639
|
-
|
|
4640
3845
|
.e-schedule.e-rtl .e-vertical-view .e-date-header-wrap table tbody td:first-child,
|
|
4641
3846
|
.e-schedule.e-rtl .e-vertical-view .e-content-wrap table td:first-child {
|
|
4642
3847
|
border-right-width: 0;
|
|
4643
3848
|
}
|
|
4644
|
-
|
|
4645
3849
|
.e-schedule.e-rtl .e-vertical-view .e-date-header-wrap table tbody td,
|
|
4646
3850
|
.e-schedule.e-rtl .e-vertical-view .e-work-cells {
|
|
4647
3851
|
border-width: 0 1px 1px 0;
|
|
4648
3852
|
}
|
|
4649
|
-
|
|
4650
3853
|
.e-schedule.e-rtl .e-vertical-view .e-left-indent-wrap .e-header-cells,
|
|
4651
3854
|
.e-schedule.e-rtl .e-vertical-view .e-date-header-wrap .e-header-cells {
|
|
4652
3855
|
border-bottom-width: 0;
|
|
4653
3856
|
}
|
|
4654
|
-
|
|
4655
3857
|
.e-schedule.e-rtl .e-vertical-view .e-left-indent-wrap table tbody td,
|
|
4656
3858
|
.e-schedule.e-rtl .e-vertical-view .e-time-cells-wrap table tbody td {
|
|
4657
3859
|
border-width: 0 0 1px 1px;
|
|
4658
3860
|
}
|
|
4659
|
-
|
|
4660
3861
|
.e-schedule.e-rtl .e-month-view .e-date-header-wrap table td:first-child,
|
|
4661
3862
|
.e-schedule.e-rtl .e-month-view .e-content-wrap table td:first-child {
|
|
4662
3863
|
border-right-width: 0;
|
|
4663
3864
|
}
|
|
4664
|
-
|
|
4665
3865
|
.e-schedule.e-rtl .e-month-view .e-date-header-wrap table td {
|
|
4666
3866
|
border-width: 0 1px 1px 0;
|
|
4667
3867
|
}
|
|
4668
|
-
|
|
4669
3868
|
.e-schedule.e-rtl .e-month-view .e-work-cells,
|
|
4670
3869
|
.e-schedule.e-rtl .e-month-agenda-view .e-work-cells {
|
|
4671
3870
|
border-width: 0 1px 1px 0;
|
|
4672
3871
|
}
|
|
4673
|
-
|
|
4674
3872
|
.e-schedule.e-rtl .e-month-agenda-view .e-work-cells {
|
|
4675
3873
|
border-width: 0;
|
|
4676
3874
|
}
|
|
4677
|
-
|
|
4678
3875
|
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table td:first-child,
|
|
4679
3876
|
.e-schedule.e-rtl .e-timeline-view .e-content-wrap table td:first-child,
|
|
4680
3877
|
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table td:first-child,
|
|
4681
3878
|
.e-schedule.e-rtl .e-timeline-month-view .e-content-wrap table td:first-child {
|
|
4682
3879
|
border-right-width: 0;
|
|
4683
3880
|
}
|
|
4684
|
-
|
|
4685
3881
|
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table td:last-child,
|
|
4686
3882
|
.e-schedule.e-rtl .e-timeline-view .e-content-wrap table td:last-child,
|
|
4687
3883
|
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table td:last-child,
|
|
4688
3884
|
.e-schedule.e-rtl .e-timeline-month-view .e-content-wrap table td:last-child {
|
|
4689
3885
|
border-left-width: 0;
|
|
4690
3886
|
}
|
|
4691
|
-
|
|
4692
3887
|
.e-schedule.e-rtl .e-timeline-view .e-date-header-wrap table td,
|
|
4693
3888
|
.e-schedule.e-rtl .e-timeline-view .e-content-wrap table td,
|
|
4694
3889
|
.e-schedule.e-rtl .e-timeline-month-view .e-date-header-wrap table td,
|
|
4695
3890
|
.e-schedule.e-rtl .e-timeline-month-view .e-content-wrap table td {
|
|
4696
3891
|
border-width: 0 1px 1px 0;
|
|
4697
3892
|
}
|
|
4698
|
-
|
|
4699
3893
|
.e-schedule.e-rtl .e-timeline-view .e-alternate-cells {
|
|
4700
3894
|
border-right-style: dotted;
|
|
4701
3895
|
}
|
|
4702
|
-
|
|
4703
3896
|
.e-schedule.e-rtl .e-timeline-view .e-header-row .e-time-cells {
|
|
4704
3897
|
border-right-width: 0;
|
|
4705
3898
|
}
|
|
@@ -4709,28 +3902,23 @@
|
|
|
4709
3902
|
border-color: #fee2e2;
|
|
4710
3903
|
z-index: 1000;
|
|
4711
3904
|
}
|
|
4712
|
-
|
|
4713
3905
|
.e-tooltip-wrap.e-schedule-error .e-arrow-tip.e-tip-top {
|
|
4714
3906
|
left: 44%;
|
|
4715
3907
|
}
|
|
4716
|
-
|
|
4717
3908
|
.e-tooltip-wrap.e-schedule-error .e-arrow-tip-inner.e-tip-top,
|
|
4718
3909
|
.e-tooltip-wrap.e-schedule-error .e-arrow-tip-outer.e-tip-top {
|
|
4719
3910
|
border-bottom: 8px solid #fee2e2;
|
|
4720
3911
|
color: #fee2e2;
|
|
4721
3912
|
}
|
|
4722
|
-
|
|
4723
3913
|
.e-tooltip-wrap.e-schedule-error .e-arrow-tip-outer.e-tip-bottom,
|
|
4724
3914
|
.e-tooltip-wrap.e-schedule-error .e-arrow-tip-inner.e-tip-bottom {
|
|
4725
3915
|
border-top: 8px solid #fee2e2;
|
|
4726
3916
|
color: #fee2e2;
|
|
4727
3917
|
}
|
|
4728
|
-
|
|
4729
3918
|
.e-tooltip-wrap.e-schedule-error .e-tip-content {
|
|
4730
3919
|
padding: 3px 6px;
|
|
4731
3920
|
}
|
|
4732
|
-
|
|
4733
3921
|
.e-tooltip-wrap.e-schedule-error .e-tip-content,
|
|
4734
3922
|
.e-tooltip-wrap.e-schedule-error .e-tip-content label {
|
|
4735
3923
|
color: #f87171;
|
|
4736
|
-
}
|
|
3924
|
+
}
|