@syncfusion/ej2-schedule 26.2.14 → 27.1.50

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 (200) hide show
  1. package/dist/ej2-schedule.umd.min.js +2 -2
  2. package/dist/ej2-schedule.umd.min.js.map +1 -1
  3. package/dist/es6/ej2-schedule.es2015.js +166 -32
  4. package/dist/es6/ej2-schedule.es2015.js.map +1 -1
  5. package/dist/es6/ej2-schedule.es5.js +169 -32
  6. package/dist/es6/ej2-schedule.es5.js.map +1 -1
  7. package/dist/global/ej2-schedule.min.js +2 -2
  8. package/dist/global/ej2-schedule.min.js.map +1 -1
  9. package/dist/global/index.d.ts +1 -1
  10. package/package.json +16 -17
  11. package/src/schedule/actions/crud.js +2 -2
  12. package/src/schedule/actions/keyboard.d.ts +1 -0
  13. package/src/schedule/actions/keyboard.js +45 -3
  14. package/src/schedule/actions/resize.js +1 -0
  15. package/src/schedule/actions/virtual-scroll.d.ts +1 -0
  16. package/src/schedule/actions/virtual-scroll.js +35 -4
  17. package/src/schedule/base/interface.d.ts +1 -0
  18. package/src/schedule/base/resource.js +5 -0
  19. package/src/schedule/base/schedule.js +2 -1
  20. package/src/schedule/event-renderer/event-base.js +18 -3
  21. package/src/schedule/event-renderer/inline-edit.js +9 -1
  22. package/src/schedule/event-renderer/month.js +4 -1
  23. package/src/schedule/event-renderer/timeline-view.js +4 -1
  24. package/src/schedule/event-renderer/year.js +2 -2
  25. package/src/schedule/renderer/header-renderer.d.ts +1 -0
  26. package/src/schedule/renderer/header-renderer.js +9 -1
  27. package/src/schedule/renderer/month.js +6 -0
  28. package/src/schedule/renderer/timeline-header-row.js +1 -1
  29. package/src/schedule/renderer/timeline-view.js +5 -0
  30. package/src/schedule/renderer/timeline-year.js +6 -2
  31. package/src/schedule/renderer/vertical-view.js +2 -6
  32. package/src/schedule/renderer/view-base.d.ts +1 -0
  33. package/src/schedule/renderer/view-base.js +9 -0
  34. package/src/schedule/renderer/year.js +4 -4
  35. package/styles/bootstrap-dark-lite.css +4169 -0
  36. package/styles/bootstrap-dark-lite.scss +18 -0
  37. package/styles/bootstrap-dark.css +818 -596
  38. package/styles/bootstrap-dark.scss +3 -2
  39. package/styles/bootstrap-lite.css +4164 -0
  40. package/styles/bootstrap-lite.scss +18 -0
  41. package/styles/bootstrap.css +818 -596
  42. package/styles/bootstrap.scss +3 -2
  43. package/styles/bootstrap4-lite.css +4211 -0
  44. package/styles/bootstrap4-lite.scss +18 -0
  45. package/styles/bootstrap4.css +803 -636
  46. package/styles/bootstrap4.scss +3 -2
  47. package/styles/bootstrap5-dark-lite.css +4210 -0
  48. package/styles/bootstrap5-dark-lite.scss +18 -0
  49. package/styles/bootstrap5-dark.css +819 -597
  50. package/styles/bootstrap5-dark.scss +3 -2
  51. package/styles/bootstrap5-lite.css +4210 -0
  52. package/styles/bootstrap5-lite.scss +18 -0
  53. package/styles/bootstrap5.3-lite.css +4256 -0
  54. package/styles/bootstrap5.3-lite.scss +18 -0
  55. package/styles/bootstrap5.3.css +5017 -0
  56. package/styles/bootstrap5.3.scss +20 -0
  57. package/styles/bootstrap5.css +819 -597
  58. package/styles/bootstrap5.scss +3 -2
  59. package/styles/fabric-dark-lite.css +4139 -0
  60. package/styles/fabric-dark-lite.scss +18 -0
  61. package/styles/fabric-dark.css +825 -595
  62. package/styles/fabric-dark.scss +3 -2
  63. package/styles/fabric-lite.css +4136 -0
  64. package/styles/fabric-lite.scss +18 -0
  65. package/styles/fabric.css +825 -588
  66. package/styles/fabric.scss +3 -2
  67. package/styles/fluent-dark-lite.css +4202 -0
  68. package/styles/fluent-dark-lite.scss +18 -0
  69. package/styles/fluent-dark.css +823 -593
  70. package/styles/fluent-dark.scss +3 -2
  71. package/styles/fluent-lite.css +4202 -0
  72. package/styles/fluent-lite.scss +18 -0
  73. package/styles/fluent.css +823 -593
  74. package/styles/fluent.scss +3 -2
  75. package/styles/fluent2-lite.css +4422 -0
  76. package/styles/fluent2-lite.scss +18 -0
  77. package/styles/fluent2.css +860 -602
  78. package/styles/fluent2.scss +3 -2
  79. package/styles/highcontrast-light-lite.css +4228 -0
  80. package/styles/highcontrast-light-lite.scss +18 -0
  81. package/styles/highcontrast-light.css +828 -584
  82. package/styles/highcontrast-light.scss +3 -2
  83. package/styles/highcontrast-lite.css +4237 -0
  84. package/styles/highcontrast-lite.scss +18 -0
  85. package/styles/highcontrast.css +829 -585
  86. package/styles/highcontrast.scss +3 -2
  87. package/styles/material-dark-lite.css +4216 -0
  88. package/styles/material-dark-lite.scss +18 -0
  89. package/styles/material-dark.css +828 -581
  90. package/styles/material-dark.scss +3 -2
  91. package/styles/material-lite.css +4242 -0
  92. package/styles/material-lite.scss +18 -0
  93. package/styles/material.css +826 -600
  94. package/styles/material.scss +3 -2
  95. package/styles/material3-dark-lite.css +4233 -0
  96. package/styles/material3-dark-lite.scss +18 -0
  97. package/styles/material3-dark.css +825 -602
  98. package/styles/material3-dark.scss +3 -2
  99. package/styles/material3-lite.css +4235 -0
  100. package/styles/material3-lite.scss +18 -0
  101. package/styles/material3.css +825 -602
  102. package/styles/material3.scss +3 -2
  103. package/styles/recurrence-editor/_bigger.scss +134 -0
  104. package/styles/recurrence-editor/_layout.scss +0 -110
  105. package/styles/recurrence-editor/bootstrap-dark.css +87 -131
  106. package/styles/recurrence-editor/bootstrap-dark.scss +1 -0
  107. package/styles/recurrence-editor/bootstrap.css +87 -131
  108. package/styles/recurrence-editor/bootstrap.scss +1 -0
  109. package/styles/recurrence-editor/bootstrap4.css +87 -149
  110. package/styles/recurrence-editor/bootstrap4.scss +1 -0
  111. package/styles/recurrence-editor/bootstrap5-dark.css +87 -135
  112. package/styles/recurrence-editor/bootstrap5-dark.scss +1 -0
  113. package/styles/recurrence-editor/bootstrap5.3.css +501 -0
  114. package/styles/recurrence-editor/bootstrap5.3.scss +9 -0
  115. package/styles/recurrence-editor/bootstrap5.css +87 -135
  116. package/styles/recurrence-editor/bootstrap5.scss +1 -0
  117. package/styles/recurrence-editor/fabric-dark.css +87 -130
  118. package/styles/recurrence-editor/fabric-dark.scss +1 -0
  119. package/styles/recurrence-editor/fabric.css +87 -123
  120. package/styles/recurrence-editor/fabric.scss +1 -0
  121. package/styles/recurrence-editor/fluent-dark.css +87 -122
  122. package/styles/recurrence-editor/fluent-dark.scss +1 -0
  123. package/styles/recurrence-editor/fluent.css +87 -122
  124. package/styles/recurrence-editor/fluent.scss +1 -0
  125. package/styles/recurrence-editor/fluent2.css +91 -117
  126. package/styles/recurrence-editor/fluent2.scss +1 -0
  127. package/styles/recurrence-editor/highcontrast-light.css +87 -118
  128. package/styles/recurrence-editor/highcontrast-light.scss +1 -0
  129. package/styles/recurrence-editor/highcontrast.css +87 -118
  130. package/styles/recurrence-editor/highcontrast.scss +1 -0
  131. package/styles/recurrence-editor/material-dark.css +87 -115
  132. package/styles/recurrence-editor/material-dark.scss +1 -0
  133. package/styles/recurrence-editor/material.css +87 -136
  134. package/styles/recurrence-editor/material.scss +1 -0
  135. package/styles/recurrence-editor/material3-dark.css +87 -140
  136. package/styles/recurrence-editor/material3-dark.scss +1 -0
  137. package/styles/recurrence-editor/material3.css +87 -140
  138. package/styles/recurrence-editor/material3.scss +1 -0
  139. package/styles/recurrence-editor/tailwind-dark.css +87 -116
  140. package/styles/recurrence-editor/tailwind-dark.scss +1 -0
  141. package/styles/recurrence-editor/tailwind.css +87 -116
  142. package/styles/recurrence-editor/tailwind.scss +1 -0
  143. package/styles/schedule/_bds-definition.scss +1 -1
  144. package/styles/schedule/_bigger.scss +809 -0
  145. package/styles/schedule/_bootstrap4-definition.scss +1 -1
  146. package/styles/schedule/_bootstrap5-definition.scss +1 -1
  147. package/styles/schedule/_bootstrap5.3-definition.scss +9 -6
  148. package/styles/schedule/_fluent-definition.scss +1 -1
  149. package/styles/schedule/_fluent2-definition.scss +6 -6
  150. package/styles/schedule/_fusionnew-definition.scss +1 -1
  151. package/styles/schedule/_layout.scss +5 -442
  152. package/styles/schedule/_tailwind-definition.scss +1 -1
  153. package/styles/schedule/_theme.scss +23 -1
  154. package/styles/schedule/bootstrap-dark.css +699 -483
  155. package/styles/schedule/bootstrap-dark.scss +1 -0
  156. package/styles/schedule/bootstrap.css +699 -483
  157. package/styles/schedule/bootstrap.scss +1 -0
  158. package/styles/schedule/bootstrap4.css +684 -523
  159. package/styles/schedule/bootstrap4.scss +1 -0
  160. package/styles/schedule/bootstrap5-dark.css +707 -491
  161. package/styles/schedule/bootstrap5-dark.scss +1 -0
  162. package/styles/schedule/bootstrap5.3.css +4615 -0
  163. package/styles/schedule/bootstrap5.3.scss +17 -0
  164. package/styles/schedule/bootstrap5.css +707 -491
  165. package/styles/schedule/bootstrap5.scss +1 -0
  166. package/styles/schedule/fabric-dark.css +706 -482
  167. package/styles/schedule/fabric-dark.scss +1 -0
  168. package/styles/schedule/fabric.css +706 -475
  169. package/styles/schedule/fabric.scss +1 -0
  170. package/styles/schedule/fluent-dark.css +716 -492
  171. package/styles/schedule/fluent-dark.scss +1 -0
  172. package/styles/schedule/fluent.css +716 -492
  173. package/styles/schedule/fluent.scss +1 -0
  174. package/styles/schedule/fluent2.css +746 -497
  175. package/styles/schedule/fluent2.scss +1 -0
  176. package/styles/schedule/highcontrast-light.css +714 -476
  177. package/styles/schedule/highcontrast-light.scss +1 -0
  178. package/styles/schedule/highcontrast.css +714 -476
  179. package/styles/schedule/highcontrast.scss +1 -0
  180. package/styles/schedule/material-dark.css +724 -483
  181. package/styles/schedule/material-dark.scss +1 -0
  182. package/styles/schedule/material.css +720 -500
  183. package/styles/schedule/material.scss +1 -0
  184. package/styles/schedule/material3-dark.css +714 -497
  185. package/styles/schedule/material3-dark.scss +1 -0
  186. package/styles/schedule/material3.css +714 -497
  187. package/styles/schedule/material3.scss +1 -0
  188. package/styles/schedule/tailwind-dark.css +718 -483
  189. package/styles/schedule/tailwind-dark.scss +1 -0
  190. package/styles/schedule/tailwind.css +718 -483
  191. package/styles/schedule/tailwind.scss +1 -0
  192. package/styles/tailwind-dark-lite.css +4179 -0
  193. package/styles/tailwind-dark-lite.scss +18 -0
  194. package/styles/tailwind-dark.css +827 -586
  195. package/styles/tailwind-dark.scss +3 -2
  196. package/styles/tailwind-lite.css +4179 -0
  197. package/styles/tailwind-lite.scss +18 -0
  198. package/styles/tailwind.css +827 -586
  199. package/styles/tailwind.scss +3 -2
  200. package/dist/ej2-schedule.min.js +0 -10
@@ -0,0 +1,809 @@
1
+ @mixin schedule-inline-appointment-styles {
2
+ background: transparent;
3
+ border: 0;
4
+ color: $schedule-appointment-font-color;
5
+ font-size: 13px;
6
+ font-weight: 500;
7
+ line-height: 1.2;
8
+ padding-top: 4px;
9
+ width: 100%;
10
+ }
11
+
12
+ @include export-module('schedule-bigger') {
13
+ .e-bigger .e-schedule,
14
+ .e-bigger.e-schedule {
15
+ .e-schedule-toolbar {
16
+ height: $schedule-tbar-bgr-size;
17
+ min-height: $schedule-tbar-bgr-size;
18
+
19
+ .e-tbar-btn .e-tbar-btn-text {
20
+ font-size: $schedule-content-bgr-font-size;
21
+ }
22
+
23
+ .e-toolbar-item.e-date-range .e-tbar-btn-text {
24
+ font-size: $schedule-header-bgr-font-size;
25
+ }
26
+
27
+ .e-icon-down-arrow {
28
+ font-size: $schedule-tbar-down-arrow-font-size;
29
+ }
30
+
31
+ .e-schedule .e-toolbar .e-hor-nav {
32
+ min-height: $schedule-tbar-bgr-items-size;
33
+ min-width: $schedule-tbar-nav-bgr-width;
34
+ z-index: 0;
35
+ }
36
+
37
+ .e-toolbar-item {
38
+
39
+ .e-btn.e-tbar-btn .e-icons.e-btn-icon {
40
+ font-size: $schedule-bigger-tbar-btn-font-size;
41
+ }
42
+
43
+ .e-tbar-btn-text {
44
+ line-height: inherit;
45
+ }
46
+ }
47
+
48
+ .e-toolbar-items {
49
+ min-height: $schedule-tbar-bgr-items-size;
50
+
51
+ .e-toolbar-item {
52
+ min-height: $schedule-tbar-bgr-items-size;
53
+
54
+ &:not(.e-separator):not(.e-spacer) {
55
+ min-width: $schedule-tbar-bgr-item-size;
56
+ }
57
+
58
+ &.e-separator {
59
+ height: $schedule-tbar-separator-bgr-height;
60
+ margin: $schedule-tbar-separator-bgr-mrgn;
61
+ min-height: $schedule-tbar-separator-bgr-minheight;
62
+ }
63
+
64
+ .e-icons {
65
+ min-width: $schedule-tbar-btn-icon-bgr-width;
66
+ }
67
+
68
+ button.e-btn,
69
+ .e-tbar-btn.e-btn.e-control {
70
+ height: auto;
71
+ line-height: $schedule-tbar-btn-bgr-line-height;
72
+ margin: $schedule-tbar-btn-bgr-mrgn;
73
+ min-width: $schedule-tbar-btn-bgr-minwidth;
74
+ padding: $schedule-tbar-btn-bgr-padding;
75
+
76
+ &.e-tbtn-txt {
77
+ .e-icons.e-icon-right {
78
+ padding: $schedule-tbar-btn-icn-right-bgr-padding;
79
+ font-size: $schedule-bigger-tbar-btn-font-size;
80
+ }
81
+ }
82
+
83
+ .e-btn-icon {
84
+ padding-top: $schedule-tbar-btn-icn-right-bgr-padding-top;
85
+ }
86
+ }
87
+
88
+ .e-tbar-btn .e-tbar-btn-text {
89
+ font-size: $schedule-bgr-tbar-btn-text-font-size;
90
+ }
91
+ }
92
+ }
93
+ }
94
+
95
+ .e-more-popup-wrapper {
96
+ .e-header-day {
97
+ font-size: $schedule-header-day-bgr-font-size;
98
+ }
99
+ }
100
+
101
+ .e-vertical-view {
102
+ .e-header-cells {
103
+ .e-header-day {
104
+ font-size: $schedule-header-day-bgr-font-size;
105
+ }
106
+
107
+ .e-header-date {
108
+ font-size: $schedule-header-date-bgr-font-size;
109
+ }
110
+ }
111
+
112
+ .e-resource-cells {
113
+ font-size: $schedule-header-day-bgr-font-size;
114
+ }
115
+
116
+ .e-time-cells-wrap table td {
117
+ font-size: $schedule-time-scale-bgr-font-size;
118
+ }
119
+
120
+ .e-clone-time-indicator,
121
+ .e-current-time {
122
+ font-size: $schedule-current-time-bgr-font-size;
123
+ }
124
+ }
125
+
126
+ &.e-device {
127
+ .e-vertical-view {
128
+ .e-time-cells-wrap table td {
129
+ font-size: $schedule-time-scale-device-font-size;
130
+ }
131
+
132
+ .e-clone-time-indicator,
133
+ .e-current-time {
134
+ font-size: $schedule-current-time-bgr-device-font-size;
135
+ }
136
+ }
137
+ }
138
+
139
+ .e-month-view {
140
+ .e-header-cells {
141
+ height: $schedule-month-header-cells-bgr-height;
142
+ }
143
+
144
+ .e-resource-cells,
145
+ .e-date-header-wrap table td {
146
+ font-size: $schedule-date-month-header-wrap-bgr-font-size;
147
+ }
148
+
149
+ .e-content-wrap {
150
+ font-size: $schedule-date-month-header-wrap-bgr-font-size;
151
+ }
152
+
153
+ .e-m-date {
154
+ font-size: $schedule-header-date-bgr-font-size;
155
+ }
156
+
157
+ .e-resource-name,
158
+ .e-m-day {
159
+ font-size: $schedule-header-day-bgr-font-size;
160
+ }
161
+ }
162
+
163
+ .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
164
+ min-width: 306px;
165
+ }
166
+ }
167
+
168
+ /*! schedule event tooltip */
169
+
170
+ .e-bigger .e-schedule-event-tooltip,
171
+ .e-schedule-event-tooltip.e-bigger {
172
+ .e-subject {
173
+ font-size: 14px;
174
+ font-weight: 500;
175
+ }
176
+ }
177
+
178
+ .e-bigger .e-dialog.e-quick-dialog.e-following-events-dialog {
179
+ width: 502px;
180
+ }
181
+
182
+ .e-bigger .e-dialog.e-quick-dialog {
183
+ min-width: 370px;
184
+ }
185
+
186
+ .e-bigger {
187
+ .e-ddl.e-popup .e-resource-template {
188
+ padding: 0 15px;
189
+
190
+ .e-resource-color {
191
+ height: $schedule-bigger-resource-color-size;
192
+ margin-top: $schedule-bigger-resource-color-margin-top;
193
+ width: $schedule-bigger-resource-color-size;
194
+ }
195
+ }
196
+
197
+ .e-schedule-dialog {
198
+ .e-disable {
199
+ display: none;
200
+ }
201
+
202
+ .e-dlg-header-content {
203
+ padding-bottom: 8px;
204
+ }
205
+
206
+ .e-dlg-content {
207
+ padding-bottom: 12px;
208
+ position: relative;
209
+ }
210
+
211
+ .e-event-cancel,
212
+ .e-event-delete {
213
+ border: $schedule-popup-btn-border;
214
+ box-shadow: none;
215
+ }
216
+
217
+ .e-footer-content .e-btn.e-event-delete {
218
+ float: left;
219
+ margin-left: 0;
220
+ }
221
+
222
+ .e-subject-container,
223
+ .e-start-container,
224
+ .e-start-time-zone-container,
225
+ .e-description-label {
226
+ padding-right: 12px;
227
+ }
228
+
229
+ .e-location-container,
230
+ .e-end-container,
231
+ .e-end-time-zone-container {
232
+ padding-left: 12px;
233
+ }
234
+
235
+ .e-all-day-container {
236
+ padding-right: 16px;
237
+ }
238
+
239
+ .e-time-zone-row {
240
+ display: none;
241
+
242
+ &.e-enable {
243
+ display: flex;
244
+ height: $schedule-timezone-enable-bgr-height;
245
+ }
246
+ }
247
+
248
+ .e-title-location-row,
249
+ .e-start-end-row,
250
+ .e-start-input-container,
251
+ .e-end-input-container,
252
+ .e-time-zone-row {
253
+ display: flex;
254
+ padding-bottom: $schedule-bigger-dialog-row-container-padding-bottom;
255
+ width: 100%;
256
+ }
257
+
258
+ .e-resources {
259
+ padding-bottom: 12px;
260
+ width: 100%;
261
+ }
262
+
263
+ .e-all-day-time-zone-row {
264
+ display: flex;
265
+ padding-bottom: 20px;
266
+ padding-top: 0;
267
+ width: 100%;
268
+ }
269
+
270
+ .e-subject-container,
271
+ .e-location-container,
272
+ .e-start-container,
273
+ .e-end-container,
274
+ .e-start-time-zone-container,
275
+ .e-end-time-zone-container {
276
+ width: 50%;
277
+ }
278
+
279
+ .e-location-container,
280
+ .e-end-container,
281
+ .e-end-time-zone-container,
282
+ .e-start-container,
283
+ .e-start-time-zone-container,
284
+ .e-subject-container,
285
+ .e-description-row,
286
+ .e-repeat-container {
287
+ padding-top: 0;
288
+ }
289
+
290
+ .e-all-day-time-zone-row {
291
+ padding-bottom: 16px;
292
+ padding-top: $schedule-bigger-dialog-all-day-row-padding-top;
293
+ }
294
+
295
+ .e-description,
296
+ .e-float-input .e-description {
297
+ height: 50px;
298
+ resize: vertical;
299
+ }
300
+
301
+ .e-time-zone-row,
302
+ .e-repeat-container,
303
+ .e-input-group .e-input-group-icon.e-icon-disable {
304
+ display: none;
305
+ }
306
+
307
+ &.e-rtl {
308
+ .e-all-day-container {
309
+ margin-left: 20px;
310
+ margin-right: 0;
311
+ }
312
+
313
+ .e-subject-container,
314
+ .e-start-container,
315
+ .e-start-time-zone-container,
316
+ .e-description-label {
317
+ padding-left: 12px;
318
+ padding-right: 0;
319
+ }
320
+
321
+ .e-location-container,
322
+ .e-end-container,
323
+ .e-end-time-zone-container {
324
+ padding-left: 0;
325
+ padding-right: 12px;
326
+ }
327
+
328
+ .e-event-delete {
329
+ float: right;
330
+ }
331
+ }
332
+ }
333
+ }
334
+
335
+ /*! schedule quick popup */
336
+
337
+ .e-bigger .e-quick-popup-wrapper {
338
+ .e-cell-popup .e-popup-content .e-popup-table .e-subject {
339
+ font-size: 24px;
340
+ }
341
+
342
+ .e-cell-popup .e-popup-content {
343
+ padding: $schedule-bgr-cell-popup-content-padding;
344
+ }
345
+
346
+ .e-popup-footer {
347
+ padding: $schedule-bgr-cell-popup-footer-padding;
348
+ }
349
+
350
+ .e-cell-popup .e-date-time-icon,
351
+ .e-event-popup .e-date-time-icon {
352
+ padding-right: $schedule-bgr-date-time-icon-padding-right;
353
+ }
354
+
355
+ .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close .e-close-icon {
356
+ font-size: 16px;
357
+ }
358
+
359
+ &.e-rtl {
360
+ .e-cell-popup .e-date-time-icon {
361
+ padding-right: 0;
362
+ }
363
+
364
+ .e-event-popup .e-date-time-icon {
365
+ padding-right: $schedule-bgr-rtl-event-popup-date-time-icon-padding-right;
366
+ }
367
+ }
368
+
369
+ .e-cell-popup .e-close.e-btn.e-small.e-round {
370
+ height: $schedule-bgr-event-popup-header-icon-size;
371
+ width: $schedule-bgr-event-popup-header-icon-size;
372
+ }
373
+
374
+ .e-event-popup {
375
+ .e-edit.e-btn.e-small.e-round,
376
+ .e-delete.e-btn.e-small.e-round,
377
+ .e-close.e-btn.e-small.e-round {
378
+ height: $schedule-bgr-event-popup-header-icon-size;
379
+ width: $schedule-bgr-event-popup-header-icon-size;
380
+ }
381
+ }
382
+
383
+ .e-event-popup .e-popup-header .e-header-icon-wrapper {
384
+ .e-close-icon,
385
+ .e-edit-icon,
386
+ .e-delete-icon {
387
+ font-size: $schedule-bigger-tbar-btn-font-size;
388
+ }
389
+ }
390
+
391
+ &.e-device {
392
+ .e-event-popup .e-popup-header .e-header-icon-wrapper {
393
+ .e-close-icon,
394
+ .e-edit-icon,
395
+ .e-delete-icon {
396
+ font-size: 14px;
397
+ }
398
+ }
399
+
400
+ .e-multiple-event-popup .e-popup-header {
401
+ .e-edit.e-btn.e-small.e-round,
402
+ .e-delete.e-btn.e-small.e-round,
403
+ .e-close.e-btn.e-small.e-round {
404
+ height: $schedule-bgr-multiple-event-popup-icon-height;
405
+ }
406
+
407
+ .e-subject {
408
+ padding: $schedule-bgr-multiple-event-popup-subject-padding;
409
+ }
410
+ }
411
+ }
412
+ }
413
+
414
+ .e-bigger .e-agenda-view {
415
+ .e-appointment {
416
+ padding: $schedule-agenda-big-appointment-padding;
417
+ }
418
+ .e-subject {
419
+ font-size: 16px;
420
+ }
421
+
422
+ .e-date-time {
423
+ font-size: 14px;
424
+ }
425
+
426
+ .e-day-date-header {
427
+ .e-m-date {
428
+ font-size: 20px;
429
+ }
430
+
431
+ .e-m-day {
432
+ font-size: 14px;
433
+ }
434
+ }
435
+ }
436
+
437
+ .e-bigger .e-timeline-view {
438
+ .e-resource-text {
439
+ font-size: 14px;
440
+ padding-left: 12px;
441
+ }
442
+
443
+ .e-navigate {
444
+ font-size: $schedule-date-header-wrap-bgr-font-size;
445
+ padding: 8px 0 8px 8px;
446
+ }
447
+
448
+ .e-date-header-wrap table tbody td > span {
449
+ font-size: $schedule-date-header-wrap-bgr-font-size;
450
+ padding: 8px 0 8px 8px;
451
+ }
452
+ }
453
+
454
+ .e-bigger .e-schedule .e-month-view .e-current-date .e-date-header {
455
+ width: 26px;
456
+ }
457
+ }
458
+
459
+ .e-bigger .e-schedule-dialog.e-device {
460
+ .e-dlg-header,
461
+ .e-dlg-header * {
462
+ width: 100%;
463
+ }
464
+
465
+ .e-dlg-header-content {
466
+ background: $schedule-content-bg-color;
467
+ box-shadow: $schedule-tbar-box-shadow;
468
+ @if ($theme-name == 'fluent2') {
469
+ box-shadow: none;
470
+ }
471
+ margin-bottom: $schedule-tbar-box-shadow-bottom-margin;
472
+ }
473
+
474
+ .e-title-location-row,
475
+ .e-start-end-row,
476
+ .e-time-zone-row,
477
+ .e-start-input-container,
478
+ .e-end-input-container {
479
+ display: inline;
480
+ }
481
+
482
+ .e-time-zone-row {
483
+ &.e-enable {
484
+ display: inline;
485
+ }
486
+ }
487
+
488
+ .e-subject-container,
489
+ .e-location-container,
490
+ .e-start-container,
491
+ .e-end-container,
492
+ .e-start-time-zone-container,
493
+ .e-end-time-zone-container {
494
+ padding-left: 0;
495
+ width: 100%;
496
+ }
497
+
498
+ .e-subject-container,
499
+ .e-start-container,
500
+ .e-start-time-zone-container,
501
+ .e-description-label {
502
+ padding-right: 0;
503
+ }
504
+
505
+ .e-location-container,
506
+ .e-end-container,
507
+ .e-end-time-zone-container,
508
+ .e-start-container,
509
+ .e-start-time-zone-container,
510
+ .e-subject-container,
511
+ .e-description-row,
512
+ .e-repeat-container {
513
+ padding-top: 20px;
514
+ }
515
+
516
+ .e-all-day-time-zone-row {
517
+ padding-top: $schedule-device-dialog-all-day-row-padding-top;
518
+ }
519
+
520
+ .e-resources {
521
+ padding-bottom: 0;
522
+ padding-top: 20px;
523
+ }
524
+
525
+ .e-description,
526
+ .e-float-input .e-description {
527
+ height: 60px;
528
+ resize: vertical;
529
+ }
530
+
531
+ .e-all-day-time-zone-row {
532
+ margin-top: 0;
533
+ padding-bottom: 0;
534
+ }
535
+
536
+ .e-repeat-parent-row {
537
+ padding-top: 8px;
538
+ }
539
+
540
+ .e-all-day-container {
541
+ margin-right: 20px;
542
+ }
543
+
544
+ .e-title-header {
545
+ display: flex;
546
+ width: 100%;
547
+ }
548
+
549
+ .e-save-icon,
550
+ .e-back-icon,
551
+ .e-forward-icon {
552
+ cursor: pointer;
553
+ line-height: normal;
554
+ }
555
+
556
+ .e-title-text {
557
+ text-align: center;
558
+ }
559
+
560
+ .e-save-icon,
561
+ .e-back-icon,
562
+ .e-delete-icon {
563
+ width: 2.5em;
564
+ }
565
+
566
+ .e-save-icon,
567
+ .e-delete-icon {
568
+ text-align: right;
569
+ }
570
+
571
+ .e-time-zone-row,
572
+ .e-input-group .e-input-group-icon.e-icon-disable {
573
+ display: none;
574
+ }
575
+
576
+ .e-repeat-container {
577
+ display: block;
578
+ padding-right: 35px;
579
+ padding-left: 0;
580
+ }
581
+
582
+ .e-icon-down-arrow {
583
+ font-size: $schedule-tbar-down-arrow-font-size;
584
+ }
585
+
586
+ &.e-rtl {
587
+ .e-save-icon {
588
+ text-align: left;
589
+ }
590
+
591
+ .e-all-day-container {
592
+ margin-left: 20px;
593
+ margin-right: 0;
594
+ }
595
+
596
+ .e-subject-container,
597
+ .e-start-container,
598
+ .e-start-time-zone-container,
599
+ .e-description-label {
600
+ padding-left: 0;
601
+ }
602
+
603
+ .e-location-container,
604
+ .e-end-container,
605
+ .e-end-time-zone-container,
606
+ .e-all-day-container {
607
+ padding-right: 0;
608
+ }
609
+
610
+ .e-repeat-container {
611
+ padding-left: 35px;
612
+ padding-right: 0;
613
+ }
614
+ }
615
+
616
+ .e-recurrence-container {
617
+ position: relative;
618
+
619
+ &.e-hide {
620
+ display: none;
621
+ }
622
+
623
+ .e-recurrence-edit-button {
624
+ border: 0;
625
+ box-shadow: none;
626
+ margin: -3px 5px;
627
+ position: absolute;
628
+
629
+ .e-recurrence-edit.e-icons {
630
+ font-size: 12px;
631
+ position: relative;
632
+ top: 1px;
633
+ }
634
+ }
635
+ }
636
+ }
637
+
638
+ .e-bigger .e-more-popup-wrapper {
639
+ background: $schedule-popup-bg-color;
640
+ border: 1px solid $schedule-popup-border-color;
641
+ border-radius: $schedule-more-popup-wrapper-border-radius;
642
+ box-shadow: $schedule-more-indicator-shadow-color-more-popup;
643
+ opacity: 1;
644
+ padding: $schedule-more-popup-padding;
645
+ width: 225px;
646
+
647
+ .e-more-appointment-wrapper {
648
+ margin: 0 4px;
649
+ }
650
+
651
+ .e-more-event-popup {
652
+ height: 100%;
653
+ position: relative;
654
+ width: 100%;
655
+ }
656
+
657
+ .e-more-event-header {
658
+ height: 35px;
659
+ margin: 0 8px 4px 14px;
660
+ }
661
+
662
+ .e-more-event-content {
663
+ color: $schedule-primary-content-font-color;
664
+ height: calc(100% - 35px);
665
+ max-height: 150px;
666
+ overflow-y: auto;
667
+ padding: 10px 10px 0;
668
+
669
+ .e-appointment-border {
670
+ border: 0;
671
+ box-shadow: $schedule-event-box-shadow-1, $schedule-event-box-shadow-2, $schedule-event-box-shadow-3;
672
+ }
673
+ }
674
+
675
+ .e-more-event-date-header {
676
+ height: 100%;
677
+ width: calc(100% - 25px);
678
+
679
+ .e-current-date {
680
+ color: $schedule-active-font-color;
681
+ }
682
+ }
683
+
684
+ .e-header-day {
685
+ color: $schedule-primary-content-font-color;
686
+ font-size: $schedule-date-header-wrap-nrml-font-size;
687
+ line-height: 1;
688
+ padding-bottom: $schedule-more-appointment-margin-bottom;
689
+ }
690
+
691
+ .e-header-date {
692
+ color: $schedule-primary-content-font-color;
693
+ font-size: $schedule-header-date-nrml-font-size;
694
+ line-height: 1;
695
+ max-width: 15%;
696
+
697
+ &:hover {
698
+ cursor: pointer;
699
+ text-decoration: underline;
700
+ }
701
+
702
+ &:focus {
703
+ text-decoration: underline;
704
+ }
705
+ }
706
+
707
+ .e-more-event-close {
708
+ background: transparent;
709
+ border: 0;
710
+ box-shadow: none;
711
+ color: $schedule-popup-icon-color;
712
+ cursor: pointer;
713
+ height: 25px;
714
+ padding: $schedule-bgr-more-event-close-icon-padding;
715
+ position: absolute;
716
+ right: 6px;
717
+ width: 25px;
718
+
719
+ .e-close-icon {
720
+ font-size: $schedule-more-event-close-icon-font-size;
721
+ }
722
+
723
+ .e-btn-icon {
724
+ margin-top: $schedule-more-popup-close-margin-top;
725
+ }
726
+
727
+ &:focus,
728
+ &:hover {
729
+ background: $schedule-popup-header-icon-focus-bg-color;
730
+ border-radius: 50%;
731
+ color: $schedule-popup-header-icon-focus-color;
732
+ }
733
+ }
734
+
735
+ .e-appointment {
736
+ background: $schedule-appointment-bg-color;
737
+ border-radius: $schedule-appointment-border-radius;
738
+ color: $schedule-appointment-font-color;
739
+ display: flex;
740
+ height: $schedule-month-appointment-height;
741
+ line-height: $schedule-appointment-text-line-height;
742
+ margin-bottom: $schedule-more-appointment-margin-bottom;
743
+ padding: 2px 0;
744
+ width: 100%;
745
+
746
+ .e-subject {
747
+ color: $schedule-appointment-font-color;
748
+ flex: auto;
749
+ font-size: 13px;
750
+ font-weight: 500;
751
+ overflow: hidden;
752
+ padding: 0 2px;
753
+ text-overflow: ellipsis;
754
+ white-space: nowrap;
755
+ }
756
+
757
+ .e-subject.e-disable {
758
+ display: none;
759
+ }
760
+
761
+ .e-inline-subject {
762
+ @include schedule-inline-appointment-styles;
763
+ }
764
+
765
+ .e-recurrence-icon,
766
+ .e-recurrence-edit-icon {
767
+ line-height: $schedule-month-appointment-height;
768
+ padding: 0 2px;
769
+ }
770
+
771
+ &.e-appointment-border,
772
+ &:focus {
773
+ border: 0;
774
+ box-shadow: $schedule-event-box-shadow-1, $schedule-event-box-shadow-2, $schedule-event-box-shadow-3;
775
+ }
776
+ }
777
+
778
+ &.e-device {
779
+ bottom: 0;
780
+ height: 100%;
781
+ left: 0;
782
+ margin: 0;
783
+ max-width: 100%;
784
+ overflow: hidden;
785
+ right: 0;
786
+ top: 0;
787
+ width: 100%;
788
+ z-index: 1002;
789
+
790
+ .e-more-event-content {
791
+ max-height: unset;
792
+ }
793
+ }
794
+
795
+ &.e-rtl {
796
+ .e-header-date {
797
+ padding-right: 10px;
798
+ }
799
+
800
+ .e-header-day {
801
+ padding-right: 10px;
802
+ }
803
+
804
+ .e-more-event-close {
805
+ left: 6px;
806
+ right: auto;
807
+ }
808
+ }
809
+ }