@syncfusion/ej2-angular-schedule 24.1.41-ngcc → 24.1.41

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