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