@syncfusion/ej2-schedule 19.2.60 → 19.3.48
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.
- package/.eslintrc.json +1 -1
- package/CHANGELOG.md +65 -0
- package/dist/ej2-schedule.umd.min.js +2 -2
- package/dist/ej2-schedule.umd.min.js.map +1 -1
- package/dist/es6/ej2-schedule.es2015.js +445 -164
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +456 -172
- package/dist/es6/ej2-schedule.es5.js.map +1 -1
- package/dist/global/ej2-schedule.min.js +2 -2
- package/dist/global/ej2-schedule.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +15 -15
- package/src/schedule/actions/action-base.js +1 -1
- package/src/schedule/actions/crud.js +3 -2
- package/src/schedule/actions/drag.d.ts +2 -0
- package/src/schedule/actions/drag.js +27 -17
- package/src/schedule/actions/keyboard.js +5 -5
- package/src/schedule/actions/resize.js +17 -10
- package/src/schedule/actions/virtual-scroll.js +2 -1
- package/src/schedule/base/interface.d.ts +9 -0
- package/src/schedule/base/resource.js +12 -3
- package/src/schedule/base/schedule-model.d.ts +13 -1
- package/src/schedule/base/schedule.d.ts +45 -2
- package/src/schedule/base/schedule.js +139 -14
- package/src/schedule/base/type.d.ts +4 -0
- package/src/schedule/event-renderer/event-base.d.ts +2 -1
- package/src/schedule/event-renderer/event-base.js +42 -28
- package/src/schedule/event-renderer/month.d.ts +0 -1
- package/src/schedule/event-renderer/month.js +32 -33
- package/src/schedule/event-renderer/timeline-view.d.ts +2 -0
- package/src/schedule/event-renderer/timeline-view.js +31 -1
- package/src/schedule/event-renderer/vertical-view.js +26 -19
- package/src/schedule/event-renderer/year.js +4 -1
- package/src/schedule/models/event-settings-model.d.ts +21 -1
- package/src/schedule/models/event-settings.d.ts +20 -0
- package/src/schedule/models/event-settings.js +6 -0
- package/src/schedule/models/views-model.d.ts +9 -0
- package/src/schedule/models/views.d.ts +8 -0
- package/src/schedule/models/views.js +3 -0
- package/src/schedule/popups/event-window.d.ts +3 -2
- package/src/schedule/popups/event-window.js +7 -3
- package/src/schedule/popups/form-validator.js +4 -1
- package/src/schedule/popups/quick-popups.d.ts +3 -2
- package/src/schedule/popups/quick-popups.js +32 -13
- package/src/schedule/renderer/agenda.d.ts +1 -0
- package/src/schedule/renderer/agenda.js +20 -3
- package/src/schedule/renderer/header-renderer.d.ts +1 -0
- package/src/schedule/renderer/header-renderer.js +6 -1
- package/src/schedule/renderer/month.d.ts +1 -0
- package/src/schedule/renderer/month.js +7 -7
- package/src/schedule/renderer/timeline-year.js +8 -2
- package/src/schedule/renderer/vertical-view.d.ts +2 -0
- package/src/schedule/renderer/vertical-view.js +19 -8
- package/src/schedule/renderer/view-base.d.ts +2 -1
- package/src/schedule/renderer/view-base.js +11 -3
- package/styles/bootstrap-dark.css +48 -66
- package/styles/bootstrap.css +28 -45
- package/styles/bootstrap4.css +28 -44
- package/styles/bootstrap5-dark.css +5172 -0
- package/styles/bootstrap5-dark.scss +2 -0
- package/styles/bootstrap5.css +5173 -0
- package/styles/bootstrap5.scss +2 -0
- package/styles/fabric-dark.css +29 -61
- package/styles/fabric.css +28 -45
- package/styles/highcontrast-light.css +28 -76
- package/styles/highcontrast.css +30 -49
- package/styles/material-dark.css +72 -79
- package/styles/material.css +32 -45
- package/styles/recurrence-editor/_bootstrap5-dark-definition.scss +1 -0
- package/styles/recurrence-editor/_bootstrap5-definition.scss +8 -0
- package/styles/recurrence-editor/_layout.scss +0 -4
- package/styles/recurrence-editor/_tailwind-dark-definition.scss +1 -8
- package/styles/recurrence-editor/_tailwind-definition.scss +8 -8
- package/styles/recurrence-editor/bootstrap-dark.css +0 -4
- package/styles/recurrence-editor/bootstrap.css +0 -4
- package/styles/recurrence-editor/bootstrap4.css +0 -4
- package/styles/recurrence-editor/bootstrap5-dark.css +479 -0
- package/styles/recurrence-editor/bootstrap5-dark.scss +3 -0
- package/styles/recurrence-editor/bootstrap5.css +479 -0
- package/styles/recurrence-editor/bootstrap5.scss +3 -0
- package/styles/recurrence-editor/fabric-dark.css +0 -4
- package/styles/recurrence-editor/fabric.css +0 -4
- package/styles/recurrence-editor/highcontrast-light.css +0 -4
- package/styles/recurrence-editor/highcontrast.css +0 -4
- package/styles/recurrence-editor/material-dark.css +0 -4
- package/styles/recurrence-editor/material.css +0 -4
- package/styles/recurrence-editor/tailwind-dark.css +0 -4
- package/styles/recurrence-editor/tailwind.css +0 -4
- package/styles/schedule/_bootstrap-dark-definition.scss +6 -6
- package/styles/schedule/_bootstrap-definition.scss +2 -2
- package/styles/schedule/_bootstrap4-definition.scss +6 -5
- package/styles/schedule/_bootstrap5-dark-definition.scss +1 -0
- package/styles/schedule/_bootstrap5-definition.scss +198 -0
- package/styles/schedule/_fabric-dark-definition.scss +3 -3
- package/styles/schedule/_fabric-definition.scss +2 -2
- package/styles/schedule/_highcontrast-definition.scss +3 -3
- package/styles/schedule/_highcontrast-light-definition.scss +2 -2
- package/styles/schedule/_layout.scss +97 -120
- package/styles/schedule/_material-dark-definition.scss +2 -2
- package/styles/schedule/_material-definition.scss +2 -2
- package/styles/schedule/_tailwind-dark-definition.scss +1 -196
- package/styles/schedule/_tailwind-definition.scss +195 -196
- package/styles/schedule/_theme.scss +33 -7
- package/styles/schedule/bootstrap-dark.css +48 -62
- package/styles/schedule/bootstrap.css +28 -41
- package/styles/schedule/bootstrap4.css +28 -40
- package/styles/schedule/bootstrap5-dark.css +4692 -0
- package/styles/schedule/bootstrap5-dark.scss +4 -0
- package/styles/schedule/bootstrap5.css +4693 -0
- package/styles/schedule/bootstrap5.scss +5 -0
- package/styles/schedule/fabric-dark.css +29 -57
- package/styles/schedule/fabric.css +28 -41
- package/styles/schedule/highcontrast-light.css +28 -72
- package/styles/schedule/highcontrast.css +30 -45
- package/styles/schedule/icons/_bootstrap5-dark.scss +1 -0
- package/styles/schedule/icons/_bootstrap5.scss +232 -0
- package/styles/schedule/icons/_tailwind-dark.scss +1 -231
- package/styles/schedule/icons/_tailwind.scss +231 -231
- package/styles/schedule/material-dark.css +72 -75
- package/styles/schedule/material.css +32 -41
- package/styles/schedule/tailwind-dark.css +53 -71
- package/styles/schedule/tailwind-dark.scss +0 -1
- package/styles/schedule/tailwind.css +53 -70
- package/styles/tailwind-dark.css +53 -75
- package/styles/tailwind.css +53 -74
|
@@ -25,60 +25,39 @@
|
|
|
25
25
|
.e-icons {
|
|
26
26
|
color: $schedule-active-font-color;
|
|
27
27
|
}
|
|
28
|
-
}
|
|
29
28
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
29
|
+
@if $schedule-skin == 'bootstrap5' {
|
|
30
|
+
.e-tbar-btn {
|
|
31
|
+
&:active,
|
|
32
|
+
&:focus,
|
|
33
|
+
&:hover {
|
|
34
|
+
.e-tbar-btn-text,
|
|
35
|
+
.e-icons {
|
|
36
|
+
color: $schedule-appointment-font-color;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
34
40
|
}
|
|
35
41
|
}
|
|
36
42
|
|
|
37
43
|
.e-toolbar-pop {
|
|
38
|
-
@if ($schedule-skin != 'tailwind' and $schedule-skin != 'tailwind-dark') {
|
|
39
|
-
background: $schedule-tbar-default-bg;
|
|
40
|
-
}
|
|
41
44
|
overflow: auto;
|
|
42
45
|
}
|
|
43
46
|
|
|
44
47
|
.e-tbar-btn {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
@if $schedule-skin == 'highcontrast' {
|
|
50
|
-
border-color: $schedule-tbar-default-bg;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
&:hover,
|
|
54
|
-
&:focus {
|
|
55
|
-
background-color: $schedule-tbar-hover-bg;
|
|
56
|
-
|
|
57
|
-
@if $schedule-skin == 'highcontrast' {
|
|
58
|
-
border-color: $schedule-tbar-border-hover-color;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
@if $schedule-skin == 'bootstrap4' {
|
|
62
|
-
border-color: $schedule-tbar-border-hover-color;
|
|
63
|
-
}
|
|
48
|
+
.e-tbar-btn-text {
|
|
49
|
+
cursor: pointer;
|
|
50
|
+
font-size: $schedule-content-nrml-font-size;
|
|
51
|
+
text-transform: $schedule-content-nrml-font-text-transform;
|
|
64
52
|
}
|
|
65
53
|
|
|
66
54
|
&:active {
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
@if $schedule-skin == 'bootstrap4' {
|
|
70
|
-
background: $schedule-tbar-hover-bg;
|
|
71
|
-
border-color: $schedule-tbar-border-hover-color;
|
|
55
|
+
@if $schedule-skin == 'material' {
|
|
56
|
+
background: $schedule-select-bg-color;
|
|
72
57
|
}
|
|
73
58
|
}
|
|
74
59
|
}
|
|
75
60
|
|
|
76
|
-
.e-tbar-btn .e-tbar-btn-text {
|
|
77
|
-
cursor: pointer;
|
|
78
|
-
font-size: $schedule-content-nrml-font-size;
|
|
79
|
-
text-transform: $schedule-content-nrml-font-text-transform;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
61
|
.e-toolbar-items {
|
|
83
62
|
background: $schedule-tbar-default-bg;
|
|
84
63
|
|
|
@@ -102,13 +81,8 @@
|
|
|
102
81
|
|
|
103
82
|
.e-toolbar-left {
|
|
104
83
|
.e-tbar-btn.e-icon-btn {
|
|
84
|
+
&:focus ,
|
|
105
85
|
&:hover {
|
|
106
|
-
background: $schedule-header-hover-color;
|
|
107
|
-
border-radius: $schedule-header-hover-border-radius;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
&:focus {
|
|
111
|
-
background: $schedule-header-hover-color;
|
|
112
86
|
border-radius: $schedule-header-hover-border-radius;
|
|
113
87
|
}
|
|
114
88
|
}
|
|
@@ -152,20 +126,12 @@
|
|
|
152
126
|
text-transform: initial;
|
|
153
127
|
}
|
|
154
128
|
|
|
155
|
-
.e-tbar-btn .e-tbar-btn-text {
|
|
156
|
-
cursor: pointer;
|
|
157
|
-
font-size: $schedule-content-nrml-font-size;
|
|
158
|
-
text-transform: $schedule-content-nrml-font-text-transform;
|
|
159
|
-
}
|
|
160
|
-
|
|
161
129
|
.e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
162
|
-
padding-left: 0;
|
|
163
|
-
|
|
164
130
|
@if $schedule-skin == 'bootstrap4' {
|
|
165
131
|
padding-right: 0;
|
|
166
132
|
}
|
|
167
133
|
|
|
168
|
-
@if ($schedule-skin == 'tailwind' or $schedule-skin == '
|
|
134
|
+
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
169
135
|
padding: 0 12px;
|
|
170
136
|
}
|
|
171
137
|
}
|
|
@@ -184,14 +150,6 @@
|
|
|
184
150
|
}
|
|
185
151
|
|
|
186
152
|
.e-hor-nav {
|
|
187
|
-
@if $schedule-skin != 'bootstrap4' {
|
|
188
|
-
background: $schedule-tbar-default-bg;
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'tailwind-dark') {
|
|
192
|
-
font-size: 18px;
|
|
193
|
-
}
|
|
194
|
-
|
|
195
153
|
border-left: $border-size $schedule-tbar-border-nav-type $schedule-tbar-border-nav;
|
|
196
154
|
|
|
197
155
|
&::after {
|
|
@@ -336,7 +294,7 @@
|
|
|
336
294
|
position: absolute;
|
|
337
295
|
width: 250px;
|
|
338
296
|
|
|
339
|
-
@if ($schedule-skin == 'tailwind' or $schedule-skin == '
|
|
297
|
+
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
340
298
|
box-shadow: $schedule-more-indicator-shadow-color;
|
|
341
299
|
color: $schedule-primary-content-font-color;
|
|
342
300
|
}
|
|
@@ -421,6 +379,13 @@
|
|
|
421
379
|
}
|
|
422
380
|
}
|
|
423
381
|
|
|
382
|
+
.e-content-placeholder {
|
|
383
|
+
height: 100%;
|
|
384
|
+
position: relative;
|
|
385
|
+
width: 100%;
|
|
386
|
+
z-index: 99999;
|
|
387
|
+
}
|
|
388
|
+
|
|
424
389
|
.e-content-wrap,
|
|
425
390
|
.e-scroll-container {
|
|
426
391
|
-webkit-overflow-scrolling: touch; // sass-lint:disable-line no-vendor-prefixes
|
|
@@ -797,7 +762,7 @@
|
|
|
797
762
|
line-height: 17px;
|
|
798
763
|
padding-bottom: 4px;
|
|
799
764
|
}
|
|
800
|
-
@if ($schedule-skin == 'tailwind' or $schedule-skin == '
|
|
765
|
+
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
801
766
|
line-height: 18px;
|
|
802
767
|
padding-bottom: 4px;
|
|
803
768
|
}
|
|
@@ -811,7 +776,7 @@
|
|
|
811
776
|
line-height: 21px;
|
|
812
777
|
}
|
|
813
778
|
|
|
814
|
-
@if ($schedule-skin == 'tailwind' or $schedule-skin == '
|
|
779
|
+
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
815
780
|
line-height: 24px;
|
|
816
781
|
}
|
|
817
782
|
|
|
@@ -1072,7 +1037,7 @@
|
|
|
1072
1037
|
flex: auto;
|
|
1073
1038
|
padding: $schedule-appointment-details-padding;
|
|
1074
1039
|
text-align: left;
|
|
1075
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == '
|
|
1040
|
+
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
1076
1041
|
line-height: $schedule-appointment-text-line-height;
|
|
1077
1042
|
}
|
|
1078
1043
|
}
|
|
@@ -1306,7 +1271,7 @@
|
|
|
1306
1271
|
font-weight: 400;
|
|
1307
1272
|
height: $schedule-month-header-cells-nrml-height;
|
|
1308
1273
|
padding: 3px;
|
|
1309
|
-
@if ($schedule-skin == 'bootstrap4'or $schedule-skin == 'tailwind' or $schedule-skin == '
|
|
1274
|
+
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
1310
1275
|
padding: 8px;
|
|
1311
1276
|
}
|
|
1312
1277
|
}
|
|
@@ -1622,7 +1587,7 @@
|
|
|
1622
1587
|
padding: 4px 15px;
|
|
1623
1588
|
text-overflow: ellipsis;
|
|
1624
1589
|
|
|
1625
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == '
|
|
1590
|
+
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
1626
1591
|
padding: 4px 12px;
|
|
1627
1592
|
}
|
|
1628
1593
|
}
|
|
@@ -1647,12 +1612,12 @@
|
|
|
1647
1612
|
border-style: $border-type;
|
|
1648
1613
|
border-width: 0 1px 1px 0;
|
|
1649
1614
|
color: $schedule-primary-content-font-color;
|
|
1650
|
-
height:
|
|
1615
|
+
height: $schedule-timeline-year-work-cells-height;
|
|
1651
1616
|
padding-left: 15px;
|
|
1652
1617
|
padding-right: 0;
|
|
1653
1618
|
vertical-align: middle;
|
|
1654
1619
|
|
|
1655
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == '
|
|
1620
|
+
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
1656
1621
|
padding-left: 12px;
|
|
1657
1622
|
}
|
|
1658
1623
|
|
|
@@ -1693,6 +1658,7 @@
|
|
|
1693
1658
|
border-style: $border-type;
|
|
1694
1659
|
border-width: 0 $border-size $border-size 0;
|
|
1695
1660
|
color: $schedule-primary-content-font-color;
|
|
1661
|
+
padding: 0;
|
|
1696
1662
|
|
|
1697
1663
|
&:hover:not(.e-other-month) {
|
|
1698
1664
|
background: $schedule-hover-bg-color;
|
|
@@ -1790,7 +1756,7 @@
|
|
|
1790
1756
|
border-right: $border-size $border-type $schedule-content-border-color;
|
|
1791
1757
|
text-align: center;
|
|
1792
1758
|
|
|
1793
|
-
@if ($schedule-skin == 'tailwind' or $schedule-skin == '
|
|
1759
|
+
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
1794
1760
|
color: $schedule-header-font-color;
|
|
1795
1761
|
}
|
|
1796
1762
|
|
|
@@ -1986,14 +1952,14 @@
|
|
|
1986
1952
|
padding: 5px;
|
|
1987
1953
|
text-overflow: ellipsis;
|
|
1988
1954
|
white-space: nowrap;
|
|
1989
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == '
|
|
1955
|
+
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
1990
1956
|
padding: 8px 0 8px 8px;
|
|
1991
1957
|
}
|
|
1992
1958
|
}
|
|
1993
1959
|
|
|
1994
1960
|
.e-date-header-wrap table tbody td.e-time-slots {
|
|
1995
1961
|
overflow: inherit;
|
|
1996
|
-
@if ($schedule-skin == 'tailwind' or $schedule-skin == '
|
|
1962
|
+
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
1997
1963
|
background-color: $schedule-tbar-default-bg;
|
|
1998
1964
|
}
|
|
1999
1965
|
}
|
|
@@ -2031,7 +1997,7 @@
|
|
|
2031
1997
|
overflow: hidden;
|
|
2032
1998
|
padding: 4px 15px;
|
|
2033
1999
|
text-overflow: ellipsis;
|
|
2034
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == '
|
|
2000
|
+
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
2035
2001
|
padding: 4px 12px;
|
|
2036
2002
|
}
|
|
2037
2003
|
}
|
|
@@ -2056,18 +2022,12 @@
|
|
|
2056
2022
|
padding-left: 15px;
|
|
2057
2023
|
padding-right: 0;
|
|
2058
2024
|
vertical-align: middle;
|
|
2059
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == '
|
|
2025
|
+
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
2060
2026
|
padding-left: 12px;
|
|
2061
2027
|
}
|
|
2062
2028
|
|
|
2063
2029
|
&:focus {
|
|
2064
2030
|
background-color: $schedule-hover-bg-color;
|
|
2065
|
-
|
|
2066
|
-
.e-resource-tree-icon {
|
|
2067
|
-
background-color: $schedule-popup-icon-hover-bg-color;
|
|
2068
|
-
border-radius: 50%;
|
|
2069
|
-
color: $schedule-popup-icon-hover-color;
|
|
2070
|
-
}
|
|
2071
2031
|
}
|
|
2072
2032
|
}
|
|
2073
2033
|
|
|
@@ -2089,6 +2049,11 @@
|
|
|
2089
2049
|
height: 42px;
|
|
2090
2050
|
}
|
|
2091
2051
|
|
|
2052
|
+
&.e-virtual-mask .e-work-cells {
|
|
2053
|
+
background-color: $schedule-disable-dates-color;
|
|
2054
|
+
box-shadow: inset 0 0 0 8px $schedule-work-cells-bg-color;
|
|
2055
|
+
}
|
|
2056
|
+
|
|
2092
2057
|
.e-resource-tree-icon {
|
|
2093
2058
|
color: $schedule-icon-color;
|
|
2094
2059
|
cursor: pointer;
|
|
@@ -2158,6 +2123,7 @@
|
|
|
2158
2123
|
|
|
2159
2124
|
.e-time {
|
|
2160
2125
|
display: block;
|
|
2126
|
+
line-height: 1.4;
|
|
2161
2127
|
}
|
|
2162
2128
|
|
|
2163
2129
|
.e-disable {
|
|
@@ -2334,6 +2300,7 @@
|
|
|
2334
2300
|
|
|
2335
2301
|
.e-week-number-wrapper .e-week-number {
|
|
2336
2302
|
border-right: $border-size $border-type $schedule-content-border-color;
|
|
2303
|
+
height: 40px;
|
|
2337
2304
|
padding-top: 8px;
|
|
2338
2305
|
}
|
|
2339
2306
|
|
|
@@ -2426,7 +2393,7 @@
|
|
|
2426
2393
|
cursor: default;
|
|
2427
2394
|
padding: 0 8px;
|
|
2428
2395
|
|
|
2429
|
-
@if ($schedule-skin == 'tailwind' or $schedule-skin == '
|
|
2396
|
+
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
2430
2397
|
padding: 0 16px;
|
|
2431
2398
|
}
|
|
2432
2399
|
|
|
@@ -2486,7 +2453,7 @@
|
|
|
2486
2453
|
|
|
2487
2454
|
.e-agenda-item.e-month-agenda-view {
|
|
2488
2455
|
padding: 10px 0;
|
|
2489
|
-
@if ($schedule-skin == 'tailwind'
|
|
2456
|
+
@if ($schedule-skin == 'tailwind') {
|
|
2490
2457
|
padding: 16px 0 0;
|
|
2491
2458
|
}
|
|
2492
2459
|
}
|
|
@@ -2496,7 +2463,7 @@
|
|
|
2496
2463
|
padding: 0;
|
|
2497
2464
|
}
|
|
2498
2465
|
|
|
2499
|
-
.e-appointment-indicator {
|
|
2466
|
+
.e-work-cells .e-appointment-indicator {
|
|
2500
2467
|
background: $schedule-appointment-bg-color;
|
|
2501
2468
|
border-radius: 50%;
|
|
2502
2469
|
height: 6px;
|
|
@@ -2622,7 +2589,7 @@
|
|
|
2622
2589
|
@if ($schedule-skin == 'bootstrap4') {
|
|
2623
2590
|
margin-bottom: 6px;
|
|
2624
2591
|
}
|
|
2625
|
-
@if ($schedule-skin == 'tailwind' or $schedule-skin == '
|
|
2592
|
+
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
2626
2593
|
margin-bottom: 4px;
|
|
2627
2594
|
}
|
|
2628
2595
|
}
|
|
@@ -2812,7 +2779,7 @@
|
|
|
2812
2779
|
.e-toolbar-item {
|
|
2813
2780
|
|
|
2814
2781
|
.e-btn.e-tbar-btn .e-icons.e-btn-icon {
|
|
2815
|
-
@if ($schedule-skin == 'tailwind' or $schedule-skin == '
|
|
2782
|
+
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
2816
2783
|
font-size: 22px;
|
|
2817
2784
|
}
|
|
2818
2785
|
}
|
|
@@ -2858,7 +2825,7 @@
|
|
|
2858
2825
|
|
|
2859
2826
|
.e-icons.e-icon-right {
|
|
2860
2827
|
padding: $schedule-tbar-btn-icn-right-bgr-padding;
|
|
2861
|
-
@if ($schedule-skin == 'tailwind' or $schedule-skin == '
|
|
2828
|
+
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
2862
2829
|
font-size: 22px;
|
|
2863
2830
|
}
|
|
2864
2831
|
}
|
|
@@ -2866,10 +2833,13 @@
|
|
|
2866
2833
|
|
|
2867
2834
|
.e-btn-icon {
|
|
2868
2835
|
height: 25px;
|
|
2836
|
+
@if ($schedule-skin == 'tailwind') {
|
|
2837
|
+
padding-bottom: 2px;
|
|
2838
|
+
}
|
|
2869
2839
|
}
|
|
2870
2840
|
}
|
|
2871
2841
|
|
|
2872
|
-
@if ($schedule-skin == 'tailwind' or $schedule-skin == '
|
|
2842
|
+
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
2873
2843
|
.e-tbar-btn .e-tbar-btn-text {
|
|
2874
2844
|
font-size: $schedule-header-bgr-font-size;
|
|
2875
2845
|
}
|
|
@@ -3111,7 +3081,7 @@
|
|
|
3111
3081
|
padding-bottom: 12px;
|
|
3112
3082
|
position: relative;
|
|
3113
3083
|
|
|
3114
|
-
@if ($schedule-skin == 'tailwind' or $schedule-skin == '
|
|
3084
|
+
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
3115
3085
|
background-color: $schedule-content-bg-color;
|
|
3116
3086
|
}
|
|
3117
3087
|
}
|
|
@@ -3192,7 +3162,7 @@
|
|
|
3192
3162
|
padding-top: 0;
|
|
3193
3163
|
}
|
|
3194
3164
|
|
|
3195
|
-
@if ($schedule-skin == 'tailwind' or $schedule-skin == '
|
|
3165
|
+
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
3196
3166
|
padding-bottom: 12px;
|
|
3197
3167
|
padding-top: 4px;
|
|
3198
3168
|
}
|
|
@@ -3529,7 +3499,7 @@
|
|
|
3529
3499
|
cursor: pointer;
|
|
3530
3500
|
line-height: normal;
|
|
3531
3501
|
|
|
3532
|
-
@if ($schedule-skin == 'tailwind' or $schedule-skin == '
|
|
3502
|
+
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
3533
3503
|
color: $schedule-tbar-default-icon-color;
|
|
3534
3504
|
}
|
|
3535
3505
|
}
|
|
@@ -3613,11 +3583,11 @@
|
|
|
3613
3583
|
@if ($schedule-skin != 'material') {
|
|
3614
3584
|
border: 1px solid $schedule-popup-border-color;
|
|
3615
3585
|
}
|
|
3616
|
-
@if ($schedule-skin != 'material' and $schedule-skin == 'tailwind' and $schedule-skin == '
|
|
3586
|
+
@if ($schedule-skin != 'material' and $schedule-skin == 'tailwind' and $schedule-skin == 'bootstrap5') {
|
|
3617
3587
|
box-shadow: none;
|
|
3618
3588
|
}
|
|
3619
3589
|
|
|
3620
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == '
|
|
3590
|
+
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
3621
3591
|
border-radius: 6px;
|
|
3622
3592
|
}
|
|
3623
3593
|
|
|
@@ -3630,7 +3600,7 @@
|
|
|
3630
3600
|
position: absolute;
|
|
3631
3601
|
right: 6px;
|
|
3632
3602
|
top: 4px;
|
|
3633
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == '
|
|
3603
|
+
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
3634
3604
|
padding: 2px 8px 0 0;
|
|
3635
3605
|
}
|
|
3636
3606
|
|
|
@@ -3643,16 +3613,20 @@
|
|
|
3643
3613
|
&:hover {
|
|
3644
3614
|
background: $schedule-popup-icon-hover-bg-color;
|
|
3645
3615
|
color: $schedule-popup-icon-hover-color;
|
|
3616
|
+
@if ($schedule-skin == 'bootstrap5') {
|
|
3617
|
+
background: $schedule-active-color;
|
|
3618
|
+
color: $schedule-popup-header-icon-hover-color;
|
|
3619
|
+
}
|
|
3646
3620
|
}
|
|
3647
3621
|
|
|
3648
3622
|
.e-close-icon {
|
|
3649
3623
|
font-size: 11px;
|
|
3650
3624
|
|
|
3651
|
-
@if ($schedule-skin == 'bootstrap4') {
|
|
3625
|
+
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'bootstrap5') {
|
|
3652
3626
|
font-size: 14px;
|
|
3653
3627
|
}
|
|
3654
3628
|
|
|
3655
|
-
@if ($schedule-skin == 'tailwind'
|
|
3629
|
+
@if ($schedule-skin == 'tailwind') {
|
|
3656
3630
|
font-size: 18px;
|
|
3657
3631
|
}
|
|
3658
3632
|
}
|
|
@@ -3672,7 +3646,7 @@
|
|
|
3672
3646
|
margin-bottom: 8px;
|
|
3673
3647
|
}
|
|
3674
3648
|
|
|
3675
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == '
|
|
3649
|
+
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
3676
3650
|
margin-top: 14px;
|
|
3677
3651
|
}
|
|
3678
3652
|
}
|
|
@@ -3683,7 +3657,7 @@
|
|
|
3683
3657
|
@if ($schedule-skin != 'material') {
|
|
3684
3658
|
height: 40px;
|
|
3685
3659
|
}
|
|
3686
|
-
@if ($schedule-skin == 'tailwind' or $schedule-skin == '
|
|
3660
|
+
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
3687
3661
|
height: 30px;
|
|
3688
3662
|
line-height: 22px;
|
|
3689
3663
|
padding: 2px 10px;
|
|
@@ -3734,11 +3708,11 @@
|
|
|
3734
3708
|
.e-delete-icon,
|
|
3735
3709
|
.e-close-icon {
|
|
3736
3710
|
font-size: 11px;
|
|
3737
|
-
@if ($schedule-skin == 'bootstrap4') {
|
|
3711
|
+
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'bootstrap5') {
|
|
3738
3712
|
font-size: 14px;
|
|
3739
3713
|
}
|
|
3740
3714
|
|
|
3741
|
-
@if ($schedule-skin == 'tailwind'
|
|
3715
|
+
@if ($schedule-skin == 'tailwind') {
|
|
3742
3716
|
font-size: 18px;
|
|
3743
3717
|
}
|
|
3744
3718
|
}
|
|
@@ -3776,7 +3750,7 @@
|
|
|
3776
3750
|
padding: 8px 0 8px 10px;
|
|
3777
3751
|
}
|
|
3778
3752
|
|
|
3779
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == '
|
|
3753
|
+
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
3780
3754
|
border-radius: 4px;
|
|
3781
3755
|
padding: 8px;
|
|
3782
3756
|
}
|
|
@@ -3825,11 +3799,11 @@
|
|
|
3825
3799
|
@if ($schedule-skin == 'highcontrast' or $schedule-skin == 'fabric') {
|
|
3826
3800
|
padding-top: 4px;
|
|
3827
3801
|
}
|
|
3828
|
-
@if ($schedule-skin == 'bootstrap4') {
|
|
3802
|
+
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'bootstrap5') {
|
|
3829
3803
|
font-size: 16px;
|
|
3830
3804
|
padding: 2px 10px 0 0;
|
|
3831
3805
|
}
|
|
3832
|
-
@if ($schedule-skin == 'tailwind'
|
|
3806
|
+
@if ($schedule-skin == 'tailwind') {
|
|
3833
3807
|
font-size: 18px;
|
|
3834
3808
|
padding: 2px 12px 0 0;
|
|
3835
3809
|
}
|
|
@@ -3859,7 +3833,7 @@
|
|
|
3859
3833
|
padding-right: 4px;
|
|
3860
3834
|
}
|
|
3861
3835
|
|
|
3862
|
-
@if ($schedule-skin == 'tailwind' or $schedule-skin == '
|
|
3836
|
+
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
3863
3837
|
background-color: $schedule-work-cells-bg-color;
|
|
3864
3838
|
border-radius: 0 0 6px 6px;
|
|
3865
3839
|
}
|
|
@@ -3923,7 +3897,7 @@
|
|
|
3923
3897
|
margin-right: 10px;
|
|
3924
3898
|
}
|
|
3925
3899
|
}
|
|
3926
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == '
|
|
3900
|
+
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
3927
3901
|
.e-popup-footer {
|
|
3928
3902
|
padding: 8px 8px 8px 18px;
|
|
3929
3903
|
}
|
|
@@ -3980,7 +3954,7 @@
|
|
|
3980
3954
|
&:hover {
|
|
3981
3955
|
background: none;
|
|
3982
3956
|
}
|
|
3983
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == '
|
|
3957
|
+
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
3984
3958
|
opacity: 1;
|
|
3985
3959
|
}
|
|
3986
3960
|
}
|
|
@@ -4035,7 +4009,7 @@
|
|
|
4035
4009
|
background: none;
|
|
4036
4010
|
}
|
|
4037
4011
|
|
|
4038
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == '
|
|
4012
|
+
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
4039
4013
|
background-color: $schedule-header-bg-color;
|
|
4040
4014
|
color: $schedule-popup-header-icon-color;
|
|
4041
4015
|
}
|
|
@@ -4090,7 +4064,7 @@
|
|
|
4090
4064
|
.e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close .e-close-icon {
|
|
4091
4065
|
font-size: 16px;
|
|
4092
4066
|
|
|
4093
|
-
@if ($schedule-skin == 'tailwind' or $schedule-skin == '
|
|
4067
|
+
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
4094
4068
|
font-size: 22px;
|
|
4095
4069
|
}
|
|
4096
4070
|
}
|
|
@@ -4106,7 +4080,7 @@
|
|
|
4106
4080
|
}
|
|
4107
4081
|
}
|
|
4108
4082
|
|
|
4109
|
-
@if ($schedule-skin == 'tailwind' or $schedule-skin == '
|
|
4083
|
+
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
4110
4084
|
.e-cell-popup .e-popup-content {
|
|
4111
4085
|
padding: 48px 24px 16px;
|
|
4112
4086
|
}
|
|
@@ -4149,7 +4123,7 @@
|
|
|
4149
4123
|
.e-edit-icon,
|
|
4150
4124
|
.e-delete-icon {
|
|
4151
4125
|
font-size: 14px;
|
|
4152
|
-
@if ($schedule-skin == 'tailwind' or $schedule-skin == '
|
|
4126
|
+
@if ($schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
4153
4127
|
font-size: 22px;
|
|
4154
4128
|
}
|
|
4155
4129
|
}
|
|
@@ -4175,14 +4149,14 @@
|
|
|
4175
4149
|
}
|
|
4176
4150
|
}
|
|
4177
4151
|
|
|
4178
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == '
|
|
4152
|
+
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
4179
4153
|
.e-bigger .e-more-popup-wrapper {
|
|
4180
4154
|
padding: 12px 2px 16px;
|
|
4181
4155
|
}
|
|
4182
4156
|
}
|
|
4183
4157
|
|
|
4184
4158
|
.e-bigger .e-agenda-view {
|
|
4185
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == '
|
|
4159
|
+
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
4186
4160
|
.e-subject {
|
|
4187
4161
|
font-size: 16px;
|
|
4188
4162
|
}
|
|
@@ -4205,11 +4179,7 @@
|
|
|
4205
4179
|
|
|
4206
4180
|
.e-bigger .e-timeline-view {
|
|
4207
4181
|
|
|
4208
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == '
|
|
4209
|
-
.e-resource-cells {
|
|
4210
|
-
padding: 14px 0 14px 12px;
|
|
4211
|
-
}
|
|
4212
|
-
|
|
4182
|
+
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
4213
4183
|
.e-resource-text {
|
|
4214
4184
|
font-size: 14px;
|
|
4215
4185
|
padding-left: 12px;
|
|
@@ -4322,7 +4292,7 @@
|
|
|
4322
4292
|
padding: $schedule-more-popup-padding;
|
|
4323
4293
|
width: 225px;
|
|
4324
4294
|
|
|
4325
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == '
|
|
4295
|
+
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
4326
4296
|
border-radius: 6px;
|
|
4327
4297
|
box-shadow: none;
|
|
4328
4298
|
}
|
|
@@ -4352,7 +4322,7 @@
|
|
|
4352
4322
|
padding-left: 10px;
|
|
4353
4323
|
padding-right: 10px;
|
|
4354
4324
|
|
|
4355
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == '
|
|
4325
|
+
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
4356
4326
|
padding: 10px 10px 0;
|
|
4357
4327
|
}
|
|
4358
4328
|
|
|
@@ -4404,10 +4374,13 @@
|
|
|
4404
4374
|
position: absolute;
|
|
4405
4375
|
right: 6px;
|
|
4406
4376
|
width: 25px;
|
|
4377
|
+
@if ($schedule-skin == 'tailwind') {
|
|
4378
|
+
padding: 1px;
|
|
4379
|
+
}
|
|
4407
4380
|
|
|
4408
4381
|
.e-close-icon {
|
|
4409
4382
|
font-size: 9px;
|
|
4410
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == '
|
|
4383
|
+
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
4411
4384
|
font-size: 14px;
|
|
4412
4385
|
}
|
|
4413
4386
|
}
|
|
@@ -4421,6 +4394,10 @@
|
|
|
4421
4394
|
background-color: $schedule-popup-icon-hover-bg-color;
|
|
4422
4395
|
border-radius: 50%;
|
|
4423
4396
|
color: $schedule-popup-icon-hover-color;
|
|
4397
|
+
@if ($schedule-skin == 'bootstrap5') {
|
|
4398
|
+
background: $schedule-active-color;
|
|
4399
|
+
color: $schedule-popup-header-icon-hover-color;
|
|
4400
|
+
}
|
|
4424
4401
|
}
|
|
4425
4402
|
}
|
|
4426
4403
|
|
|
@@ -4477,7 +4454,7 @@
|
|
|
4477
4454
|
}
|
|
4478
4455
|
|
|
4479
4456
|
&.e-rtl {
|
|
4480
|
-
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == '
|
|
4457
|
+
@if ($schedule-skin == 'bootstrap4' or $schedule-skin == 'tailwind' or $schedule-skin == 'bootstrap5') {
|
|
4481
4458
|
.e-header-date {
|
|
4482
4459
|
padding-right: 10px;
|
|
4483
4460
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*! Schedule component's material theme definitions and variables */
|
|
2
|
-
$schedule-skin:
|
|
2
|
+
$schedule-skin: $skin-name !default;
|
|
3
3
|
$schedule-header-bg-color: $grey-dark !default;
|
|
4
4
|
$schedule-header-border-color: $grey-700 !default;
|
|
5
5
|
$schedule-header-font-color: $grey-dark-font !default;
|
|
@@ -164,7 +164,7 @@ $schedule-timeline-work-cells-border: 0 0 1px 1px !default;
|
|
|
164
164
|
$schedule-rtl-timeline-work-cells-border: 0 1px 1px 0 !default;
|
|
165
165
|
$schedule-timeline-resources-width: 200px !default;
|
|
166
166
|
$schedule-timeline-appointment-height: 38px !default;
|
|
167
|
-
$schedule-timeline-year-work-cells-height:
|
|
167
|
+
$schedule-timeline-year-work-cells-height: 75px !default;
|
|
168
168
|
$schedule-timeline-year-work-cells-width: 100px !default;
|
|
169
169
|
|
|
170
170
|
$schedule-tree-bg-color: $grey-dark !default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*! Schedule component's material theme definitions and variables */
|
|
2
|
-
$schedule-skin:
|
|
2
|
+
$schedule-skin: $skin-name !default;
|
|
3
3
|
$schedule-header-bg-color: $grey-white !default;
|
|
4
4
|
$schedule-header-border-color: rgba($grey-light-font, .12) !default;
|
|
5
5
|
$schedule-header-font-color: rgba($grey-light-font, .87) !default;
|
|
@@ -164,7 +164,7 @@ $schedule-timeline-work-cells-border: 0 0 1px 1px !default;
|
|
|
164
164
|
$schedule-rtl-timeline-work-cells-border: 0 1px 1px 0 !default;
|
|
165
165
|
$schedule-timeline-resources-width: 200px !default;
|
|
166
166
|
$schedule-timeline-appointment-height: 38px !default;
|
|
167
|
-
$schedule-timeline-year-work-cells-height:
|
|
167
|
+
$schedule-timeline-year-work-cells-height: 75px !default;
|
|
168
168
|
$schedule-timeline-year-work-cells-width: 100px !default;
|
|
169
169
|
|
|
170
170
|
$schedule-tree-bg-color: $content-bg-color !default;
|