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