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