@syncfusion/ej2-schedule 26.2.14 → 27.1.50

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