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