@syncfusion/ej2-schedule 26.1.39 → 26.1.41-16103

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