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