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