@syncfusion/ej2-schedule 30.2.4-744881 → 30.2.7

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