@syncfusion/ej2-schedule 26.2.12 → 27.1.48

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