@syncfusion/ej2-schedule 26.1.40 → 26.1.41-16103

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