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