@syncfusion/ej2-schedule 30.2.4-744881 → 30.2.7

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 (310) hide show
  1. package/.eslintrc.json +262 -243
  2. package/.gitleaksignore +4 -4
  3. package/README.md +83 -83
  4. package/aceconfig.js +17 -0
  5. package/dist/ej2-schedule.min.js +10 -0
  6. package/dist/ej2-schedule.umd.min.js +10 -1
  7. package/dist/ej2-schedule.umd.min.js.map +1 -1
  8. package/dist/es6/ej2-schedule.es2015.js +79 -75
  9. package/dist/es6/ej2-schedule.es2015.js.map +1 -1
  10. package/dist/es6/ej2-schedule.es5.js +544 -540
  11. package/dist/es6/ej2-schedule.es5.js.map +1 -1
  12. package/dist/global/ej2-schedule.min.js +11 -0
  13. package/dist/global/ej2-schedule.min.js.map +1 -0
  14. package/dist/global/index.d.ts +14 -0
  15. package/helpers/e2e/index.js +3 -3
  16. package/helpers/e2e/recurrence-editor.js +13 -13
  17. package/helpers/e2e/schedule.js +13 -13
  18. package/license +9 -9
  19. package/package.json +42 -42
  20. package/src/recurrence-editor/recurrence-editor-model.d.ts +75 -75
  21. package/src/recurrence-editor/recurrence-editor.js +19 -19
  22. package/src/schedule/actions/drag.js +13 -13
  23. package/src/schedule/actions/keyboard.js +11 -11
  24. package/src/schedule/actions/resize.js +14 -13
  25. package/src/schedule/actions/virtual-scroll.js +3 -0
  26. package/src/schedule/base/interface.d.ts +2 -2
  27. package/src/schedule/base/schedule-model.d.ts +864 -864
  28. package/src/schedule/base/schedule.js +19 -19
  29. package/src/schedule/event-renderer/agenda-base.js +13 -13
  30. package/src/schedule/event-renderer/month.js +13 -13
  31. package/src/schedule/event-renderer/timeline-view.js +13 -13
  32. package/src/schedule/event-renderer/vertical-view.js +13 -13
  33. package/src/schedule/event-renderer/year.js +13 -13
  34. package/src/schedule/models/event-settings-model.d.ts +156 -156
  35. package/src/schedule/models/event-settings.js +19 -19
  36. package/src/schedule/models/field-options-model.d.ts +22 -22
  37. package/src/schedule/models/field-options.js +19 -19
  38. package/src/schedule/models/fields-model.d.ts +92 -92
  39. package/src/schedule/models/fields.js +19 -19
  40. package/src/schedule/models/group-model.d.ts +48 -48
  41. package/src/schedule/models/group.js +19 -19
  42. package/src/schedule/models/header-rows-model.d.ts +22 -22
  43. package/src/schedule/models/header-rows.js +19 -19
  44. package/src/schedule/models/quick-info-templates-model.d.ts +37 -37
  45. package/src/schedule/models/quick-info-templates.js +19 -19
  46. package/src/schedule/models/resources-model.d.ts +85 -85
  47. package/src/schedule/models/resources.js +19 -19
  48. package/src/schedule/models/time-scale-model.d.ts +40 -40
  49. package/src/schedule/models/time-scale.js +19 -19
  50. package/src/schedule/models/toolbar-model.d.ts +187 -187
  51. package/src/schedule/models/toolbar.js +19 -19
  52. package/src/schedule/models/views-model.d.ts +361 -361
  53. package/src/schedule/models/views.js +19 -19
  54. package/src/schedule/models/work-hours-model.d.ts +16 -16
  55. package/src/schedule/models/work-hours.js +19 -19
  56. package/src/schedule/renderer/agenda.js +13 -13
  57. package/src/schedule/renderer/day.js +13 -13
  58. package/src/schedule/renderer/header-renderer.js +11 -11
  59. package/src/schedule/renderer/month-agenda.js +13 -13
  60. package/src/schedule/renderer/month.js +13 -13
  61. package/src/schedule/renderer/timeline-month.js +13 -13
  62. package/src/schedule/renderer/timeline-view.js +13 -13
  63. package/src/schedule/renderer/timeline-year.js +13 -13
  64. package/src/schedule/renderer/vertical-view.js +13 -13
  65. package/src/schedule/renderer/week.js +13 -13
  66. package/src/schedule/renderer/work-week.js +13 -13
  67. package/src/schedule/renderer/year.js +13 -13
  68. package/styles/bds-lite.css +4446 -0
  69. package/styles/bds-lite.scss +18 -0
  70. package/styles/bds.css +5198 -0
  71. package/styles/bds.scss +20 -0
  72. package/styles/bootstrap-dark-lite.css +4228 -0
  73. package/styles/bootstrap-dark-lite.scss +18 -0
  74. package/styles/bootstrap-dark.css +4980 -0
  75. package/styles/bootstrap-dark.scss +20 -0
  76. package/styles/bootstrap-lite.css +4223 -0
  77. package/styles/bootstrap-lite.scss +18 -0
  78. package/styles/bootstrap.css +4975 -0
  79. package/styles/bootstrap.scss +20 -0
  80. package/styles/bootstrap4-lite.css +4270 -0
  81. package/styles/bootstrap4-lite.scss +18 -0
  82. package/styles/bootstrap4.css +5022 -0
  83. package/styles/bootstrap4.scss +20 -0
  84. package/styles/bootstrap5-dark-lite.css +4273 -0
  85. package/styles/bootstrap5-dark-lite.scss +18 -0
  86. package/styles/bootstrap5-dark.css +5025 -0
  87. package/styles/bootstrap5-dark.scss +20 -0
  88. package/styles/bootstrap5-lite.css +4273 -0
  89. package/styles/bootstrap5-lite.scss +18 -0
  90. package/styles/bootstrap5.3-lite.css +4319 -0
  91. package/styles/bootstrap5.3-lite.scss +18 -0
  92. package/styles/bootstrap5.3.css +5071 -0
  93. package/styles/bootstrap5.3.scss +20 -0
  94. package/styles/bootstrap5.css +5025 -0
  95. package/styles/bootstrap5.scss +20 -0
  96. package/styles/fabric-dark-lite.css +4198 -0
  97. package/styles/fabric-dark-lite.scss +18 -0
  98. package/styles/fabric-dark.css +4950 -0
  99. package/styles/fabric-dark.scss +20 -0
  100. package/styles/fabric-lite.css +4195 -0
  101. package/styles/fabric-lite.scss +18 -0
  102. package/styles/fabric.css +4947 -0
  103. package/styles/fabric.scss +20 -0
  104. package/styles/fluent-dark-lite.css +4261 -0
  105. package/styles/fluent-dark-lite.scss +18 -0
  106. package/styles/fluent-dark.css +5013 -0
  107. package/styles/fluent-dark.scss +20 -0
  108. package/styles/fluent-lite.css +4261 -0
  109. package/styles/fluent-lite.scss +18 -0
  110. package/styles/fluent.css +5013 -0
  111. package/styles/fluent.scss +20 -0
  112. package/styles/fluent2-lite.css +4505 -0
  113. package/styles/fluent2-lite.scss +18 -0
  114. package/styles/fluent2.css +5261 -0
  115. package/styles/fluent2.scss +20 -0
  116. package/styles/highcontrast-light-lite.css +4287 -0
  117. package/styles/highcontrast-light-lite.scss +18 -0
  118. package/styles/highcontrast-light.css +5039 -0
  119. package/styles/highcontrast-light.scss +20 -0
  120. package/styles/highcontrast-lite.css +4296 -0
  121. package/styles/highcontrast-lite.scss +18 -0
  122. package/styles/highcontrast.css +5048 -0
  123. package/styles/highcontrast.scss +20 -0
  124. package/styles/material-dark-lite.css +4275 -0
  125. package/styles/material-dark-lite.scss +18 -0
  126. package/styles/material-dark.css +5027 -0
  127. package/styles/material-dark.scss +20 -0
  128. package/styles/material-lite.css +4310 -0
  129. package/styles/material-lite.scss +18 -0
  130. package/styles/material.css +5062 -0
  131. package/styles/material.scss +20 -0
  132. package/styles/material3-dark-lite.css +4292 -0
  133. package/styles/material3-dark-lite.scss +18 -0
  134. package/styles/material3-dark.css +5045 -0
  135. package/styles/material3-dark.scss +21 -1
  136. package/styles/material3-lite.css +4294 -0
  137. package/styles/material3-lite.scss +18 -0
  138. package/styles/material3.css +5045 -0
  139. package/styles/material3.scss +21 -1
  140. package/styles/recurrence-editor/_all.scss +2 -0
  141. package/styles/recurrence-editor/_bds-definition.scss +14 -0
  142. package/styles/recurrence-editor/_bigger.scss +133 -0
  143. package/styles/recurrence-editor/_bootstrap-dark-definition.scss +14 -0
  144. package/styles/recurrence-editor/_bootstrap-definition.scss +14 -0
  145. package/styles/recurrence-editor/_bootstrap4-definition.scss +14 -0
  146. package/styles/recurrence-editor/_bootstrap5-dark-definition.scss +1 -0
  147. package/styles/recurrence-editor/_bootstrap5-definition.scss +14 -0
  148. package/styles/recurrence-editor/_bootstrap5.3-definition.scss +14 -0
  149. package/styles/recurrence-editor/_fabric-dark-definition.scss +14 -0
  150. package/styles/recurrence-editor/_fabric-definition.scss +14 -0
  151. package/styles/recurrence-editor/_fluent-dark-definition.scss +1 -0
  152. package/styles/recurrence-editor/_fluent-definition.scss +14 -0
  153. package/styles/recurrence-editor/_fluent2-definition.scss +14 -0
  154. package/styles/recurrence-editor/_fusionnew-definition.scss +14 -0
  155. package/styles/recurrence-editor/_highcontrast-definition.scss +14 -0
  156. package/styles/recurrence-editor/_highcontrast-light-definition.scss +14 -0
  157. package/styles/recurrence-editor/_layout.scss +420 -0
  158. package/styles/recurrence-editor/_material-dark-definition.scss +14 -0
  159. package/styles/recurrence-editor/_material-definition.scss +14 -0
  160. package/styles/recurrence-editor/_material3-dark-definition.scss +1 -0
  161. package/styles/recurrence-editor/_material3-definition.scss +14 -0
  162. package/styles/recurrence-editor/_tailwind-dark-definition.scss +1 -0
  163. package/styles/recurrence-editor/_tailwind-definition.scss +14 -0
  164. package/styles/recurrence-editor/_tailwind3-definition.scss +14 -0
  165. package/styles/recurrence-editor/_theme.scss +1 -0
  166. package/styles/recurrence-editor/bds.css +537 -0
  167. package/styles/recurrence-editor/bds.scss +9 -0
  168. package/styles/recurrence-editor/bootstrap-dark.css +462 -0
  169. package/styles/recurrence-editor/bootstrap-dark.scss +9 -0
  170. package/styles/recurrence-editor/bootstrap.css +462 -0
  171. package/styles/recurrence-editor/bootstrap.scss +9 -0
  172. package/styles/recurrence-editor/bootstrap4.css +490 -0
  173. package/styles/recurrence-editor/bootstrap4.scss +9 -0
  174. package/styles/recurrence-editor/bootstrap5-dark.css +500 -0
  175. package/styles/recurrence-editor/bootstrap5-dark.scss +9 -0
  176. package/styles/recurrence-editor/bootstrap5.3.css +504 -0
  177. package/styles/recurrence-editor/bootstrap5.3.scss +9 -0
  178. package/styles/recurrence-editor/bootstrap5.css +500 -0
  179. package/styles/recurrence-editor/bootstrap5.scss +9 -0
  180. package/styles/recurrence-editor/fabric-dark.css +438 -0
  181. package/styles/recurrence-editor/fabric-dark.scss +9 -0
  182. package/styles/recurrence-editor/fabric.css +438 -0
  183. package/styles/recurrence-editor/fabric.scss +9 -0
  184. package/styles/recurrence-editor/fluent-dark.css +493 -0
  185. package/styles/recurrence-editor/fluent-dark.scss +9 -0
  186. package/styles/recurrence-editor/fluent.css +493 -0
  187. package/styles/recurrence-editor/fluent.scss +9 -0
  188. package/styles/recurrence-editor/fluent2.css +483 -0
  189. package/styles/recurrence-editor/fluent2.scss +9 -0
  190. package/styles/recurrence-editor/highcontrast-light.css +447 -0
  191. package/styles/recurrence-editor/highcontrast-light.scss +9 -0
  192. package/styles/recurrence-editor/highcontrast.css +447 -0
  193. package/styles/recurrence-editor/highcontrast.scss +9 -0
  194. package/styles/recurrence-editor/material-dark.css +487 -0
  195. package/styles/recurrence-editor/material-dark.scss +9 -0
  196. package/styles/recurrence-editor/material.css +491 -0
  197. package/styles/recurrence-editor/material.scss +9 -0
  198. package/styles/recurrence-editor/material3-dark.css +499 -0
  199. package/styles/recurrence-editor/material3-dark.scss +10 -0
  200. package/styles/recurrence-editor/material3.css +501 -0
  201. package/styles/recurrence-editor/material3.scss +10 -0
  202. package/styles/recurrence-editor/tailwind-dark.css +474 -0
  203. package/styles/recurrence-editor/tailwind-dark.scss +9 -0
  204. package/styles/recurrence-editor/tailwind.css +474 -0
  205. package/styles/recurrence-editor/tailwind.scss +9 -0
  206. package/styles/recurrence-editor/tailwind3.css +504 -0
  207. package/styles/recurrence-editor/tailwind3.scss +9 -0
  208. package/styles/schedule/_all.scss +2 -0
  209. package/styles/schedule/_bds-definition.scss +274 -0
  210. package/styles/schedule/_bigger.scss +801 -0
  211. package/styles/schedule/_bootstrap-dark-definition.scss +274 -0
  212. package/styles/schedule/_bootstrap-definition.scss +274 -0
  213. package/styles/schedule/_bootstrap4-definition.scss +277 -0
  214. package/styles/schedule/_bootstrap5-dark-definition.scss +1 -0
  215. package/styles/schedule/_bootstrap5-definition.scss +278 -0
  216. package/styles/schedule/_bootstrap5.3-definition.scss +278 -0
  217. package/styles/schedule/_fabric-dark-definition.scss +273 -0
  218. package/styles/schedule/_fabric-definition.scss +274 -0
  219. package/styles/schedule/_fluent-dark-definition.scss +1 -0
  220. package/styles/schedule/_fluent-definition.scss +278 -0
  221. package/styles/schedule/_fluent2-definition.scss +275 -0
  222. package/styles/schedule/_fusionnew-definition.scss +275 -0
  223. package/styles/schedule/_highcontrast-definition.scss +275 -0
  224. package/styles/schedule/_highcontrast-light-definition.scss +275 -0
  225. package/styles/schedule/_layout.scss +3870 -0
  226. package/styles/schedule/_material-dark-definition.scss +272 -0
  227. package/styles/schedule/_material-definition.scss +272 -0
  228. package/styles/schedule/_material3-dark-definition.scss +1 -0
  229. package/styles/schedule/_material3-definition.scss +277 -0
  230. package/styles/schedule/_tailwind-dark-definition.scss +1 -0
  231. package/styles/schedule/_tailwind-definition.scss +273 -0
  232. package/styles/schedule/_tailwind3-definition.scss +278 -0
  233. package/styles/schedule/_theme.scss +585 -0
  234. package/styles/schedule/bds.css +4793 -0
  235. package/styles/schedule/bds.scss +17 -0
  236. package/styles/schedule/bootstrap-dark.css +4575 -0
  237. package/styles/schedule/bootstrap-dark.scss +17 -0
  238. package/styles/schedule/bootstrap.css +4570 -0
  239. package/styles/schedule/bootstrap.scss +17 -0
  240. package/styles/schedule/bootstrap4.css +4617 -0
  241. package/styles/schedule/bootstrap4.scss +17 -0
  242. package/styles/schedule/bootstrap5-dark.css +4620 -0
  243. package/styles/schedule/bootstrap5-dark.scss +16 -0
  244. package/styles/schedule/bootstrap5.3.css +4666 -0
  245. package/styles/schedule/bootstrap5.3.scss +17 -0
  246. package/styles/schedule/bootstrap5.css +4620 -0
  247. package/styles/schedule/bootstrap5.scss +17 -0
  248. package/styles/schedule/fabric-dark.css +4545 -0
  249. package/styles/schedule/fabric-dark.scss +17 -0
  250. package/styles/schedule/fabric.css +4542 -0
  251. package/styles/schedule/fabric.scss +17 -0
  252. package/styles/schedule/fluent-dark.css +4608 -0
  253. package/styles/schedule/fluent-dark.scss +16 -0
  254. package/styles/schedule/fluent.css +4608 -0
  255. package/styles/schedule/fluent.scss +17 -0
  256. package/styles/schedule/fluent2.css +4853 -0
  257. package/styles/schedule/fluent2.scss +17 -0
  258. package/styles/schedule/highcontrast-light.css +4634 -0
  259. package/styles/schedule/highcontrast-light.scss +17 -0
  260. package/styles/schedule/highcontrast.css +4643 -0
  261. package/styles/schedule/highcontrast.scss +17 -0
  262. package/styles/schedule/icons/_bds.scss +220 -0
  263. package/styles/schedule/icons/_bootstrap-dark.scss +223 -0
  264. package/styles/schedule/icons/_bootstrap.scss +223 -0
  265. package/styles/schedule/icons/_bootstrap4.scss +217 -0
  266. package/styles/schedule/icons/_bootstrap5-dark.scss +1 -0
  267. package/styles/schedule/icons/_bootstrap5.3.scss +220 -0
  268. package/styles/schedule/icons/_bootstrap5.scss +220 -0
  269. package/styles/schedule/icons/_fabric-dark.scss +223 -0
  270. package/styles/schedule/icons/_fabric.scss +223 -0
  271. package/styles/schedule/icons/_fluent-dark.scss +1 -0
  272. package/styles/schedule/icons/_fluent.scss +220 -0
  273. package/styles/schedule/icons/_fluent2.scss +220 -0
  274. package/styles/schedule/icons/_fusionnew.scss +220 -0
  275. package/styles/schedule/icons/_highcontrast-light.scss +223 -0
  276. package/styles/schedule/icons/_highcontrast.scss +223 -0
  277. package/styles/schedule/icons/_material-dark.scss +223 -0
  278. package/styles/schedule/icons/_material.scss +223 -0
  279. package/styles/schedule/icons/_material3-dark.scss +1 -0
  280. package/styles/schedule/icons/_material3.scss +220 -0
  281. package/styles/schedule/icons/_tailwind-dark.scss +1 -0
  282. package/styles/schedule/icons/_tailwind.scss +220 -0
  283. package/styles/schedule/icons/_tailwind3.scss +220 -0
  284. package/styles/schedule/material-dark.css +4622 -0
  285. package/styles/schedule/material-dark.scss +17 -0
  286. package/styles/schedule/material.css +4657 -0
  287. package/styles/schedule/material.scss +17 -0
  288. package/styles/schedule/material3-dark.css +4640 -0
  289. package/styles/schedule/material3-dark.scss +17 -0
  290. package/styles/schedule/material3.css +4642 -0
  291. package/styles/schedule/material3.scss +18 -0
  292. package/styles/schedule/tailwind-dark.css +4585 -0
  293. package/styles/schedule/tailwind-dark.scss +16 -0
  294. package/styles/schedule/tailwind.css +4585 -0
  295. package/styles/schedule/tailwind.scss +17 -0
  296. package/styles/schedule/tailwind3.css +4632 -0
  297. package/styles/schedule/tailwind3.scss +17 -0
  298. package/styles/tailwind-dark-lite.css +4238 -0
  299. package/styles/tailwind-dark-lite.scss +18 -0
  300. package/styles/tailwind-dark.css +4990 -0
  301. package/styles/tailwind-dark.scss +20 -0
  302. package/styles/tailwind-lite.css +4238 -0
  303. package/styles/tailwind-lite.scss +18 -0
  304. package/styles/tailwind.css +4990 -0
  305. package/styles/tailwind.scss +20 -0
  306. package/styles/tailwind3-lite.css +4285 -0
  307. package/styles/tailwind3-lite.scss +18 -0
  308. package/styles/tailwind3.css +5037 -0
  309. package/styles/tailwind3.scss +20 -0
  310. package/tslint.json +111 -0
@@ -0,0 +1,585 @@
1
+ @mixin schedule-select-cell-focus-styles {
2
+ @if $skin-name == 'fluent2' {
3
+ &:focus {
4
+ background: $content-bg-color-focus;
5
+ }
6
+
7
+ &:focus-visible {
8
+ background: $schedule-select-focus-bg-color;
9
+ box-shadow: $schedule-select-focus-box-shadow;
10
+ }
11
+ }
12
+
13
+ @if $skin-name == 'bootstrap5.3' {
14
+ &:focus {
15
+ background: $schedule-select-focus-bg-color;
16
+ }
17
+
18
+ &:focus-visible {
19
+ background: $schedule-workhour-bg-color;
20
+ box-shadow: $schedule-select-focus-box-shadow;
21
+ }
22
+ }
23
+ }
24
+
25
+ @mixin more-indicator-hover-styles {
26
+ @if $skin-name =='fluent2' {
27
+ .e-more-indicator {
28
+ color: $schedule-hover-font-color;
29
+ }
30
+ }
31
+ }
32
+
33
+ @include export-module('schedule-theme') {
34
+ .e-schedule {
35
+ background: $schedule-header-bg-color;
36
+ border: $border-size $border-type $schedule-content-border-color;
37
+
38
+ .e-date-header-wrap {
39
+ border-color: $schedule-header-border-color;
40
+ border-style: $border-type;
41
+ border-width: 0;
42
+ position: relative;
43
+ }
44
+
45
+ .e-header-calendar {
46
+ @if ($skin-name == 'Material3') {
47
+ background: $schedule-calendar-background;
48
+ }
49
+ @else {
50
+ background-color: $schedule-calendar-background;
51
+ }
52
+ box-shadow: $schedule-calendar-shadow;
53
+ }
54
+
55
+ .e-vertical-view {
56
+ .e-date-header-wrap table tbody td:first-child,
57
+ .e-content-wrap table td:first-child {
58
+ border-left-width: 0;
59
+ }
60
+
61
+ .e-date-header-wrap {
62
+ .e-all-day-cells {
63
+ background: $schedule-header-bg-color;
64
+
65
+ &:hover {
66
+ background: $schedule-hover-bg-color;
67
+ @include more-indicator-hover-styles;
68
+ }
69
+ }
70
+ }
71
+
72
+ .e-left-indent-wrap table tbody td {
73
+ background: $schedule-header-bg-color;
74
+ border-color: $schedule-header-border-color;
75
+ border-style: $border-type;
76
+ border-width: 0 1px 1px 0;
77
+ color: $schedule-header-font-color;
78
+
79
+ &.e-header-cells {
80
+ border-bottom-width: 0;
81
+
82
+ &.e-week-number {
83
+ color: $schedule-secondary-content-font-color;
84
+ font-size: $schedule-date-header-wrap-nrml-font-size;
85
+ padding-top: 10px;
86
+ text-align: center;
87
+ vertical-align: top;
88
+ }
89
+ }
90
+
91
+ &.e-resource-cells {
92
+ border-bottom-color: transparent;
93
+ }
94
+ }
95
+
96
+ .e-date-header-wrap table tbody td {
97
+ background: $schedule-header-bg-color;
98
+ border-color: $schedule-header-border-color;
99
+ border-style: $border-type;
100
+ border-width: $schedule-vertical-work-cells-border;
101
+ color: $schedule-header-font-color;
102
+ text-align: left;
103
+
104
+ &.e-header-cells {
105
+ border-bottom-width: 0;
106
+ }
107
+ }
108
+
109
+ .e-time-cells-wrap table td {
110
+ background: $schedule-time-cells-bg-color;
111
+ border-color: $schedule-content-border-color;
112
+ border-style: $border-type;
113
+ border-width: 0 1px 1px 0;
114
+ color: $schedule-time-cells-font-color;
115
+ }
116
+
117
+ .e-time-cells-wrap table td {
118
+ border-bottom-color: transparent;
119
+ }
120
+
121
+ .e-time-cells-wrap .e-time-cells {
122
+ border-bottom-color: $schedule-time-cells-border-bottom-color;
123
+ }
124
+
125
+ .e-header-cells {
126
+ background: $schedule-header-bg-color;
127
+
128
+ &.e-current-day {
129
+ color: $schedule-active-font-color;
130
+ font-weight: $schedule-current-day-font-weight;
131
+ }
132
+ }
133
+
134
+ .e-work-cells {
135
+ background: $schedule-work-cells-bg-color;
136
+ border-color: $schedule-content-border-color;
137
+ border-style: $border-type;
138
+ border-width: $schedule-vertical-work-cells-border;
139
+ padding: 0;
140
+
141
+ &:hover {
142
+ background: $schedule-hover-bg-color;
143
+ color: $schedule-hover-font-color;
144
+ }
145
+ }
146
+
147
+ .e-alternate-cells {
148
+ border-bottom-style: $schedule-alternate-cell-border;
149
+ }
150
+
151
+ .e-work-hours {
152
+ background: $schedule-workhour-bg-color;
153
+ }
154
+
155
+ .e-all-day-cells {
156
+ background: $schedule-header-bg-color;
157
+
158
+ &.e-current-day {
159
+ color: $schedule-active-font-color;
160
+ }
161
+
162
+ &.e-selected-cell {
163
+ background: $schedule-select-bg-color;
164
+ color: $schedule-hover-font-color;
165
+ @include more-indicator-hover-styles;
166
+
167
+ &:hover {
168
+ background: $schedule-select-bg-color;
169
+ color: $schedule-selected-cell-hover-font-color;
170
+ }
171
+ @include schedule-select-cell-focus-styles;
172
+ }
173
+ }
174
+
175
+ .e-selected-cell {
176
+ background: $schedule-select-bg-color;
177
+ color: $schedule-hover-font-color;
178
+
179
+ &:hover {
180
+ background: $schedule-select-bg-color;
181
+ color: $schedule-selected-cell-hover-font-color;
182
+ }
183
+ @include schedule-select-cell-focus-styles;
184
+ }
185
+
186
+ .e-clone-time-indicator,
187
+ .e-current-time {
188
+ color: $schedule-active-font-color;
189
+ }
190
+
191
+ .e-current-timeline {
192
+ border-top: 1px $border-type $schedule-active-border-color;
193
+ }
194
+
195
+ .e-previous-timeline {
196
+ border-top: 1px $schedule-alternate-cell-border $schedule-active-border-color;
197
+ }
198
+
199
+ &.e-by-date {
200
+ .e-date-header-wrap table tbody td {
201
+ &.e-header-cells {
202
+ border-bottom-width: 1px;
203
+ }
204
+ }
205
+ }
206
+ }
207
+
208
+ .e-month-view {
209
+ .e-date-header-wrap table td:first-child,
210
+ .e-content-wrap table td:first-child {
211
+ border-left-width: 0;
212
+ }
213
+ }
214
+
215
+ .e-month-view,
216
+ .e-month-agenda-view {
217
+ .e-date-header-wrap table td {
218
+ background: $schedule-header-bg-color;
219
+ border-color: $schedule-header-border-color;
220
+ border-style: $border-type;
221
+ border-width: $schedule-month-work-cells-border;
222
+ color: $schedule-header-font-color;
223
+ font-size: $schedule-month-date-header-cell-font-size;
224
+ text-align: $schedule-month-date-header-cell-text-align;
225
+ text-transform: $schedule-month-date-header-cell-text-transform;
226
+
227
+ &.e-current-day {
228
+ color: $schedule-active-font-color;
229
+ font-weight: $schedule-current-day-font-weight;
230
+ }
231
+ }
232
+
233
+ .e-work-cells {
234
+ background: $schedule-work-cells-bg-color;
235
+ border-color: $schedule-content-border-color;
236
+ border-style: $border-type;
237
+ border-width: $schedule-month-work-cells-border;
238
+ color: $schedule-primary-content-font-color;
239
+ padding: 0;
240
+
241
+ &:hover {
242
+ background: $schedule-hover-bg-color;
243
+ color: $schedule-work-cell-hover-color;
244
+ @include more-indicator-hover-styles;
245
+ }
246
+ }
247
+
248
+ .e-work-days {
249
+ background: $schedule-workhour-bg-color;
250
+ }
251
+
252
+ .e-other-month {
253
+ color: $schedule-secondary-content-font-color;
254
+ }
255
+
256
+ .e-current-date .e-date-header {
257
+ background: $schedule-current-date-bg-color;
258
+ border-radius: 50%;
259
+ color: $schedule-current-date-header-font-color;
260
+ min-width: 20px;
261
+ padding: 0 4px;
262
+ width: fit-content;
263
+ }
264
+
265
+ .e-selected-cell {
266
+ background: $schedule-select-bg-color;
267
+ color: $schedule-select-font-color;
268
+
269
+ .e-date-header {
270
+ color: $schedule-selected-date-header-cell-font-color;
271
+ }
272
+
273
+ .e-more-indicator {
274
+ color: $schedule-select-font-color;
275
+ }
276
+
277
+ &:hover {
278
+ background: $schedule-select-bg-color;
279
+ }
280
+ @include schedule-select-cell-focus-styles;
281
+ }
282
+ }
283
+
284
+ .e-month-agenda-view {
285
+ .e-content-wrap .e-table-container {
286
+ overflow: auto;
287
+ }
288
+
289
+ .e-date-header-wrap table td {
290
+ border-width: $schedule-month-agenda-header-cells-border;
291
+ text-align: center;
292
+ }
293
+
294
+ .e-work-cells {
295
+ border-width: $schedule-month-agenda-work-cells-border;
296
+ }
297
+
298
+ .e-current-date .e-date-header {
299
+ min-width: 24px;
300
+ }
301
+ }
302
+
303
+ .e-timeline-view,
304
+ .e-timeline-month-view {
305
+ .e-date-header-wrap table td:first-child,
306
+ .e-content-wrap table td:first-child {
307
+ border-left-width: 0;
308
+ }
309
+
310
+ .e-date-header-wrap table td {
311
+ background: $schedule-header-bg-color;
312
+ border-color: $schedule-header-border-color;
313
+ border-style: $border-type;
314
+ border-width: $schedule-timeline-work-cells-border;
315
+ color: $schedule-header-font-color;
316
+
317
+ &.e-current-day {
318
+ color: $schedule-active-font-color;
319
+ font-weight: $schedule-current-day-font-weight;
320
+ }
321
+ }
322
+
323
+ .e-work-cells {
324
+ background: $schedule-work-cells-bg-color;
325
+ border-color: $schedule-content-border-color;
326
+ border-style: $border-type;
327
+ border-width: $schedule-timeline-work-cells-border;
328
+ color: $schedule-primary-content-font-color;
329
+ padding: 0;
330
+
331
+ &:hover:not(.e-resource-group-cells) {
332
+ background: $schedule-hover-bg-color;
333
+ color: $schedule-hover-font-color;
334
+ }
335
+ }
336
+
337
+ &.e-virtual-mask .e-work-cells:hover {
338
+ background: $schedule-disable-dates-color;
339
+ }
340
+
341
+ .e-work-days {
342
+ background: $schedule-workhour-bg-color;
343
+ }
344
+
345
+ .e-resource-group-cells {
346
+ background: $schedule-work-cells-bg-color;
347
+ }
348
+
349
+ .e-selected-cell {
350
+ background: $schedule-select-bg-color;
351
+ color: $schedule-select-font-color;
352
+
353
+ &:hover:not(.e-resource-group-cells) {
354
+ background: $schedule-select-bg-color;
355
+ }
356
+ }
357
+ }
358
+
359
+ .e-timeline-view {
360
+ .e-work-hours {
361
+ background: $schedule-workhour-bg-color;
362
+ }
363
+
364
+ .e-resource-group-cells {
365
+ background: $schedule-work-cells-bg-color;
366
+ }
367
+
368
+ .e-selected-cell {
369
+ background: $schedule-select-bg-color;
370
+ color: $schedule-hover-font-color;
371
+
372
+ &:hover {
373
+ background: $schedule-select-bg-color;
374
+ }
375
+ @include schedule-select-cell-focus-styles;
376
+ }
377
+
378
+ .e-alternate-cells {
379
+ border-left-style: $schedule-alternate-cell-border;
380
+ }
381
+
382
+ .e-header-row .e-time-cells {
383
+ border-left-width: 0;
384
+ }
385
+
386
+ .e-clone-time-indicator,
387
+ .e-current-time {
388
+ color: $schedule-active-font-color;
389
+ font-size: $schedule-current-time-nrml-font-size;
390
+ }
391
+
392
+ .e-current-timeline {
393
+ border-left: 1px $border-type $schedule-active-border-color;
394
+ }
395
+ }
396
+
397
+ .e-timeline-year-view {
398
+ .e-work-cells {
399
+ background: $schedule-work-cells-bg-color;
400
+ border-color: $schedule-content-border-color;
401
+ border-style: $border-type;
402
+ border-width: 0 $border-size $border-size 0;
403
+ color: $schedule-primary-content-font-color;
404
+ padding: 0;
405
+
406
+ &:hover:not(.e-other-month) {
407
+ background: $schedule-hover-bg-color;
408
+ color: $schedule-hover-font-color;
409
+ }
410
+
411
+ &.e-work-days {
412
+ background: $schedule-workhour-bg-color;
413
+ }
414
+
415
+ &.e-other-month {
416
+ color: $schedule-secondary-content-font-color;
417
+ }
418
+
419
+ &.e-current-day .e-date-header {
420
+ background: $schedule-current-date-bg-color;
421
+ border-radius: 50%;
422
+ color: $schedule-current-day-active-color;
423
+ margin: 2px;
424
+ width: 20px;
425
+ }
426
+
427
+ &.e-selected-cell {
428
+ background: $schedule-select-bg-color;
429
+ color: $schedule-select-font-color;
430
+
431
+ .e-date-header {
432
+ color: $schedule-select-font-color;
433
+ }
434
+
435
+ .e-more-indicator {
436
+ color: $schedule-select-font-color;
437
+ }
438
+
439
+ &:hover {
440
+ background: $schedule-select-bg-color;
441
+ }
442
+ @include schedule-select-cell-focus-styles;
443
+ }
444
+
445
+ &.e-disable-dates {
446
+ background: $schedule-disable-dates-color;
447
+
448
+ .e-date-header {
449
+ cursor: default;
450
+ opacity: .35;
451
+
452
+ &:hover {
453
+ text-decoration: none;
454
+ }
455
+ }
456
+
457
+ &:hover {
458
+ background: $schedule-disable-dates-color;
459
+ }
460
+ }
461
+ }
462
+
463
+ &.e-virtual-mask .e-work-cells {
464
+ background: $schedule-disable-dates-color;
465
+ box-shadow: inset 0 0 0 8px $schedule-work-cells-bg-color;
466
+
467
+ &:hover {
468
+ background: $schedule-disable-dates-color;
469
+ }
470
+ }
471
+ }
472
+
473
+ #{if(&, '&', '*')}.e-rtl {
474
+ .e-vertical-view {
475
+ .e-date-header-wrap table tbody td:first-child,
476
+ .e-content-wrap table td:first-child {
477
+ border-right-width: 0;
478
+ }
479
+
480
+ .e-date-header-wrap table tbody td {
481
+ text-align: right;
482
+ }
483
+
484
+ .e-date-header-wrap table tbody td,
485
+ .e-work-cells {
486
+ border-width: $schedule-rtl-vertical-work-cells-border;
487
+ }
488
+
489
+ .e-left-indent-wrap .e-header-cells,
490
+ .e-date-header-wrap .e-header-cells {
491
+ border-bottom-width: 0;
492
+ }
493
+
494
+ .e-left-indent-wrap table tbody td,
495
+ .e-time-cells-wrap table tbody td {
496
+ border-width: 0 0 1px 1px;
497
+ }
498
+ }
499
+
500
+ .e-month-view {
501
+ .e-date-header-wrap table td:first-child,
502
+ .e-content-wrap table td:first-child {
503
+ border-right-width: 0;
504
+ }
505
+
506
+ .e-date-header-wrap table td {
507
+ text-align: right;
508
+ border-width: $schedule-rtl-month-work-cells-border;
509
+ }
510
+ }
511
+
512
+ .e-month-view,
513
+ .e-month-agenda-view {
514
+ .e-work-cells {
515
+ border-width: $schedule-rtl-month-work-cells-border;
516
+ }
517
+ }
518
+
519
+ .e-month-agenda-view {
520
+ .e-work-cells {
521
+ border-width: $schedule-rtl-month-agenda-work-cells-border;
522
+ }
523
+ }
524
+
525
+ .e-timeline-view,
526
+ .e-timeline-month-view {
527
+ .e-date-header-wrap table td:first-child,
528
+ .e-content-wrap table td:first-child {
529
+ border-right-width: 0;
530
+ }
531
+
532
+ .e-date-header-wrap table td:last-child,
533
+ .e-content-wrap table td:last-child {
534
+ border-left-width: 0;
535
+ }
536
+
537
+ .e-date-header-wrap table td,
538
+ .e-content-wrap table td {
539
+ border-width: $schedule-rtl-timeline-work-cells-border;
540
+ }
541
+ }
542
+
543
+ .e-timeline-view {
544
+ .e-alternate-cells {
545
+ border-right-style: $schedule-alternate-cell-border;
546
+ }
547
+
548
+ .e-header-row .e-time-cells {
549
+ border-right-width: 0;
550
+ }
551
+ }
552
+ }
553
+ }
554
+
555
+ .e-tooltip-wrap.e-schedule-error {
556
+ background: $schedule-val-error-bg-color;
557
+ border-color: $schedule-val-error-bg-color;
558
+ z-index: 1000;
559
+
560
+ .e-arrow-tip.e-tip-top {
561
+ left: 44%;
562
+ }
563
+
564
+ .e-arrow-tip-inner.e-tip-top,
565
+ .e-arrow-tip-outer.e-tip-top {
566
+ border-bottom: 8px solid $schedule-val-error-bg-color;
567
+ color: $schedule-val-error-bg-color;
568
+ }
569
+
570
+ .e-arrow-tip-outer.e-tip-bottom,
571
+ .e-arrow-tip-inner.e-tip-bottom {
572
+ border-top: 8px solid $schedule-val-error-bg-color;
573
+ color: $schedule-val-error-bg-color;
574
+ }
575
+
576
+ .e-tip-content {
577
+ padding: $schedule-tip-content-padding;
578
+ }
579
+
580
+ .e-tip-content,
581
+ .e-tip-content label {
582
+ color: $schedule-val-error-color;
583
+ }
584
+ }
585
+ }