@syncfusion/ej2-dropdowns 27.2.4 → 28.1.33
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/README.md +2 -2
- package/dist/ej2-dropdowns.min.js +3 -3
- package/dist/ej2-dropdowns.umd.min.js +3 -3
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +507 -39
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +506 -37
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +3 -3
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +2 -2
- package/package.json +13 -13
- package/src/auto-complete/auto-complete.js +5 -2
- package/src/combo-box/combo-box.js +1 -1
- package/src/common/incremental-search.d.ts +1 -1
- package/src/common/incremental-search.js +5 -1
- package/src/common/virtual-scroll.js +2 -1
- package/src/drop-down-base/drop-down-base.js +21 -3
- package/src/drop-down-list/drop-down-list-model.d.ts +31 -0
- package/src/drop-down-list/drop-down-list.d.ts +44 -1
- package/src/drop-down-list/drop-down-list.js +202 -13
- package/src/drop-down-tree/drop-down-tree.js +4 -1
- package/src/list-box/list-box.d.ts +4 -0
- package/src/list-box/list-box.js +9 -4
- package/src/mention/mention.js +6 -1
- package/src/multi-select/multi-select-model.d.ts +31 -0
- package/src/multi-select/multi-select.d.ts +45 -0
- package/src/multi-select/multi-select.js +251 -10
- package/styles/auto-complete/_tailwind3-definition.scss +2 -0
- package/styles/auto-complete/bds.css +75 -0
- package/styles/auto-complete/bds.scss +4 -0
- package/styles/auto-complete/highcontrast.css +1 -1
- package/styles/auto-complete/tailwind3.css +101 -0
- package/styles/auto-complete/tailwind3.scss +4 -0
- package/styles/bds-lite.css +3013 -0
- package/styles/bds-lite.scss +28 -0
- package/styles/bds.css +3855 -0
- package/styles/bds.scss +33 -0
- package/styles/bootstrap-dark-lite.css +41 -2
- package/styles/bootstrap-dark.css +41 -2
- package/styles/bootstrap-lite.css +30 -1
- package/styles/bootstrap.css +30 -1
- package/styles/bootstrap4-lite.css +30 -0
- package/styles/bootstrap4.css +30 -0
- package/styles/bootstrap5-dark-lite.css +30 -0
- package/styles/bootstrap5-dark.css +30 -0
- package/styles/bootstrap5-lite.css +30 -0
- package/styles/bootstrap5.3-lite.css +30 -3
- package/styles/bootstrap5.3.css +30 -3
- package/styles/bootstrap5.css +30 -0
- package/styles/combo-box/_tailwind3-definition.scss +2 -0
- package/styles/combo-box/bds.css +75 -0
- package/styles/combo-box/bds.scss +4 -0
- package/styles/combo-box/highcontrast.css +1 -1
- package/styles/combo-box/tailwind3.css +101 -0
- package/styles/combo-box/tailwind3.scss +4 -0
- package/styles/drop-down-base/_bigger.scss +3 -0
- package/styles/drop-down-base/_layout.scss +7 -0
- package/styles/drop-down-base/_tailwind3-definition.scss +98 -0
- package/styles/drop-down-base/bds.css +496 -0
- package/styles/drop-down-base/bds.scss +4 -0
- package/styles/drop-down-base/bootstrap-dark.css +4 -0
- package/styles/drop-down-base/bootstrap.css +4 -0
- package/styles/drop-down-base/bootstrap4.css +4 -0
- package/styles/drop-down-base/bootstrap5-dark.css +4 -0
- package/styles/drop-down-base/bootstrap5.3.css +4 -0
- package/styles/drop-down-base/bootstrap5.css +4 -0
- package/styles/drop-down-base/fabric-dark.css +4 -0
- package/styles/drop-down-base/fabric.css +4 -0
- package/styles/drop-down-base/fluent-dark.css +4 -0
- package/styles/drop-down-base/fluent.css +4 -0
- package/styles/drop-down-base/fluent2.css +9 -5
- package/styles/drop-down-base/highcontrast-light.css +4 -0
- package/styles/drop-down-base/highcontrast.css +4 -0
- package/styles/drop-down-base/material-dark.css +4 -0
- package/styles/drop-down-base/material.css +4 -0
- package/styles/drop-down-base/material3-dark.css +4 -0
- package/styles/drop-down-base/material3.css +4 -0
- package/styles/drop-down-base/tailwind-dark.css +4 -0
- package/styles/drop-down-base/tailwind.css +4 -0
- package/styles/drop-down-base/tailwind3.css +392 -0
- package/styles/drop-down-base/tailwind3.scss +4 -0
- package/styles/drop-down-list/_highcontrast-definition.scss +1 -1
- package/styles/drop-down-list/_layout.scss +18 -2
- package/styles/drop-down-list/_tailwind3-definition.scss +135 -0
- package/styles/drop-down-list/_theme.scss +3 -1
- package/styles/drop-down-list/bds.css +609 -0
- package/styles/drop-down-list/bds.scss +10 -0
- package/styles/drop-down-list/bootstrap-dark.css +18 -1
- package/styles/drop-down-list/bootstrap.css +13 -1
- package/styles/drop-down-list/bootstrap4.css +13 -0
- package/styles/drop-down-list/bootstrap5-dark.css +13 -0
- package/styles/drop-down-list/bootstrap5.3.css +13 -0
- package/styles/drop-down-list/bootstrap5.css +13 -0
- package/styles/drop-down-list/fabric-dark.css +18 -1
- package/styles/drop-down-list/fabric.css +13 -1
- package/styles/drop-down-list/fluent-dark.css +13 -1
- package/styles/drop-down-list/fluent.css +13 -1
- package/styles/drop-down-list/fluent2.css +13 -1
- package/styles/drop-down-list/highcontrast-light.css +9 -1
- package/styles/drop-down-list/highcontrast.css +19 -1
- package/styles/drop-down-list/icons/_bootstrap-dark.scss +4 -0
- package/styles/drop-down-list/icons/_bootstrap.scss +4 -0
- package/styles/drop-down-list/icons/_bootstrap4.scss +4 -0
- package/styles/drop-down-list/icons/_bootstrap5.3.scss +4 -0
- package/styles/drop-down-list/icons/_bootstrap5.scss +4 -0
- package/styles/drop-down-list/icons/_fabric-dark.scss +4 -0
- package/styles/drop-down-list/icons/_fabric.scss +4 -0
- package/styles/drop-down-list/icons/_fluent.scss +4 -0
- package/styles/drop-down-list/icons/_fluent2.scss +4 -0
- package/styles/drop-down-list/icons/_highcontrast.scss +4 -0
- package/styles/drop-down-list/icons/_material-dark.scss +4 -0
- package/styles/drop-down-list/icons/_material.scss +4 -0
- package/styles/drop-down-list/icons/_material3.scss +4 -0
- package/styles/drop-down-list/icons/_tailwind.scss +4 -0
- package/styles/drop-down-list/icons/_tailwind3.scss +14 -0
- package/styles/drop-down-list/material-dark.css +18 -1
- package/styles/drop-down-list/material.css +13 -1
- package/styles/drop-down-list/material3-dark.css +13 -1
- package/styles/drop-down-list/material3.css +13 -1
- package/styles/drop-down-list/tailwind-dark.css +13 -1
- package/styles/drop-down-list/tailwind.css +13 -1
- package/styles/drop-down-list/tailwind3.css +455 -0
- package/styles/drop-down-list/tailwind3.scss +10 -0
- package/styles/drop-down-tree/_bigger.scss +41 -7
- package/styles/drop-down-tree/_layout.scss +34 -10
- package/styles/drop-down-tree/_tailwind3-definition.scss +67 -0
- package/styles/drop-down-tree/_theme.scss +3 -3
- package/styles/drop-down-tree/bds.css +712 -0
- package/styles/drop-down-tree/bds.scss +10 -0
- package/styles/drop-down-tree/bootstrap5.3.css +0 -3
- package/styles/drop-down-tree/icons/_tailwind3.scss +11 -0
- package/styles/drop-down-tree/tailwind3.css +512 -0
- package/styles/drop-down-tree/tailwind3.scss +10 -0
- package/styles/fabric-dark-lite.css +40 -1
- package/styles/fabric-dark.css +40 -1
- package/styles/fabric-lite.css +30 -1
- package/styles/fabric.css +30 -1
- package/styles/fluent-dark-lite.css +30 -1
- package/styles/fluent-dark.css +30 -1
- package/styles/fluent-lite.css +30 -1
- package/styles/fluent.css +30 -1
- package/styles/fluent2-lite.css +45 -12
- package/styles/fluent2.css +45 -12
- package/styles/highcontrast-light-lite.css +22 -1
- package/styles/highcontrast-light.css +22 -1
- package/styles/highcontrast-lite.css +41 -1
- package/styles/highcontrast.css +41 -1
- package/styles/list-box/_bigger.scss +18 -1
- package/styles/list-box/_layout.scss +29 -3
- package/styles/list-box/_tailwind3-definition.scss +123 -0
- package/styles/list-box/_theme.scss +11 -0
- package/styles/list-box/bds.css +971 -0
- package/styles/list-box/bds.scss +6 -0
- package/styles/list-box/fluent2.css +1 -1
- package/styles/list-box/icons/_tailwind3.scss +25 -0
- package/styles/list-box/tailwind3.css +991 -0
- package/styles/list-box/tailwind3.scss +6 -0
- package/styles/material-dark-lite.css +40 -1
- package/styles/material-dark.css +40 -1
- package/styles/material-lite.css +30 -1
- package/styles/material.css +30 -1
- package/styles/material3-dark-lite.css +36 -9
- package/styles/material3-dark.css +36 -9
- package/styles/material3-lite.css +36 -9
- package/styles/material3.css +36 -9
- package/styles/mention/_tailwind3-definition.scss +1 -0
- package/styles/mention/bds.css +78 -0
- package/styles/mention/bds.scss +6 -0
- package/styles/mention/tailwind3.css +67 -0
- package/styles/mention/tailwind3.scss +6 -0
- package/styles/multi-select/_bigger.scss +2 -2
- package/styles/multi-select/_bootstrap-dark-definition.scss +1 -1
- package/styles/multi-select/_layout.scss +27 -2
- package/styles/multi-select/_material3-definition.scss +2 -2
- package/styles/multi-select/_tailwind3-definition.scss +227 -0
- package/styles/multi-select/_theme.scss +1 -1
- package/styles/multi-select/bds.css +1575 -0
- package/styles/multi-select/bds.scss +10 -0
- package/styles/multi-select/bootstrap-dark.css +19 -1
- package/styles/multi-select/bootstrap.css +13 -0
- package/styles/multi-select/bootstrap4.css +13 -0
- package/styles/multi-select/bootstrap5-dark.css +13 -0
- package/styles/multi-select/bootstrap5.3.css +13 -0
- package/styles/multi-select/bootstrap5.css +13 -0
- package/styles/multi-select/fabric-dark.css +18 -0
- package/styles/multi-select/fabric.css +13 -0
- package/styles/multi-select/fluent-dark.css +13 -0
- package/styles/multi-select/fluent.css +13 -0
- package/styles/multi-select/fluent2.css +22 -5
- package/styles/multi-select/highcontrast-light.css +9 -0
- package/styles/multi-select/highcontrast.css +18 -0
- package/styles/multi-select/icons/_bootstrap-dark.scss +4 -0
- package/styles/multi-select/icons/_bootstrap.scss +4 -0
- package/styles/multi-select/icons/_bootstrap4.scss +4 -0
- package/styles/multi-select/icons/_bootstrap5.3.scss +4 -0
- package/styles/multi-select/icons/_bootstrap5.scss +4 -0
- package/styles/multi-select/icons/_fabric-dark.scss +4 -0
- package/styles/multi-select/icons/_fabric.scss +4 -0
- package/styles/multi-select/icons/_fluent.scss +4 -0
- package/styles/multi-select/icons/_fluent2.scss +4 -0
- package/styles/multi-select/icons/_highcontrast.scss +4 -0
- package/styles/multi-select/icons/_material-dark.scss +4 -0
- package/styles/multi-select/icons/_material.scss +4 -0
- package/styles/multi-select/icons/_material3.scss +4 -0
- package/styles/multi-select/icons/_tailwind.scss +4 -0
- package/styles/multi-select/icons/_tailwind3.scss +26 -0
- package/styles/multi-select/material-dark.css +18 -0
- package/styles/multi-select/material.css +13 -0
- package/styles/multi-select/material3-dark.css +19 -8
- package/styles/multi-select/material3.css +19 -8
- package/styles/multi-select/tailwind-dark.css +13 -0
- package/styles/multi-select/tailwind.css +13 -0
- package/styles/multi-select/tailwind3.css +1398 -0
- package/styles/multi-select/tailwind3.scss +10 -0
- package/styles/tailwind-dark-lite.css +30 -1
- package/styles/tailwind-dark.css +30 -1
- package/styles/tailwind-lite.css +30 -1
- package/styles/tailwind.css +30 -1
- package/styles/tailwind3-lite.css +2889 -0
- package/styles/tailwind3-lite.scss +28 -0
- package/styles/tailwind3.css +3550 -0
- package/styles/tailwind3.scss +33 -0
|
@@ -0,0 +1,392 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
.e-dropdownbase .e-list-group-item,
|
|
6
|
+
.e-fixed-head {
|
|
7
|
+
font-size: 12px;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.e-small .e-dropdownbase .e-list-group-item,
|
|
11
|
+
.e-small .e-fixed-head,
|
|
12
|
+
.e-small.e-dropdownbase .e-list-group-item,
|
|
13
|
+
.e-small.e-fixed-head {
|
|
14
|
+
font-size: 10px;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.e-dropdownbase .e-list-item .e-list-icon {
|
|
18
|
+
padding: 0 8px 0 0;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.e-small .e-dropdownbase .e-list-item .e-list-icon {
|
|
22
|
+
padding: 0 6px 0 0;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.e-dropdownbase {
|
|
26
|
+
display: block;
|
|
27
|
+
height: 100%;
|
|
28
|
+
min-height: 36px;
|
|
29
|
+
position: relative;
|
|
30
|
+
width: 100%;
|
|
31
|
+
}
|
|
32
|
+
.e-dropdownbase .e-list-parent {
|
|
33
|
+
margin: 0;
|
|
34
|
+
padding: 0;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.e-dropdownbase .e-list-group-item, .e-dropdownbase .e-fixed-head {
|
|
38
|
+
cursor: default;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.e-dropdownbase .e-list-item {
|
|
42
|
+
cursor: pointer;
|
|
43
|
+
overflow: hidden;
|
|
44
|
+
position: relative;
|
|
45
|
+
text-overflow: ellipsis;
|
|
46
|
+
vertical-align: middle;
|
|
47
|
+
white-space: nowrap;
|
|
48
|
+
width: 100%;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.e-dropdownbase .e-list-item .e-list-icon {
|
|
52
|
+
font-size: 16px;
|
|
53
|
+
vertical-align: middle;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.e-dropdownbase .e-fixed-head {
|
|
57
|
+
position: absolute;
|
|
58
|
+
top: 0;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.e-dropdownbase.e-content {
|
|
62
|
+
overflow: auto;
|
|
63
|
+
position: relative;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.e-popup.e-ddl .e-dropdownbase.e-nodata,
|
|
67
|
+
.e-popup.e-mention .e-dropdownbase.e-nodata {
|
|
68
|
+
color: var(--color-sf-content-text-color);
|
|
69
|
+
cursor: default;
|
|
70
|
+
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", arial, "Noto Sans", "Liberation Sans", sans-serif, "apple color emoji", "Segoe UI emoji", "Segoe UI Symbol", "Noto color emoji";
|
|
71
|
+
font-size: 14px;
|
|
72
|
+
padding: 14px 16px;
|
|
73
|
+
text-align: center;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.e-mention.e-popup {
|
|
77
|
+
background: var(--color-sf-content-bg-color);
|
|
78
|
+
border: 0;
|
|
79
|
+
-webkit-box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
80
|
+
box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
81
|
+
margin-top: 2px;
|
|
82
|
+
position: absolute;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.e-mention.e-popup .e-dropdownbase {
|
|
86
|
+
min-height: 32px;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
90
|
+
display: inline;
|
|
91
|
+
font-weight: bold;
|
|
92
|
+
vertical-align: baseline;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.e-mention .e-mention-chip,
|
|
96
|
+
.e-mention .e-mention-chip:hover {
|
|
97
|
+
background: var(--color-sf-content-bg-color-alt2);
|
|
98
|
+
border-radius: 2px;
|
|
99
|
+
border: none;
|
|
100
|
+
color: var(--color-sf-primary);
|
|
101
|
+
cursor: default;
|
|
102
|
+
font-weight: 500;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.e-mention.e-editable-element {
|
|
106
|
+
border: 2px solid var(--color-sf-border-light);
|
|
107
|
+
height: auto;
|
|
108
|
+
min-height: 120px;
|
|
109
|
+
width: 100%;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.e-form-mirror-div {
|
|
113
|
+
white-space: pre-wrap;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.e-rtl .e-dropdownbase.e-dd-group .e-list-item {
|
|
117
|
+
padding-right: 12px;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.e-dropdownbase.e-dd-group .e-list-item {
|
|
121
|
+
padding-left: 12px;
|
|
122
|
+
text-indent: 0;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.e-small .e-dropdownbase.e-dd-group .e-list-item {
|
|
126
|
+
padding-left: 8px;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.e-popup.e-multi-select-list-wrapper.e-multiselect-group .e-dropdownbase.e-dd-group .e-list-group-item {
|
|
130
|
+
text-indent: 0;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.e-popup.e-multi-select-list-wrapper.e-multiselect-group .e-dropdownbase.e-dd-group .e-list-group-item {
|
|
134
|
+
cursor: pointer;
|
|
135
|
+
font-weight: normal;
|
|
136
|
+
overflow: hidden;
|
|
137
|
+
position: relative;
|
|
138
|
+
text-overflow: ellipsis;
|
|
139
|
+
vertical-align: middle;
|
|
140
|
+
white-space: nowrap;
|
|
141
|
+
width: 100%;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.e-rtl.e-multiselect-group .e-dropdownbase.e-dd-group .e-list-item {
|
|
145
|
+
padding-right: 12px;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.e-rtl .e-dropdownbase .e-list-item {
|
|
149
|
+
padding-left: 16px;
|
|
150
|
+
padding-right: 0;
|
|
151
|
+
}
|
|
152
|
+
.e-small.e-rtl .e-dropdownbase .e-list-item,
|
|
153
|
+
.e-small .e-rtl .e-dropdownbase .e-list-item,
|
|
154
|
+
.e-rtl .e-small .e-dropdownbase .e-list-item {
|
|
155
|
+
padding-left: 16px;
|
|
156
|
+
padding-right: 0;
|
|
157
|
+
}
|
|
158
|
+
.e-dropdownbase {
|
|
159
|
+
border-color: var(--color-sf-border-light);
|
|
160
|
+
}
|
|
161
|
+
.e-dropdownbase .e-list-item {
|
|
162
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
163
|
+
-webkit-tap-highlight-color: transparent;
|
|
164
|
+
border-bottom: 0;
|
|
165
|
+
border-color: var(--color-sf-border-light);
|
|
166
|
+
color: var(--color-sf-flyout-text-color);
|
|
167
|
+
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", arial, "Noto Sans", "Liberation Sans", sans-serif, "apple color emoji", "Segoe UI emoji", "Segoe UI Symbol", "Noto color emoji";
|
|
168
|
+
font-size: 14px;
|
|
169
|
+
line-height: 32px;
|
|
170
|
+
min-height: 32px;
|
|
171
|
+
padding-right: 16px;
|
|
172
|
+
text-indent: 12px;
|
|
173
|
+
background-color: var(--color-sf-flyout-bg-color);
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.e-dropdownbase .e-list-group-item,
|
|
177
|
+
.e-fixed-head {
|
|
178
|
+
border-color: var(--color-sf-border-light);
|
|
179
|
+
color: var(--color-sf-flyout-text-color);
|
|
180
|
+
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", arial, "Noto Sans", "Liberation Sans", sans-serif, "apple color emoji", "Segoe UI emoji", "Segoe UI Symbol", "Noto color emoji";
|
|
181
|
+
font-size: 14px;
|
|
182
|
+
font-weight: 500;
|
|
183
|
+
line-height: 32px;
|
|
184
|
+
min-height: 32px;
|
|
185
|
+
padding-left: 12px;
|
|
186
|
+
padding-right: 16px;
|
|
187
|
+
overflow: hidden;
|
|
188
|
+
text-overflow: ellipsis;
|
|
189
|
+
background-color: var(--color-sf-flyout-bg-color);
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.e-dropdownbase .e-list-item.e-active, .e-dropdownbase .e-list-item.e-active.e-hover {
|
|
193
|
+
background-color: var(--color-sf-flyout-bg-color-selected);
|
|
194
|
+
border-color: var(--color-sf-content-bg-color);
|
|
195
|
+
color: var(--color-sf-flyout-text-color-selected);
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.e-dropdownbase .e-list-item.e-hover {
|
|
199
|
+
background-color: var(--color-sf-flyout-bg-color-hover);
|
|
200
|
+
border-color: var(--color-sf-content-bg-color);
|
|
201
|
+
color: var(--color-sf-flyout-text-color-hover);
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.e-dropdownbase .e-list-item:last-child {
|
|
205
|
+
border-bottom: 0;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.e-dropdownbase .e-list-item.e-item-focus {
|
|
209
|
+
background-color: var(--color-sf-flyout-bg-color-hover);
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.e-multi-column.e-ddl.e-popup.e-popup-open table {
|
|
213
|
+
border-collapse: collapse;
|
|
214
|
+
table-layout: fixed;
|
|
215
|
+
width: 100%;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.e-multi-column.e-ddl.e-popup.e-popup-open th,
|
|
219
|
+
.e-multi-column.e-ddl.e-popup.e-popup-open td {
|
|
220
|
+
display: table-cell;
|
|
221
|
+
overflow: hidden;
|
|
222
|
+
padding-right: 16px;
|
|
223
|
+
text-indent: 10px;
|
|
224
|
+
text-overflow: ellipsis;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.e-multi-column.e-ddl.e-popup.e-popup-open th {
|
|
228
|
+
line-height: 36px;
|
|
229
|
+
text-align: left;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.e-multi-column.e-ddl.e-popup.e-popup-open .e-ddl-header {
|
|
233
|
+
background-color: var(--color-sf-flyout-bg-color);
|
|
234
|
+
border-color: var(--color-sf-flyout-border);
|
|
235
|
+
border-style: solid;
|
|
236
|
+
border-width: 0 0 1px 0;
|
|
237
|
+
color: var(--color-sf-flyout-text-color);
|
|
238
|
+
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", arial, "Noto Sans", "Liberation Sans", sans-serif, "apple color emoji", "Segoe UI emoji", "Segoe UI Symbol", "Noto color emoji";
|
|
239
|
+
font-size: 14px;
|
|
240
|
+
font-weight: 500;
|
|
241
|
+
text-indent: 10px;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.e-multi-column.e-ddl.e-popup.e-popup-open .e-dropdownbase .e-list-item {
|
|
245
|
+
padding-right: 0;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.e-multi-column.e-ddl.e-popup.e-popup-open.e-scroller .e-ddl-header {
|
|
249
|
+
padding-right: 16px;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.e-multi-column.e-ddl.e-popup.e-popup-open .e-ddl-header,
|
|
253
|
+
.e-multi-column.e-ddl.e-popup.e-popup-open.e-ddl-device .e-ddl-header {
|
|
254
|
+
padding-right: 0;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.e-multi-column.e-ddl.e-popup.e-popup-open .e-text-center {
|
|
258
|
+
text-align: center;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.e-multi-column.e-ddl.e-popup.e-popup-open .e-text-right {
|
|
262
|
+
text-align: right;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.e-multi-column.e-ddl.e-popup.e-popup-open .e-text-left {
|
|
266
|
+
text-align: left;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.e-small .e-dropdownbase .e-list-item,
|
|
270
|
+
.e-dropdownbase.e-small .e-list-item {
|
|
271
|
+
color: var(--color-sf-content-text-color);
|
|
272
|
+
line-height: 26px;
|
|
273
|
+
min-height: 26px;
|
|
274
|
+
text-indent: 8px;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.e-small .e-dropdownbase .e-list-group-item, .e-small .e-dropdownbase .e-fixed-head,
|
|
278
|
+
.e-dropdownbase.e-small .e-list-group-item,
|
|
279
|
+
.e-dropdownbase.e-small .e-fixed-head {
|
|
280
|
+
font-size: 10px;
|
|
281
|
+
line-height: 26px;
|
|
282
|
+
min-height: 26px;
|
|
283
|
+
padding-left: 8px;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.e-small .e-dropdownbase .e-list-item .e-list-icon,
|
|
287
|
+
.e-dropdownbase.e-small .e-list-item .e-list-icon {
|
|
288
|
+
font-size: 14px;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.e-ddl.e-popup.e-multiselect-group .e-list-group-item {
|
|
292
|
+
background-color: var(--color-sf-flyout-bg-color);
|
|
293
|
+
border-bottom: 0;
|
|
294
|
+
border-color: var(--color-sf-border-light);
|
|
295
|
+
color: var(--color-sf-flyout-text-color);
|
|
296
|
+
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", arial, "Noto Sans", "Liberation Sans", sans-serif, "apple color emoji", "Segoe UI emoji", "Segoe UI Symbol", "Noto color emoji";
|
|
297
|
+
text-indent: 12px;
|
|
298
|
+
font-size: 14px;
|
|
299
|
+
padding-right: 16px;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
.e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-item-focus {
|
|
303
|
+
background-color: var(--color-sf-flyout-bg-color-hover);
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
.e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-active,
|
|
307
|
+
.e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-active.e-hover {
|
|
308
|
+
background-color: var(--color-sf-flyout-bg-color-selected);
|
|
309
|
+
border-color: var(--color-sf-content-bg-color);
|
|
310
|
+
color: var(--color-sf-flyout-text-color-selected);
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-hover {
|
|
314
|
+
background-color: var(--color-sf-flyout-bg-color-hover);
|
|
315
|
+
border-color: var(--color-sf-content-bg-color);
|
|
316
|
+
color: var(--color-sf-flyout-text-color-hover);
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.e-selectall-parent.e-item-focus {
|
|
320
|
+
background-color: var(--color-sf-flyout-bg-color-hover);
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.e-bigger .e-dropdownbase,
|
|
324
|
+
.e-dropdownbase.e-bigger {
|
|
325
|
+
min-height: 45px;
|
|
326
|
+
}
|
|
327
|
+
.e-bigger .e-dropdownbase .e-list-item,
|
|
328
|
+
.e-dropdownbase.e-bigger .e-list-item {
|
|
329
|
+
line-height: 40px;
|
|
330
|
+
text-indent: 16px;
|
|
331
|
+
min-height: 40px;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.e-bigger .e-dropdownbase .e-list-group-item, .e-bigger .e-dropdownbase .e-fixed-head,
|
|
335
|
+
.e-dropdownbase.e-bigger .e-list-group-item,
|
|
336
|
+
.e-dropdownbase.e-bigger .e-fixed-head {
|
|
337
|
+
line-height: 40px;
|
|
338
|
+
text-indent: 16px;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.e-bigger .e-dropdownbase .e-list-item .e-list-icon,
|
|
342
|
+
.e-dropdownbase.e-bigger .e-list-item .e-list-icon {
|
|
343
|
+
font-size: 20px;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.e-bigger .e-dropdownbase.e-dd-group .e-list-item {
|
|
347
|
+
padding-left: 16px;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
.e-small.e-bigger .e-dropdownbase.e-dd-group .e-list-item {
|
|
351
|
+
padding-left: 14px;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
.e-small.e-bigger.e-rtl .e-dropdownbase .e-list-item,
|
|
355
|
+
.e-small.e-bigger .e-rtl .e-dropdownbase .e-list-item,
|
|
356
|
+
.e-rtl .e-small.e-bigger .e-dropdownbase .e-list-item,
|
|
357
|
+
.e-small .e-rtl.e-bigger .e-dropdownbase .e-list-item,
|
|
358
|
+
.e-bigger .e-rtl.e-small .e-dropdownbase .e-list-item {
|
|
359
|
+
padding-left: 16px;
|
|
360
|
+
padding-right: 0;
|
|
361
|
+
}
|
|
362
|
+
.e-bigger .e-dropdownbase .e-list-group-item, .e-bigger .e-dropdownbase .e-fixed-head {
|
|
363
|
+
font-size: 16px;
|
|
364
|
+
padding-left: 16px;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.e-bigger.e-small .e-dropdownbase .e-list-group-item, .e-bigger.e-small .e-dropdownbase .e-fixed-head,
|
|
368
|
+
.e-dropdownbase.e-bigger.e-small .e-list-group-item,
|
|
369
|
+
.e-dropdownbase.e-bigger.e-small .e-fixed-head {
|
|
370
|
+
font-size: 12px;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.e-bigger.e-small .e-dropdownbase .e-list-item,
|
|
374
|
+
.e-dropdownbase.e-small.e-bigger .e-list-item {
|
|
375
|
+
color: var(--color-sf-content-text-color);
|
|
376
|
+
line-height: 30px;
|
|
377
|
+
min-height: 30px;
|
|
378
|
+
text-indent: 16px;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.e-bigger.e-small .e-dropdownbase .e-list-group-item, .e-bigger.e-small .e-dropdownbase .e-fixed-head,
|
|
382
|
+
.e-dropdownbase.e-small.e-bigger .e-list-group-item,
|
|
383
|
+
.e-dropdownbase.e-small.e-bigger .e-fixed-head {
|
|
384
|
+
line-height: 30px;
|
|
385
|
+
min-height: 30px;
|
|
386
|
+
padding-left: 14px;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.e-bigger.e-small .e-dropdownbase .e-list-item .e-list-icon,
|
|
390
|
+
.e-dropdownbase.e-small.e-bigger .e-list-item .e-list-icon {
|
|
391
|
+
font-size: 18px;
|
|
392
|
+
}
|
|
@@ -44,7 +44,7 @@ $ddl-bigger-small-list-font-size: 14px !default;
|
|
|
44
44
|
background-color: $bg-base-0;
|
|
45
45
|
}
|
|
46
46
|
#{if(&, '&', '*')} .e-dropdownbase {
|
|
47
|
-
#{if(&, '&', '*')} .e-list-item {
|
|
47
|
+
#{if(&, '&', '*')} .e-list-item:not(.e-active) {
|
|
48
48
|
#{if(&, '&', '*')} .e-highlight {
|
|
49
49
|
color: $header-font;
|
|
50
50
|
}
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
#{if(&, '&', '*')} .e-filter-parent .e-input-filter:focus,
|
|
99
99
|
#{if(&, '&', '*')} .e-filter-parent .e-input-group.e-input-focus .e-input-filter,
|
|
100
100
|
#{if(&, '&', '*')} .e-filter-parent .e-input-group.e-control-wrapper.e-input-focus .e-input-filter {
|
|
101
|
-
@if ($skin-name != 'bootstrap4' and $skin-name != 'bootstrap4-dark' and $skin-name != 'FluentUI' and $skin-name != 'bootstrap5' and $skin-name != 'bootstrap5.3' and $skin-name != 'tailwind') {
|
|
101
|
+
@if ($skin-name != 'bootstrap4' and $skin-name != 'bootstrap4-dark' and $skin-name != 'FluentUI' and $skin-name != 'bootstrap5' and $skin-name != 'bootstrap5.3' and $skin-name != 'tailwind' and $skin-name != 'tailwind3') {
|
|
102
102
|
padding: $ddl-list-filter-text-indent;
|
|
103
103
|
}
|
|
104
104
|
}
|
|
@@ -194,7 +194,7 @@
|
|
|
194
194
|
.e-ddl.e-popup.e-popup-open .e-list-item.e-disabled {
|
|
195
195
|
opacity: .7;
|
|
196
196
|
pointer-events: none;
|
|
197
|
-
@if $skin-name == 'bootstrap5.3' or $skin-name == 'fluent2' {
|
|
197
|
+
@if $skin-name == 'bootstrap5.3' or $skin-name == 'fluent2' or $skin-name == 'tailwind4' {
|
|
198
198
|
color: $ddl-list-disable-item-color;
|
|
199
199
|
}
|
|
200
200
|
}
|
|
@@ -237,4 +237,20 @@
|
|
|
237
237
|
background-size: 300px 33px;
|
|
238
238
|
min-height: 33px;
|
|
239
239
|
}
|
|
240
|
+
|
|
241
|
+
.e-ddl.e-popup.e-resize .e-resizer-right {
|
|
242
|
+
bottom: 0;
|
|
243
|
+
right: 0;
|
|
244
|
+
cursor: nwse-resize;
|
|
245
|
+
height: 15px;
|
|
246
|
+
position: absolute;
|
|
247
|
+
width: 15px;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.e-ddl.e-popup.e-resize .e-resizer-right {
|
|
251
|
+
@if $skin-name == 'bootstrap-dark' or $skin-name == 'material-dark' or $skin-name == 'tailwind-dark' or $skin-name == 'material3-dark' or $skin-name == 'bootstrap5-dark' or $skin-name == 'fluent-dark' or $skin-name == 'fabric-dark' or $skin-name == 'highcontrast' {
|
|
252
|
+
background: transparent;
|
|
253
|
+
color: rgb(221, 218, 218);
|
|
254
|
+
}
|
|
255
|
+
}
|
|
240
256
|
}
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
$ddl-input-font-size: $text-sm !default;
|
|
2
|
+
$ddl-zero-value: 0 !default;
|
|
3
|
+
$ddl-input-border: 1px $border-light !default;
|
|
4
|
+
$ddl-input-font-family: inherit !default;
|
|
5
|
+
$ddl-input-margin-bottom: 4px !default;
|
|
6
|
+
$ddl-input-padding: 8px $ddl-zero-value 4px !default;
|
|
7
|
+
$ddl-input-group-border-width: $ddl-zero-value !default;
|
|
8
|
+
$ddl-list-search-icon-padding: 12px 8px 8px !default;
|
|
9
|
+
$ddl-list-filter-text-indent: 6px 0 6px 12px !default;
|
|
10
|
+
$ddl-bigger-list-font-size: $text-base !default;
|
|
11
|
+
$ddl-filter-border: 0 !default;
|
|
12
|
+
$ddl-filter-top-border: 0 !default;
|
|
13
|
+
$ddl-filter-padding: 6px !default;
|
|
14
|
+
$ddl-clear-icon-margin-right: 66px !default;
|
|
15
|
+
$ddl-back-icon-margin: 0 10px 0 -52px !default;
|
|
16
|
+
$ddl-back-icon-padding: 0 8px !default;
|
|
17
|
+
$ddl-popup-shadow: $shadow-lg !default;
|
|
18
|
+
$ddl-readonly-bg-color: $content-bg-color-alt2 !default;
|
|
19
|
+
$ddl-filter-margin: 0 !default;
|
|
20
|
+
$ddl-list-disable-item-color: $flyout-text-color-disabled !default;
|
|
21
|
+
|
|
22
|
+
// Small Size
|
|
23
|
+
$ddl-small-list-font-size: $text-xs !default;
|
|
24
|
+
|
|
25
|
+
// touch small
|
|
26
|
+
$ddl-bigger-small-list-font-size: $text-sm !default;
|
|
27
|
+
|
|
28
|
+
// color
|
|
29
|
+
|
|
30
|
+
$ddl-default-border-color: $border-light !default;
|
|
31
|
+
$ddl-active-font-color: $content-text-color-selected !default;
|
|
32
|
+
$ddl-list-box-shadow-color: rgba(0, 0, 0, .21) !default;
|
|
33
|
+
$ddl-filter-box-shadow-color: rgba(0, 0, 0, .3) !default;
|
|
34
|
+
$ddl-popup-background-color: $flyout-bg-color !default;
|
|
35
|
+
$ddl-filter-background-color: $content-bg-color !default;
|
|
36
|
+
$ddl-filter-bg: $content-bg-color !default;
|
|
37
|
+
$ddl-list-icon-color: $icon-color !default;
|
|
38
|
+
$ddl-filter-box-shadow: 0 1.5px 5px -2px $ddl-filter-box-shadow-color !default;
|
|
39
|
+
|
|
40
|
+
@include export-module('dropdownlist-bootstrap5') {
|
|
41
|
+
#{&}.e-popup.e-ddl {
|
|
42
|
+
border-radius: 4px;
|
|
43
|
+
box-shadow: none;
|
|
44
|
+
margin-top: 3px;
|
|
45
|
+
@at-root {
|
|
46
|
+
#{if(&, '&', '*')} .e-input-group {
|
|
47
|
+
width: auto;
|
|
48
|
+
|
|
49
|
+
#{if(&, '&', '*')} input {
|
|
50
|
+
line-height: 15px;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
#{&}.e-popup.e-ddl .e-dropdownbase {
|
|
57
|
+
min-height: 26px;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
#{&}.e-popup.e-ddl .e-filter-parent .e-input-group {
|
|
61
|
+
display: flex;
|
|
62
|
+
width: auto;
|
|
63
|
+
@at-root {
|
|
64
|
+
#{if(&, '&', '*')} .e-back-icon {
|
|
65
|
+
border: 0;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.e-input-group#{&}.e-control-wrapper.e-ddl .e-input[readonly],
|
|
71
|
+
.e-float-input#{&}.e-control-wrapper.e-ddl input[readonly] {
|
|
72
|
+
background: transparent;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
76
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
77
|
+
background: $ddl-readonly-bg-color;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.e-input-group:not(.e-disabled) .e-control#{&}.e-dropdownlist ~ .e-ddl-icon:active,
|
|
81
|
+
.e-input-group:not(.e-disabled) .e-control#{&}.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
82
|
+
.e-control#{&}.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
83
|
+
.e-control#{&}.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:hover,
|
|
84
|
+
.e-ddl#{&}.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active,
|
|
85
|
+
.e-ddl#{&}.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:hover,
|
|
86
|
+
.e-ddl#{&}.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
|
|
87
|
+
.e-ddl#{&}.e-popup .e-input-group:not(.e-disabled) .e-back-icon:hover {
|
|
88
|
+
background: transparent;
|
|
89
|
+
color: $ddl-list-icon-color;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.e-input-group.e-ddl .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
93
|
+
.e-input-group.e-control-wrapper.e-ddl .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
94
|
+
.e-float-input.e-ddl input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
95
|
+
.e-float-input.e-control-wrapper.e-ddl input[readonly] ~ span.e-input-group-icon.e-ddl-icon {
|
|
96
|
+
background: transparent;
|
|
97
|
+
color: $ddl-list-icon-color;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.e-input-group.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
101
|
+
.e-input-group.e-control-wrapper.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
102
|
+
.e-float-input.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
103
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon {
|
|
104
|
+
background: $content-bg-color-alt2;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.e-input-group:not(.e-disabled) .e-control#{&}.e-dropdownlist ~ .e-ddl-icon,
|
|
108
|
+
.e-input-group.e-disabled.e-ddl .e-control#{&}.e-dropdownlist ~ .e-input-group-icon,
|
|
109
|
+
.e-control#{&}.e-dropdownlist .e-input-group.e-disabled.e-ddl .e-input-group-icon,
|
|
110
|
+
.e-control#{&}.e-dropdownlist .e-input-group.e-ddl .e-input-group-icon {
|
|
111
|
+
border: 0;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.e-input-group:not(.e-disabled) .e-control#{&}.e-dropdownlist~.e-input-group-icon:active,
|
|
115
|
+
.e-control#{&}.e-dropdownlist .e-input-group:not(.e-disabled) .e-input-group-icon:active,
|
|
116
|
+
.e-ddl#{&}.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
|
|
117
|
+
.e-ddl#{&}.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active {
|
|
118
|
+
box-shadow: none;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.e-ddl#{&}.e-popup .e-input-group:not(.e-disabled) .e-clear-icon {
|
|
122
|
+
background: transparent;
|
|
123
|
+
display: flex;
|
|
124
|
+
position: relative;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.e-ddl#{&}.e-popup .e-filter-parent .e-input-group,
|
|
128
|
+
.e-ddl#{&}.e-popup .e-filter-parent {
|
|
129
|
+
background: $ddl-filter-bg;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.e-input-group .e-control#{&}.e-dropdownlist~.e-ddl-icon {
|
|
133
|
+
font-size: $text-sm;
|
|
134
|
+
}
|
|
135
|
+
}
|
|
@@ -10,6 +10,8 @@
|
|
|
10
10
|
|
|
11
11
|
.e-ddl.e-popup .e-filter-parent .e-input-group input.e-input-filter {
|
|
12
12
|
border-color: transparent;
|
|
13
|
-
|
|
13
|
+
@if $skin-name == 'bootstrap4' or $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5.3' or $skin-name == 'highcontrast' {
|
|
14
|
+
background: none;
|
|
15
|
+
}
|
|
14
16
|
}
|
|
15
17
|
}
|