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

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