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