@syncfusion/ej2-angular-schedule 20.2.38-ngcc → 20.2.38

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