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