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