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