@syncfusion/ej2-schedule 20.3.61 → 20.4.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (157) hide show
  1. package/.eslintrc.json +16 -1
  2. package/CHANGELOG.md +8 -0
  3. package/README.md +62 -46
  4. package/dist/ej2-schedule.min.js +2 -2
  5. package/dist/ej2-schedule.umd.min.js +2 -2
  6. package/dist/ej2-schedule.umd.min.js.map +1 -1
  7. package/dist/es6/ej2-schedule.es2015.js +786 -524
  8. package/dist/es6/ej2-schedule.es2015.js.map +1 -1
  9. package/dist/es6/ej2-schedule.es5.js +821 -535
  10. package/dist/es6/ej2-schedule.es5.js.map +1 -1
  11. package/dist/global/ej2-schedule.min.js +2 -2
  12. package/dist/global/ej2-schedule.min.js.map +1 -1
  13. package/dist/global/index.d.ts +1 -1
  14. package/package.json +22 -30
  15. package/src/common/calendar-util.js +1 -1
  16. package/src/recurrence-editor/date-generator.js +26 -26
  17. package/src/recurrence-editor/recurrence-editor.js +5 -5
  18. package/src/schedule/actions/action-base.js +3 -3
  19. package/src/schedule/actions/crud.js +16 -16
  20. package/src/schedule/actions/drag.js +36 -32
  21. package/src/schedule/actions/keyboard.js +10 -8
  22. package/src/schedule/actions/resize.js +6 -6
  23. package/src/schedule/actions/touch.js +4 -3
  24. package/src/schedule/actions/virtual-scroll.js +10 -7
  25. package/src/schedule/base/interface.d.ts +8 -1
  26. package/src/schedule/base/resource.d.ts +1 -0
  27. package/src/schedule/base/resource.js +179 -93
  28. package/src/schedule/base/schedule-model.d.ts +7 -0
  29. package/src/schedule/base/schedule.d.ts +23 -0
  30. package/src/schedule/base/schedule.js +73 -22
  31. package/src/schedule/base/util.js +4 -6
  32. package/src/schedule/event-renderer/agenda-base.js +36 -31
  33. package/src/schedule/event-renderer/event-base.js +25 -25
  34. package/src/schedule/event-renderer/inline-edit.js +8 -5
  35. package/src/schedule/event-renderer/month.js +17 -14
  36. package/src/schedule/event-renderer/timeline-view.js +11 -11
  37. package/src/schedule/event-renderer/vertical-view.d.ts +1 -0
  38. package/src/schedule/event-renderer/vertical-view.js +97 -70
  39. package/src/schedule/event-renderer/year.js +25 -17
  40. package/src/schedule/exports/calendar-export.js +4 -4
  41. package/src/schedule/exports/calendar-import.js +14 -15
  42. package/src/schedule/exports/excel-export.js +1 -1
  43. package/src/schedule/models/group-model.d.ts +8 -0
  44. package/src/schedule/models/group.d.ts +7 -0
  45. package/src/schedule/models/group.js +3 -0
  46. package/src/schedule/models/views-model.d.ts +8 -1
  47. package/src/schedule/models/views.d.ts +7 -1
  48. package/src/schedule/models/views.js +3 -0
  49. package/src/schedule/popups/event-tooltip.js +3 -2
  50. package/src/schedule/popups/event-window.js +36 -30
  51. package/src/schedule/popups/quick-popups.js +6 -6
  52. package/src/schedule/renderer/agenda.js +5 -5
  53. package/src/schedule/renderer/header-renderer.d.ts +1 -1
  54. package/src/schedule/renderer/header-renderer.js +21 -5
  55. package/src/schedule/renderer/month-agenda.js +11 -4
  56. package/src/schedule/renderer/month.js +44 -16
  57. package/src/schedule/renderer/renderer.js +3 -3
  58. package/src/schedule/renderer/timeline-header-row.js +7 -7
  59. package/src/schedule/renderer/timeline-month.js +5 -5
  60. package/src/schedule/renderer/timeline-view.js +2 -2
  61. package/src/schedule/renderer/timeline-year.js +20 -14
  62. package/src/schedule/renderer/vertical-view.js +24 -9
  63. package/src/schedule/renderer/view-base.d.ts +3 -0
  64. package/src/schedule/renderer/view-base.js +11 -3
  65. package/src/schedule/renderer/year.js +11 -5
  66. package/styles/bootstrap-dark.css +364 -101
  67. package/styles/bootstrap.css +363 -99
  68. package/styles/bootstrap4.css +375 -141
  69. package/styles/bootstrap5-dark.css +339 -137
  70. package/styles/bootstrap5.css +339 -137
  71. package/styles/fabric-dark.css +330 -101
  72. package/styles/fabric.css +316 -106
  73. package/styles/fluent-dark.css +395 -102
  74. package/styles/fluent.css +395 -102
  75. package/styles/highcontrast-light.css +407 -98
  76. package/styles/highcontrast.css +399 -113
  77. package/styles/material-dark.css +362 -110
  78. package/styles/material.css +404 -110
  79. package/styles/recurrence-editor/_layout.scss +42 -28
  80. package/styles/recurrence-editor/bootstrap-dark.css +137 -28
  81. package/styles/recurrence-editor/bootstrap-dark.scss +5 -0
  82. package/styles/recurrence-editor/bootstrap.css +137 -28
  83. package/styles/recurrence-editor/bootstrap.scss +5 -0
  84. package/styles/recurrence-editor/bootstrap4.css +171 -28
  85. package/styles/recurrence-editor/bootstrap4.scss +5 -0
  86. package/styles/recurrence-editor/bootstrap5-dark.css +178 -28
  87. package/styles/recurrence-editor/bootstrap5-dark.scss +5 -0
  88. package/styles/recurrence-editor/bootstrap5.css +178 -28
  89. package/styles/recurrence-editor/bootstrap5.scss +5 -0
  90. package/styles/recurrence-editor/fabric-dark.css +113 -28
  91. package/styles/recurrence-editor/fabric-dark.scss +5 -0
  92. package/styles/recurrence-editor/fabric.css +106 -28
  93. package/styles/recurrence-editor/fabric.scss +5 -0
  94. package/styles/recurrence-editor/fluent-dark.css +158 -28
  95. package/styles/recurrence-editor/fluent-dark.scss +5 -0
  96. package/styles/recurrence-editor/fluent.css +158 -28
  97. package/styles/recurrence-editor/fluent.scss +5 -0
  98. package/styles/recurrence-editor/highcontrast-light.css +110 -28
  99. package/styles/recurrence-editor/highcontrast-light.scss +5 -0
  100. package/styles/recurrence-editor/highcontrast.css +110 -28
  101. package/styles/recurrence-editor/highcontrast.scss +5 -0
  102. package/styles/recurrence-editor/material-dark.css +138 -28
  103. package/styles/recurrence-editor/material-dark.scss +5 -0
  104. package/styles/recurrence-editor/material.css +163 -28
  105. package/styles/recurrence-editor/material.scss +5 -0
  106. package/styles/recurrence-editor/tailwind-dark.css +126 -28
  107. package/styles/recurrence-editor/tailwind-dark.scss +5 -0
  108. package/styles/recurrence-editor/tailwind.css +126 -28
  109. package/styles/recurrence-editor/tailwind.scss +5 -0
  110. package/styles/schedule/_bootstrap-dark-definition.scss +63 -4
  111. package/styles/schedule/_bootstrap-definition.scss +62 -3
  112. package/styles/schedule/_bootstrap4-definition.scss +65 -5
  113. package/styles/schedule/_bootstrap5-definition.scss +63 -5
  114. package/styles/schedule/_fabric-dark-definition.scss +61 -3
  115. package/styles/schedule/_fabric-definition.scss +62 -3
  116. package/styles/schedule/_fluent-definition.scss +63 -6
  117. package/styles/schedule/_fusionnew-definition.scss +60 -3
  118. package/styles/schedule/_highcontrast-definition.scss +62 -3
  119. package/styles/schedule/_highcontrast-light-definition.scss +62 -3
  120. package/styles/schedule/_layout.scss +117 -506
  121. package/styles/schedule/_material-dark-definition.scss +63 -4
  122. package/styles/schedule/_material-definition.scss +63 -4
  123. package/styles/schedule/_material3-definition.scss +62 -3
  124. package/styles/schedule/_tailwind-definition.scss +63 -6
  125. package/styles/schedule/_theme.scss +97 -62
  126. package/styles/schedule/bootstrap-dark.css +332 -73
  127. package/styles/schedule/bootstrap-dark.scss +11 -0
  128. package/styles/schedule/bootstrap.css +331 -71
  129. package/styles/schedule/bootstrap.scss +11 -0
  130. package/styles/schedule/bootstrap4.css +343 -113
  131. package/styles/schedule/bootstrap4.scss +11 -0
  132. package/styles/schedule/bootstrap5-dark.css +307 -109
  133. package/styles/schedule/bootstrap5-dark.scss +11 -0
  134. package/styles/schedule/bootstrap5.css +307 -109
  135. package/styles/schedule/bootstrap5.scss +11 -0
  136. package/styles/schedule/fabric-dark.css +298 -73
  137. package/styles/schedule/fabric-dark.scss +11 -0
  138. package/styles/schedule/fabric.css +284 -78
  139. package/styles/schedule/fabric.scss +11 -0
  140. package/styles/schedule/fluent-dark.css +363 -74
  141. package/styles/schedule/fluent-dark.scss +11 -0
  142. package/styles/schedule/fluent.css +363 -74
  143. package/styles/schedule/fluent.scss +11 -0
  144. package/styles/schedule/highcontrast-light.css +375 -70
  145. package/styles/schedule/highcontrast-light.scss +11 -0
  146. package/styles/schedule/highcontrast.css +367 -85
  147. package/styles/schedule/highcontrast.scss +11 -0
  148. package/styles/schedule/material-dark.css +330 -82
  149. package/styles/schedule/material-dark.scss +11 -0
  150. package/styles/schedule/material.css +372 -82
  151. package/styles/schedule/material.scss +11 -0
  152. package/styles/schedule/tailwind-dark.css +246 -111
  153. package/styles/schedule/tailwind-dark.scss +11 -0
  154. package/styles/schedule/tailwind.css +246 -111
  155. package/styles/schedule/tailwind.scss +11 -0
  156. package/styles/tailwind-dark.css +279 -140
  157. package/styles/tailwind.css +279 -140
@@ -17,28 +17,11 @@
17
17
  margin-bottom: $schedule-tbar-box-shadow-bottom-margin;
18
18
  min-height: $schedule-tbar-min-height;
19
19
 
20
- @if ($schedule-skin == 'bootstrap') {
21
- border-radius: 0;
22
- }
23
-
24
20
  .e-active-view {
25
21
  .e-tbar-btn-text,
26
22
  .e-icons {
27
23
  color: $schedule-active-font-color;
28
24
  }
29
-
30
- @if $schedule-skin == 'bootstrap5' {
31
- .e-tbar-btn {
32
- &:active,
33
- &:focus,
34
- &:hover {
35
- .e-tbar-btn-text,
36
- .e-icons {
37
- color: $schedule-appointment-font-color;
38
- }
39
- }
40
- }
41
- }
42
25
  }
43
26
 
44
27
  .e-tbar-btn {
@@ -47,12 +30,6 @@
47
30
  font-size: $schedule-content-nrml-font-size;
48
31
  text-transform: $schedule-content-nrml-font-text-transform;
49
32
  }
50
-
51
- &:active {
52
- @if $schedule-skin == 'material' {
53
- background: $schedule-select-bg-color;
54
- }
55
- }
56
33
  }
57
34
 
58
35
  .e-toolbar-items {
@@ -71,9 +48,7 @@
71
48
  &.e-tbtn-txt {
72
49
  .e-icons.e-icon-right.e-btn-icon.e-icon-down-arrow {
73
50
  font-size: $schedule-tbar-down-arrow-font-size;
74
- @if ($schedule-skin != 'bootstrap5' and $schedule-skin != 'FluentUI') {
75
- padding-top: $schedule-tbar-down-arrow-padding-top;
76
- }
51
+ margin-top: $schedule-tbar-down-arrow-margin-top;
77
52
  }
78
53
  }
79
54
  }
@@ -124,12 +99,6 @@
124
99
  font-size: $schedule-header-nrml-font-size;
125
100
  text-transform: initial;
126
101
  }
127
-
128
- .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
129
- @if ($schedule-skin == 'tailwind' or $schedule-skin == 'fabric' or $schedule-skin == 'bootstrap-dark' or $schedule-skin == 'fabric-dark' or $schedule-skin == 'highcontrast') {
130
- padding: 0 12px;
131
- }
132
- }
133
102
  }
134
103
  }
135
104
 
@@ -192,6 +161,10 @@
192
161
  &.e-tbar-pos > div {
193
162
  height: inherit;
194
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
+ }
195
168
  }
196
169
 
197
170
  .e-tbar-btn .e-tbar-btn-text {
@@ -240,10 +213,7 @@
240
213
  .e-resource-name {
241
214
  font-size: 14px;
242
215
  padding: 5px;
243
-
244
- @if ($schedule-skin != 'bootstrap4') {
245
- color: $schedule-tree-content-color;
246
- }
216
+ color: $schedule-tree-content-color;
247
217
 
248
218
  &:not(:last-child) {
249
219
  opacity: .6;
@@ -293,10 +263,7 @@
293
263
  height: 100%;
294
264
  position: absolute;
295
265
  width: 250px;
296
-
297
- @if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
298
- color: $schedule-primary-content-font-color;
299
- }
266
+ color: $schedule-tree-font-color;
300
267
 
301
268
  .e-resource-tree {
302
269
  height: 100%;
@@ -304,9 +271,7 @@
304
271
  }
305
272
 
306
273
  .e-resource-tree.e-treeview .e-text-content {
307
- @if ($schedule-skin != 'FluentUI') {
308
- padding: 0 0 0 12px;
309
- }
274
+ padding: $schedule-resource-tree-text-content-padding;
310
275
  }
311
276
  }
312
277
 
@@ -427,9 +392,6 @@
427
392
 
428
393
  .e-block-appointment {
429
394
  background: $schedule-block-appointment-bg-color;
430
- @if ($schedule-skin != 'bootstrap4') {
431
- border-radius: $schedule-appointment-border-radius;
432
- }
433
395
  color: $schedule-block-appointment-font-color;
434
396
  cursor: default;
435
397
  overflow: hidden;
@@ -756,31 +718,16 @@
756
718
  .e-header-day {
757
719
  display: table;
758
720
  font-size: $schedule-header-day-nrml-font-size;
759
- @if ($schedule-skin == 'bootstrap4') {
760
- line-height: 17px;
761
- padding-bottom: 4px;
762
- }
763
- @if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
764
- line-height: 18px;
765
- padding-bottom: 4px;
766
- }
721
+ line-height: $schedule-header-day-line-height;
722
+ padding-bottom: $schedule-header-day-padding-bottom;
767
723
  }
768
724
 
769
725
  .e-header-date {
770
726
  cursor: pointer;
771
727
  display: table;
772
728
  font-size: $schedule-header-date-nrml-font-size;
773
- @if ($schedule-skin == 'bootstrap4') {
774
- line-height: 21px;
775
- }
776
-
777
- @if ($schedule-skin == 'FluentUI') {
778
- padding-top: $schedule-header-cells-padding;
779
- }
780
-
781
- @if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
782
- line-height: 24px;
783
- }
729
+ line-height: $schedule-header-date-line-height;
730
+ padding-top: $schedule-header-padding-top;
784
731
 
785
732
  &:hover {
786
733
  text-decoration: underline;
@@ -864,9 +811,7 @@
864
811
  &:focus {
865
812
  background: $schedule-header-hover-color;
866
813
  border-radius: 100%;
867
- @if ($schedule-skin == 'bootstrap4') {
868
- color: $white;
869
- }
814
+ color: $schedule-all-day-section-hover-color;
870
815
  }
871
816
  }
872
817
 
@@ -1048,9 +993,7 @@
1048
993
  flex: auto;
1049
994
  padding: $schedule-appointment-details-padding;
1050
995
  text-align: left;
1051
- @if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
1052
- line-height: $schedule-appointment-text-line-height;
1053
- }
996
+ line-height: $schedule-appointment-detail-line-height;
1054
997
  }
1055
998
 
1056
999
  .e-subject {
@@ -1437,10 +1380,8 @@
1437
1380
 
1438
1381
  #{if(&, '&', '*')}.e-rtl {
1439
1382
  .e-month-view {
1440
- @if ($schedule-skin == 'bootstrap4') {
1441
- .e-date-header {
1442
- margin: 8px 8px 0 0;
1443
- }
1383
+ .e-date-header {
1384
+ margin: $schedule-date-header-margin-rtl;
1444
1385
  }
1445
1386
 
1446
1387
  .e-left-indent {
@@ -1656,72 +1597,6 @@
1656
1597
  transform: rotate(90deg);
1657
1598
  }
1658
1599
 
1659
- .e-work-cells {
1660
- background-color: $schedule-work-cells-bg-color;
1661
- border-color: $schedule-content-border-color;
1662
- border-style: $border-type;
1663
- border-width: 0 $border-size $border-size 0;
1664
- color: $schedule-primary-content-font-color;
1665
- padding: 0;
1666
-
1667
- &:hover:not(.e-other-month) {
1668
- background: $schedule-hover-bg-color;
1669
- color: $schedule-hover-font-color;
1670
- }
1671
-
1672
- &.e-work-days {
1673
- background-color: $schedule-workhour-bg-color;
1674
- }
1675
-
1676
- &.e-other-month {
1677
- color: $schedule-secondary-content-font-color;
1678
- }
1679
-
1680
- &.e-current-day .e-date-header {
1681
- background-color: $schedule-current-date-bg-color;
1682
- border-radius: 50%;
1683
- color: $schedule-current-day-active-color;
1684
- margin: 2px;
1685
- width: 20px;
1686
- }
1687
-
1688
- &.e-selected-cell {
1689
- background-color: $schedule-select-bg-color;
1690
- color: $schedule-select-font-color;
1691
-
1692
- .e-date-header {
1693
- @if ($schedule-skin == 'highcontrast') {
1694
- color: $schedule-select-font-color;
1695
- }
1696
- }
1697
-
1698
- .e-more-indicator {
1699
- color: $schedule-select-font-color;
1700
- }
1701
-
1702
- &:hover {
1703
- background-color: $schedule-select-bg-color;
1704
- }
1705
- }
1706
-
1707
- &.e-disable-dates {
1708
- background-color: $schedule-disable-dates-color;
1709
-
1710
- .e-date-header {
1711
- cursor: default;
1712
- opacity: .35;
1713
-
1714
- &:hover {
1715
- text-decoration: none;
1716
- }
1717
- }
1718
-
1719
- &:hover {
1720
- background-color: $schedule-disable-dates-color;
1721
- }
1722
- }
1723
- }
1724
-
1725
1600
  .e-content-table {
1726
1601
  height: 100%;
1727
1602
 
@@ -1755,10 +1630,7 @@
1755
1630
  border-bottom: $border-size $border-type $schedule-content-border-color;
1756
1631
  border-right: $border-size $border-type $schedule-content-border-color;
1757
1632
  text-align: center;
1758
-
1759
- @if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
1760
- color: $schedule-header-font-color;
1761
- }
1633
+ color: $schedule-header-font-color;
1762
1634
 
1763
1635
  &.e-current-day {
1764
1636
  color: $schedule-active-font-color;
@@ -1802,15 +1674,6 @@
1802
1674
  }
1803
1675
  }
1804
1676
 
1805
- &.e-virtual-mask .e-work-cells {
1806
- background-color: $schedule-disable-dates-color;
1807
- box-shadow: inset 0 0 0 8px $schedule-work-cells-bg-color;
1808
-
1809
- &:hover {
1810
- background-color: $schedule-disable-dates-color;
1811
- }
1812
- }
1813
-
1814
1677
  .e-event-table {
1815
1678
  position: absolute;
1816
1679
  top: 0;
@@ -1926,7 +1789,7 @@
1926
1789
 
1927
1790
  #{if(&, '&', '*')}.e-device {
1928
1791
  .e-year-view {
1929
- .e-month-calendar {
1792
+ .e-calendar-wrapper .e-month-calendar.e-calendar {
1930
1793
  max-width: 100%;
1931
1794
  min-width: 100%;
1932
1795
  }
@@ -1970,10 +1833,8 @@
1970
1833
  }
1971
1834
 
1972
1835
  .e-date-header-wrap table tbody td.e-time-slots {
1836
+ background-color: $schedule-timeline-header-time-slots-bg;
1973
1837
  overflow: inherit;
1974
- @if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
1975
- background-color: $schedule-tbar-default-bg;
1976
- }
1977
1838
  }
1978
1839
 
1979
1840
  .e-date-header-wrap table tbody td > span {
@@ -2337,6 +2198,7 @@
2337
2198
  .e-content-table {
2338
2199
  border-bottom: $schedule-month-agenda-border;
2339
2200
  box-shadow: $schedule-box-shadow;
2201
+ height: 100%;
2340
2202
  }
2341
2203
 
2342
2204
  .e-resource-column {
@@ -2608,12 +2470,7 @@
2608
2470
 
2609
2471
  .e-subject-wrap {
2610
2472
  display: flex;
2611
- @if ($schedule-skin == 'bootstrap4') {
2612
- margin-bottom: 6px;
2613
- }
2614
- @if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
2615
- margin-bottom: 4px;
2616
- }
2473
+ margin-bottom: $schedule-agenda-subject-wrap-margin-bottom;
2617
2474
  }
2618
2475
 
2619
2476
  .e-active-appointment-agenda {
@@ -2805,9 +2662,7 @@
2805
2662
  .e-toolbar-item {
2806
2663
 
2807
2664
  .e-btn.e-tbar-btn .e-icons.e-btn-icon {
2808
- @if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
2809
- font-size: 22px;
2810
- }
2665
+ font-size: $schedule-bigger-tbar-btn-font-size;
2811
2666
  }
2812
2667
 
2813
2668
  .e-tbar-btn-text {
@@ -2842,36 +2697,23 @@
2842
2697
  margin: $schedule-tbar-btn-bgr-mrgn;
2843
2698
  min-height: $schedule-tbar-btn-bgr-minheight;
2844
2699
  min-width: $schedule-tbar-btn-bgr-minwidth;
2845
- @if ($schedule-skin != 'bootstrap' and $schedule-skin != 'bootstrap4' and $schedule-skin != 'bootstrap-dark') {
2846
- padding: $schedule-tbar-btn-bgr-padding;
2847
- }
2700
+ padding: $schedule-tbar-btn-bgr-padding;
2848
2701
 
2849
2702
  &.e-tbtn-txt {
2850
2703
  .e-icons.e-icon-right {
2851
- @if ($schedule-skin != 'FluentUI') {
2852
- padding: $schedule-tbar-btn-icn-right-bgr-padding;
2853
- }
2854
- @if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
2855
- font-size: 22px;
2856
- }
2704
+ padding: $schedule-tbar-btn-icn-right-bgr-padding;
2705
+ font-size: $schedule-bigger-tbar-btn-font-size;
2857
2706
  }
2858
2707
  }
2859
2708
 
2860
2709
  .e-btn-icon {
2861
2710
  height: 25px;
2862
- @if ($schedule-skin == 'tailwind') {
2863
- padding-bottom: 2px;
2864
- }
2865
- @if ($schedule-skin == 'bootstrap5') {
2866
- padding-top: 3px;
2867
- }
2711
+ padding-top: $schedule-tbar-btn-icn-right-bgr-padding-top;
2868
2712
  }
2869
2713
  }
2870
2714
 
2871
- @if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
2872
- .e-tbar-btn .e-tbar-btn-text {
2873
- font-size: $schedule-header-bgr-font-size;
2874
- }
2715
+ .e-tbar-btn .e-tbar-btn-text {
2716
+ font-size: $schedule-bgr-tbar-btn-text-font-size;
2875
2717
  }
2876
2718
  }
2877
2719
  }
@@ -2921,30 +2763,8 @@
2921
2763
  }
2922
2764
  }
2923
2765
 
2924
- @if ($schedule-skin == 'bootstrap4') {
2925
- &.e-rtl {
2926
- .e-month-view,
2927
- .e-month-agenda-view {
2928
- .e-date-header {
2929
- margin: 8px 8px 0 0;
2930
- }
2931
- }
2932
- }
2933
- }
2934
-
2935
2766
  .e-month-view {
2936
- .e-date-header {
2937
- @if ($schedule-skin == 'bootstrap4') {
2938
- line-height: 24px;
2939
- margin: 8px 0 0 8px;
2940
- }
2941
- }
2942
-
2943
2767
  .e-header-cells {
2944
- @if ($schedule-skin == 'bootstrap4') {
2945
- line-height: 24px;
2946
- padding: 10px 8px;
2947
- }
2948
2768
  height: $schedule-month-header-cells-bgr-height;
2949
2769
  }
2950
2770
 
@@ -3055,20 +2875,16 @@
3055
2875
  width: 420px;
3056
2876
 
3057
2877
  .e-footer-content {
3058
- @if ($schedule-skin == 'highcontrast' or $schedule-skin == 'fabric') {
3059
- padding: 2%;
3060
- }
2878
+ padding: $schedule-following-events-dlg-padding;
3061
2879
  }
3062
2880
  @media screen and (max-width: 767px) {
3063
2881
  width: 289px;
3064
2882
 
3065
2883
  .e-footer-content {
3066
- @if ($schedule-skin == 'highcontrast' or $schedule-skin == 'fabric') {
3067
- padding: 5%;
3068
-
3069
- button {
3070
- margin-bottom: 5%;
3071
- }
2884
+ padding: 5%;
2885
+
2886
+ button {
2887
+ margin-bottom: 5%;
3072
2888
  }
3073
2889
  }
3074
2890
  }
@@ -3121,10 +2937,6 @@
3121
2937
  .e-dlg-content {
3122
2938
  padding-bottom: 12px;
3123
2939
  position: relative;
3124
-
3125
- @if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
3126
- background-color: $schedule-content-bg-color;
3127
- }
3128
2940
  }
3129
2941
 
3130
2942
  .e-event-delete {
@@ -3400,16 +3212,6 @@
3400
3212
  display: none;
3401
3213
  }
3402
3214
 
3403
- .e-footer-content {
3404
- @if ($schedule-skin == 'material') {
3405
- padding-top: 8px;
3406
- }
3407
-
3408
- @if ($schedule-skin == 'highcontrast' or $schedule-skin == 'fabric') {
3409
- padding-right: 26px;
3410
- }
3411
- }
3412
-
3413
3215
  &.e-rtl {
3414
3216
  .e-all-day-container {
3415
3217
  margin-left: 20px;
@@ -3530,10 +3332,6 @@
3530
3332
  .e-forward-icon {
3531
3333
  cursor: pointer;
3532
3334
  line-height: normal;
3533
-
3534
- @if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
3535
- color: $schedule-tbar-default-icon-color;
3536
- }
3537
3335
  }
3538
3336
 
3539
3337
  .e-save-icon {
@@ -3611,10 +3409,7 @@
3611
3409
  opacity: 1;
3612
3410
  user-select: none;
3613
3411
  width: 100%;
3614
-
3615
- @if ($schedule-skin != 'material') {
3616
- border: 1px solid $schedule-popup-border-color;
3617
- }
3412
+ border: 1px solid $schedule-popup-border-color;
3618
3413
 
3619
3414
  .e-hidden {
3620
3415
  display: none;
@@ -3625,9 +3420,7 @@
3625
3420
  position: absolute;
3626
3421
  right: 6px;
3627
3422
  top: 4px;
3628
- @if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
3629
- padding: 2px 8px 0 0;
3630
- }
3423
+ padding: $schedule-cell-popup-header-icon-padding;
3631
3424
 
3632
3425
  .e-edit,
3633
3426
  .e-delete,
@@ -3653,28 +3446,12 @@
3653
3446
  width: 100%;
3654
3447
 
3655
3448
  .e-schedule-form > span {
3656
- margin-bottom: 4px;
3657
-
3658
- @if ($schedule-skin == 'material') {
3659
- margin-bottom: 8px;
3660
- }
3661
-
3662
- @if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
3663
- margin-top: 14px;
3664
- }
3449
+ margin: $schedule-cell-popup-span-margin;
3665
3450
  }
3666
3451
 
3667
3452
  .e-subject {
3668
3453
  font-size: 22px;
3669
-
3670
- @if ($schedule-skin != 'material') {
3671
- height: 40px;
3672
- }
3673
- @if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
3674
- height: 30px;
3675
- line-height: 22px;
3676
- padding: 2px 10px;
3677
- }
3454
+ height: $schedule-cell-popup-subject-height;
3678
3455
  }
3679
3456
  }
3680
3457
  }
@@ -3682,27 +3459,19 @@
3682
3459
 
3683
3460
  .e-event-popup {
3684
3461
  .e-popup-header {
3685
- @if ($schedule-skin == 'material') {
3686
- background-color: $schedule-appointment-bg-color;
3687
- }
3462
+ background-color: $schedule-event-popup-header-bg-color;
3688
3463
 
3689
3464
  .e-header-icon-wrapper {
3690
3465
  padding: $schedule-event-popup-header-icon-padding;
3691
3466
 
3692
3467
  .e-edit,
3693
3468
  .e-delete {
3694
- display: none;
3695
-
3696
- @if ($schedule-skin == 'material') {
3697
- display: block;
3698
- }
3469
+ display: $schedule-event-popup-header-icon-display;
3699
3470
  }
3700
3471
 
3701
3472
  .e-close {
3702
- @if ($schedule-skin != 'material') {
3703
- position: relative;
3704
- right: 2px;
3705
- }
3473
+ position: $schedule-event-popup-header-close-icon-position;
3474
+ right: $schedule-event-popup-header-close-icon-right;
3706
3475
  }
3707
3476
 
3708
3477
  .e-edit,
@@ -3737,29 +3506,19 @@
3737
3506
  }
3738
3507
 
3739
3508
  .e-subject-wrap {
3740
- padding: $schedule-event-popup-subject-padding;
3509
+ padding: $schedule-event-popup-subject-wrap-padding;
3741
3510
 
3742
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;
3743
3516
  cursor: default;
3744
3517
  font-size: 20px;
3745
3518
  font-weight: 500;
3746
3519
  line-height: 1.5;
3747
3520
  max-height: 87px;
3748
-
3749
- @if ($schedule-skin == 'material' or $schedule-skin == 'highcontrast') {
3750
- color: $schedule-appointment-font-color;
3751
- }
3752
-
3753
- @if ($schedule-skin != 'material') {
3754
- background-color: $schedule-popup-title-color;
3755
- border-left: 6px solid $schedule-appointment-bg-color;
3756
- padding: 8px 0 8px 10px;
3757
- }
3758
-
3759
- @if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
3760
- border-radius: 4px;
3761
- padding: 8px;
3762
- }
3521
+ padding: $schedule-event-popup-subject-padding;
3763
3522
  }
3764
3523
  }
3765
3524
  }
@@ -3799,26 +3558,8 @@
3799
3558
  .e-description-icon,
3800
3559
  .e-resource-icon {
3801
3560
  color: $schedule-popup-content-icon-color;
3802
- font-size: 18px;
3803
- @if ($schedule-skin == 'FluentUI' or $schedule-skin == 'tailwind') {
3804
- padding-right: 12px;
3805
- }
3806
-
3807
- @else {
3808
- padding-right: 13px;
3809
- }
3810
-
3811
- @if ($schedule-skin == 'highcontrast' or $schedule-skin == 'fabric') {
3812
- padding-top: 4px;
3813
- }
3814
- @if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'bootstrap5') {
3815
- font-size: 16px;
3816
- padding: 2px 10px 0 0;
3817
- }
3818
- @if ($schedule-skin == 'tailwind') {
3819
- font-size: 18px;
3820
- padding: 2px 12px 0 0;
3821
- }
3561
+ font-size: $schedule-popup-icon-font-size;
3562
+ padding: $schedule-popup-icon-padding;
3822
3563
  }
3823
3564
 
3824
3565
  .e-date-time-details,
@@ -3841,10 +3582,6 @@
3841
3582
  padding: $schedule-popup-footer-padding;
3842
3583
  text-align: right;
3843
3584
 
3844
- @if ($schedule-skin == 'material') {
3845
- padding-right: 4px;
3846
- }
3847
-
3848
3585
  .e-event-edit {
3849
3586
  margin-right: 8px;
3850
3587
  }
@@ -3853,14 +3590,6 @@
3853
3590
  .e-event-delete {
3854
3591
  right: auto;
3855
3592
 
3856
- @if ($schedule-skin == 'highcontrast') {
3857
- margin-right: 10px;
3858
- }
3859
-
3860
- @if ($schedule-skin == 'fabric' or $schedule-skin == 'bootstrap') {
3861
- margin-right: 8px;
3862
- }
3863
-
3864
3593
  &:disabled {
3865
3594
  color: $schedule-disable-font-color;
3866
3595
  }
@@ -3870,18 +3599,12 @@
3870
3599
  border: $schedule-popup-btn-border;
3871
3600
  margin-right: 8px;
3872
3601
  right: auto;
3873
- text-transform: capitalize;
3874
-
3875
- @if ($schedule-skin == 'material' or $schedule-skin == 'material-dark') {
3876
- text-transform: uppercase;
3877
- }
3602
+ text-transform: $schedule-popup-footer-text-transform;
3878
3603
  }
3879
3604
  }
3880
3605
 
3881
3606
  .e-event-popup .e-popup-footer {
3882
- @if ($schedule-skin == 'material') {
3883
- display: none;
3884
- }
3607
+ display: $schedule-event-popup-footer-display;
3885
3608
  }
3886
3609
 
3887
3610
  &.e-rtl {
@@ -3892,11 +3615,6 @@
3892
3615
  left: 6px;
3893
3616
  right: auto;
3894
3617
  }
3895
-
3896
- .e-popup-footer {
3897
- padding: 8px 18px 8px 8px;
3898
- text-align: left;
3899
- }
3900
3618
  }
3901
3619
 
3902
3620
  .e-popup-content {
@@ -3909,28 +3627,18 @@
3909
3627
  }
3910
3628
  }
3911
3629
 
3912
- .e-event-details {
3630
+ .e-event-details,
3631
+ .e-event-edit {
3913
3632
  margin-left: 8px;
3914
3633
  }
3915
3634
 
3916
- @if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
3917
- .e-popup-footer {
3918
- padding: 8px 8px 8px 18px;
3919
- }
3920
-
3921
- .e-date-time-icon {
3922
- padding: 0 0 0 13px;
3923
- }
3924
-
3925
- .e-event-popup {
3926
- .e-date-time-icon {
3927
- padding: 0 13px;
3928
- }
3929
- }
3635
+ .e-popup-footer {
3636
+ padding: 8px 8px 8px 18px;
3637
+ text-align: left;
3638
+ }
3930
3639
 
3931
- .e-event-edit {
3932
- margin-left: 8px;
3933
- }
3640
+ .e-date-time-icon {
3641
+ padding: 0 0 0 10px;
3934
3642
  }
3935
3643
  }
3936
3644
 
@@ -3948,15 +3656,9 @@
3948
3656
  width: 100%;
3949
3657
  z-index: 1004;
3950
3658
 
3951
- @if ($schedule-skin == 'highcontrast') {
3952
- background-color: $schedule-tbar-default-bg;
3953
- }
3954
-
3955
3659
  .e-event-popup .e-popup-header {
3956
3660
  .e-header-icon-wrapper {
3957
- @if ($schedule-skin != 'material') {
3958
- background-color: $schedule-content-bg-color;
3959
- }
3661
+ background-color: $schedule-header-icon-wrapper-bg-color;
3960
3662
  }
3961
3663
 
3962
3664
  .e-header-icon-wrapper .e-edit,
@@ -3966,18 +3668,13 @@
3966
3668
  &:hover {
3967
3669
  background: none;
3968
3670
  }
3969
- @if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
3970
- opacity: 1;
3971
- }
3972
3671
  }
3973
3672
 
3974
3673
  .e-edit.e-btn.e-small.e-round,
3975
3674
  .e-delete.e-btn.e-small.e-round,
3976
3675
  .e-close.e-btn.e-small.e-round {
3977
- @if ($schedule-skin != 'material') {
3978
- height: 2.5em;
3979
- width: 2.5em;
3980
- }
3676
+ height: 2.5em;
3677
+ width: 2.5em;
3981
3678
  }
3982
3679
 
3983
3680
  .e-edit,
@@ -3992,11 +3689,7 @@
3992
3689
  }
3993
3690
 
3994
3691
  .e-subject-wrap {
3995
- padding: 12px 24px;
3996
-
3997
- @if ($schedule-skin == 'material') {
3998
- padding: 24px;
3999
- }
3692
+ padding: $schedule-device-event-popup-subject-padding;
4000
3693
  }
4001
3694
  }
4002
3695
 
@@ -4011,20 +3704,15 @@
4011
3704
  .e-close,
4012
3705
  .e-edit,
4013
3706
  .e-delete {
4014
- background-color: transparent;
3707
+ background-color: $schedule-multiple-event-popup-icon-bg-color;
4015
3708
  border: 0;
3709
+ color: $schedule-multiple-event-popup-icon-color;
4016
3710
  height: 40px;
4017
3711
  width: 40px;
4018
-
4019
3712
  &:focus,
4020
3713
  &:hover {
4021
3714
  background: none;
4022
3715
  }
4023
-
4024
- @if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
4025
- background-color: $schedule-header-bg-color;
4026
- color: $schedule-popup-header-icon-color;
4027
- }
4028
3716
  }
4029
3717
 
4030
3718
  .e-subject {
@@ -4059,94 +3747,45 @@
4059
3747
  font-size: 24px;
4060
3748
  }
4061
3749
 
4062
- @if ($schedule-skin == 'bootstrap4') {
4063
- .e-cell-popup .e-popup-content {
4064
- padding: 30px 16px;
4065
- }
4066
-
4067
- .e-popup-footer {
4068
- padding: 0 16px 16px 0;
4069
- }
4070
-
4071
- .e-cell-popup .e-date-time-icon,
4072
- .e-event-popup .e-date-time-icon {
4073
-
4074
- @if ($schedule-skin == 'FluentUI') {
4075
- padding-right: 16px;
4076
- }
4077
-
4078
- @else {
4079
- padding-right: 10px;
4080
- }
4081
- }
4082
-
4083
- .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close .e-close-icon {
4084
- font-size: 16px;
3750
+ .e-cell-popup .e-popup-content {
3751
+ padding: $schedule-bgr-cell-popup-content-padding;
3752
+ }
4085
3753
 
4086
- @if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
4087
- font-size: 22px;
4088
- }
4089
- }
3754
+ .e-popup-footer {
3755
+ padding: $schedule-bgr-cell-popup-footer-padding;
3756
+ }
4090
3757
 
4091
- &.e-rtl {
4092
- .e-cell-popup .e-date-time-icon {
4093
- padding-right: 0;
4094
- }
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
+ }
4095
3762
 
4096
- .e-event-popup .e-date-time-icon {
4097
- padding-right: 13px;
4098
- }
4099
- }
3763
+ .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close .e-close-icon {
3764
+ font-size: 16px;
4100
3765
  }
4101
3766
 
4102
- @if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
4103
- .e-cell-popup .e-popup-content {
4104
- padding: 48px 24px 16px;
3767
+ &.e-rtl {
3768
+ .e-cell-popup .e-date-time-icon {
3769
+ padding-right: 0;
4105
3770
  }
4106
3771
 
4107
- .e-cell-popup .e-date-time-icon,
4108
3772
  .e-event-popup .e-date-time-icon {
4109
- padding-right: 16px;
4110
- }
4111
-
4112
- .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close .e-close-icon {
4113
- font-size: 16px;
4114
- }
4115
-
4116
- &.e-rtl {
4117
- .e-cell-popup .e-date-time-icon {
4118
- padding-right: 0;
4119
- }
4120
-
4121
- .e-event-popup .e-date-time-icon {
4122
- padding-right: 16px;
4123
- }
3773
+ padding-right: $schedule-bgr-rtl-event-popup-date-time-icon-padding-right;
4124
3774
  }
4125
3775
  }
4126
3776
 
4127
3777
  .e-edit.e-btn.e-small.e-round,
4128
3778
  .e-delete.e-btn.e-small.e-round,
4129
3779
  .e-close.e-btn.e-small.e-round {
4130
- @if ($schedule-skin != 'material') {
4131
- height: 2em;
4132
- width: 2em;
4133
- }
4134
- }
4135
-
4136
- @if ($schedule-skin == 'FluentUI') {
4137
- .e-event-popup .e-popup-header .e-subject-wrap {
4138
- padding: $schedule-big-event-popup-subject-padding;
4139
- }
3780
+ height: $schedule-bgr-event-popup-header-icon-size;
3781
+ width: $schedule-bgr-event-popup-header-icon-size;
4140
3782
  }
4141
3783
 
4142
3784
  .e-event-popup .e-popup-header .e-header-icon-wrapper {
4143
3785
  .e-close-icon,
4144
3786
  .e-edit-icon,
4145
3787
  .e-delete-icon {
4146
- font-size: 14px;
4147
- @if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
4148
- font-size: 22px;
4149
- }
3788
+ font-size: $schedule-bigger-tbar-btn-font-size;
4150
3789
  }
4151
3790
  }
4152
3791
 
@@ -4161,65 +3800,49 @@
4161
3800
 
4162
3801
  .e-multiple-event-popup .e-popup-header {
4163
3802
  .e-subject {
4164
- padding: 0 5px 0 8px;
4165
- @if ($schedule-skin == 'material') {
4166
- padding: 5px 5px 0 8px;
4167
- }
3803
+ padding: $schedule-multiple-event-popup-subject-padding;
4168
3804
  }
4169
3805
  }
4170
3806
  }
4171
3807
  }
4172
3808
 
4173
- @if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
4174
- .e-bigger .e-more-popup-wrapper {
4175
- padding: 12px 2px 16px;
3809
+ .e-bigger .e-agenda-view {
3810
+ .e-appointment {
3811
+ padding: $schedule-agenda-big-appointment-padding;
3812
+ }
3813
+ .e-subject {
3814
+ font-size: 16px;
4176
3815
  }
4177
- }
4178
3816
 
4179
- .e-bigger .e-agenda-view {
4180
- @if ($schedule-skin == 'FluentUI' or $schedule-skin == 'tailwind') {
4181
- .e-appointment {
4182
- padding: $schedule-agenda-big-appointment-padding;
4183
- }
3817
+ .e-date-time {
3818
+ font-size: 14px;
4184
3819
  }
4185
- @if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
4186
- .e-subject {
4187
- font-size: 16px;
4188
- }
4189
3820
 
4190
- .e-date-time {
4191
- font-size: 14px;
3821
+ .e-day-date-header {
3822
+ .e-m-date {
3823
+ font-size: 20px;
4192
3824
  }
4193
3825
 
4194
- .e-day-date-header {
4195
- .e-m-date {
4196
- font-size: 20px;
4197
- }
4198
-
4199
- .e-m-day {
4200
- font-size: 14px;
4201
- }
3826
+ .e-m-day {
3827
+ font-size: 14px;
4202
3828
  }
4203
3829
  }
4204
3830
  }
4205
3831
 
4206
3832
  .e-bigger .e-timeline-view {
3833
+ .e-resource-text {
3834
+ font-size: 14px;
3835
+ padding-left: 12px;
3836
+ }
4207
3837
 
4208
- @if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
4209
- .e-resource-text {
4210
- font-size: 14px;
4211
- padding-left: 12px;
4212
- }
4213
-
4214
- .e-navigate {
4215
- font-size: $schedule-date-header-wrap-bgr-font-size;
4216
- padding: 8px 0 8px 8px;
4217
- }
3838
+ .e-navigate {
3839
+ font-size: $schedule-date-header-wrap-bgr-font-size;
3840
+ padding: 8px 0 8px 8px;
3841
+ }
4218
3842
 
4219
- .e-date-header-wrap table tbody td > span {
4220
- font-size: $schedule-date-header-wrap-bgr-font-size;
4221
- padding: 8px 0 8px 8px;
4222
- }
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;
4223
3846
  }
4224
3847
  }
4225
3848
 
@@ -4340,12 +3963,7 @@
4340
3963
  height: calc(100% - 35px);
4341
3964
  max-height: 150px;
4342
3965
  overflow-y: auto;
4343
- padding-left: 10px;
4344
- padding-right: 10px;
4345
-
4346
- @if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
4347
- padding: 10px 10px 0;
4348
- }
3966
+ padding: 10px 10px 0;
4349
3967
 
4350
3968
  .e-appointment-border {
4351
3969
  border: 0;
@@ -4392,18 +4010,13 @@
4392
4010
  color: $schedule-popup-icon-color;
4393
4011
  cursor: pointer;
4394
4012
  height: 25px;
4013
+ padding: $schedule-bgr-more-event-close-icon-padding;
4395
4014
  position: absolute;
4396
4015
  right: 6px;
4397
4016
  width: 25px;
4398
- @if ($schedule-skin == 'tailwind') {
4399
- padding: 1px;
4400
- }
4401
4017
 
4402
4018
  .e-close-icon {
4403
- font-size: 9px;
4404
- @if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
4405
- font-size: 14px;
4406
- }
4019
+ font-size: $schedule-more-event-close-icon-font-size;
4407
4020
  }
4408
4021
 
4409
4022
  .e-btn-icon {
@@ -4471,14 +4084,12 @@
4471
4084
  }
4472
4085
 
4473
4086
  &.e-rtl {
4474
- @if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
4475
- .e-header-date {
4476
- padding-right: 10px;
4477
- }
4087
+ .e-header-date {
4088
+ padding-right: 10px;
4089
+ }
4478
4090
 
4479
- .e-header-day {
4480
- padding-right: 10px;
4481
- }
4091
+ .e-header-day {
4092
+ padding-right: 10px;
4482
4093
  }
4483
4094
 
4484
4095
  .e-more-event-close {