@syncfusion/ej2-schedule 26.1.39 → 26.1.41-16103

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