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