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