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