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