@syncfusion/ej2-schedule 30.2.4-744881 → 30.2.7

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