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