@syncfusion/ej2-schedule 26.2.14 → 27.1.50

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