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