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