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