@syncfusion/ej2-schedule 30.2.4-744881 → 30.2.7

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