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