@syncfusion/ej2-schedule 20.1.52 → 20.1.57

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