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

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