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

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