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

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