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