@syncfusion/ej2-schedule 19.2.60 → 19.3.48

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