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