@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
package/styles/fluent2.css
CHANGED
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
.e-popup.e-mention .e-dropdownbase.e-nodata {
|
|
81
81
|
color: var(--color-sf-content-text-color);
|
|
82
82
|
cursor: default;
|
|
83
|
-
font-family: "Segoe UI", -apple-system,
|
|
83
|
+
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
84
84
|
font-size: 14px;
|
|
85
85
|
padding: 14px 16px;
|
|
86
86
|
text-align: center;
|
|
@@ -95,6 +95,10 @@
|
|
|
95
95
|
position: absolute;
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
+
.e-mention.e-popup .e-dropdownbase {
|
|
99
|
+
min-height: 32px;
|
|
100
|
+
}
|
|
101
|
+
|
|
98
102
|
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
99
103
|
display: inline;
|
|
100
104
|
font-weight: bold;
|
|
@@ -172,7 +176,7 @@
|
|
|
172
176
|
border-bottom: 0;
|
|
173
177
|
border-color: var(--color-sf-border-light);
|
|
174
178
|
color: var(--color-sf-content-text-color);
|
|
175
|
-
font-family: "Segoe UI", -apple-system,
|
|
179
|
+
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
176
180
|
font-size: 14px;
|
|
177
181
|
line-height: 32px;
|
|
178
182
|
min-height: 32px;
|
|
@@ -186,7 +190,7 @@
|
|
|
186
190
|
.e-fixed-head {
|
|
187
191
|
border-color: var(--color-sf-border-light);
|
|
188
192
|
color: var(--color-sf-content-text-color-alt2);
|
|
189
|
-
font-family: "Segoe UI", -apple-system,
|
|
193
|
+
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
190
194
|
font-size: 12px;
|
|
191
195
|
font-weight: 600;
|
|
192
196
|
line-height: 32px;
|
|
@@ -245,7 +249,7 @@
|
|
|
245
249
|
border-style: solid;
|
|
246
250
|
border-width: 0 0 1px 0;
|
|
247
251
|
color: var(--color-sf-content-text-color-alt2);
|
|
248
|
-
font-family: "Segoe UI", -apple-system,
|
|
252
|
+
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
249
253
|
font-size: 14px;
|
|
250
254
|
font-weight: 600;
|
|
251
255
|
text-indent: 10px;
|
|
@@ -303,7 +307,7 @@
|
|
|
303
307
|
border-bottom: 0;
|
|
304
308
|
border-color: var(--color-sf-border-light);
|
|
305
309
|
color: var(--color-sf-content-text-color);
|
|
306
|
-
font-family: "Segoe UI", -apple-system,
|
|
310
|
+
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
307
311
|
text-indent: 12px;
|
|
308
312
|
font-size: 14px;
|
|
309
313
|
padding-right: 16px;
|
|
@@ -727,6 +731,10 @@
|
|
|
727
731
|
font-family: "e-icons";
|
|
728
732
|
}
|
|
729
733
|
|
|
734
|
+
.e-ddl.e-popup.e-resize .e-icons.e-resizer-right::before {
|
|
735
|
+
content: "\e832";
|
|
736
|
+
}
|
|
737
|
+
|
|
730
738
|
.e-popup.e-wide-popup.e-ddl-device.e-popup-close {
|
|
731
739
|
display: block;
|
|
732
740
|
visibility: hidden;
|
|
@@ -926,6 +934,15 @@ ejs-dropdownlist {
|
|
|
926
934
|
min-height: 33px;
|
|
927
935
|
}
|
|
928
936
|
|
|
937
|
+
.e-ddl.e-popup.e-resize .e-resizer-right {
|
|
938
|
+
bottom: 0;
|
|
939
|
+
right: 0;
|
|
940
|
+
cursor: nwse-resize;
|
|
941
|
+
height: 15px;
|
|
942
|
+
position: absolute;
|
|
943
|
+
width: 15px;
|
|
944
|
+
}
|
|
945
|
+
|
|
929
946
|
.e-popup {
|
|
930
947
|
border-color: var(--color-sf-border-light);
|
|
931
948
|
}
|
|
@@ -937,7 +954,6 @@ ejs-dropdownlist {
|
|
|
937
954
|
|
|
938
955
|
.e-ddl.e-popup .e-filter-parent .e-input-group input.e-input-filter {
|
|
939
956
|
border-color: transparent;
|
|
940
|
-
background: none;
|
|
941
957
|
}
|
|
942
958
|
|
|
943
959
|
.e-bigger .e-input-group.e-ddl .e-input-filter, .e-bigger .e-input-group.e-ddl .e-input-filter:focus {
|
|
@@ -1554,6 +1570,10 @@ ejs-dropdownlist {
|
|
|
1554
1570
|
width: 14px;
|
|
1555
1571
|
}
|
|
1556
1572
|
|
|
1573
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-icons.e-resizer-right::before {
|
|
1574
|
+
content: "\e832";
|
|
1575
|
+
}
|
|
1576
|
+
|
|
1557
1577
|
.e-multi-select-wrapper {
|
|
1558
1578
|
-webkit-box-sizing: border-box;
|
|
1559
1579
|
box-sizing: border-box;
|
|
@@ -1829,7 +1849,7 @@ ejs-dropdownlist {
|
|
|
1829
1849
|
.e-multi-select-wrapper input[type=text] {
|
|
1830
1850
|
background: none;
|
|
1831
1851
|
border: 0;
|
|
1832
|
-
font-family: "Segoe UI", -apple-system,
|
|
1852
|
+
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
1833
1853
|
font-size: 14px;
|
|
1834
1854
|
font-weight: normal;
|
|
1835
1855
|
height: 28px;
|
|
@@ -1843,7 +1863,7 @@ ejs-dropdownlist {
|
|
|
1843
1863
|
background: none;
|
|
1844
1864
|
border: 0;
|
|
1845
1865
|
color: inherit;
|
|
1846
|
-
font-family: "Segoe UI", -apple-system,
|
|
1866
|
+
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
1847
1867
|
font-size: 14px;
|
|
1848
1868
|
font-weight: normal;
|
|
1849
1869
|
height: 28px;
|
|
@@ -1878,7 +1898,7 @@ ejs-dropdownlist {
|
|
|
1878
1898
|
}
|
|
1879
1899
|
|
|
1880
1900
|
.e-multi-select-wrapper .e-delim-values {
|
|
1881
|
-
font-family: "Segoe UI", -apple-system,
|
|
1901
|
+
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
1882
1902
|
font-size: 14px;
|
|
1883
1903
|
line-height: 28px;
|
|
1884
1904
|
max-width: 100%;
|
|
@@ -2060,7 +2080,7 @@ ejs-dropdownlist {
|
|
|
2060
2080
|
|
|
2061
2081
|
.e-multi-select-list-wrapper .e-selectall-parent .e-all-text {
|
|
2062
2082
|
color: var(--color-sf-content-text-color);
|
|
2063
|
-
font-family: "Segoe UI", -apple-system,
|
|
2083
|
+
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
2064
2084
|
font-size: 14px;
|
|
2065
2085
|
}
|
|
2066
2086
|
|
|
@@ -2086,6 +2106,10 @@ ejs-dropdownlist {
|
|
|
2086
2106
|
float: left;
|
|
2087
2107
|
}
|
|
2088
2108
|
|
|
2109
|
+
.e-multiselect.e-control-wrapper.e-checkbox .e-multi-select-wrapper.e-down-icon {
|
|
2110
|
+
padding-right: 0 48px 0 0;
|
|
2111
|
+
}
|
|
2112
|
+
|
|
2089
2113
|
.e-multiselect .e-multi-select-wrapper.e-down-icon {
|
|
2090
2114
|
padding: 1px 0;
|
|
2091
2115
|
}
|
|
@@ -2292,6 +2316,15 @@ ejs-multiselect {
|
|
|
2292
2316
|
cursor: pointer;
|
|
2293
2317
|
}
|
|
2294
2318
|
|
|
2319
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-resizer-right {
|
|
2320
|
+
bottom: 0;
|
|
2321
|
+
right: 0;
|
|
2322
|
+
cursor: nwse-resize;
|
|
2323
|
+
height: 15px;
|
|
2324
|
+
position: absolute;
|
|
2325
|
+
width: 15px;
|
|
2326
|
+
}
|
|
2327
|
+
|
|
2295
2328
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
2296
2329
|
color: var(--color-sf-content-text-color);
|
|
2297
2330
|
}
|
|
@@ -2313,7 +2346,7 @@ ejs-multiselect {
|
|
|
2313
2346
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
2314
2347
|
-webkit-text-fill-color: var(--color-sf-content-text-color);
|
|
2315
2348
|
color: var(--color-sf-content-text-color);
|
|
2316
|
-
font-family: "Segoe UI", -apple-system,
|
|
2349
|
+
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
2317
2350
|
font-size: 14px;
|
|
2318
2351
|
}
|
|
2319
2352
|
|
|
@@ -3416,7 +3449,7 @@ ejs-listbox {
|
|
|
3416
3449
|
.e-listbox-wrapper,
|
|
3417
3450
|
.e-listbox-container,
|
|
3418
3451
|
.e-listboxtool-wrapper {
|
|
3419
|
-
font-family: "Segoe UI", -apple-system,
|
|
3452
|
+
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
3420
3453
|
font-size: 14px;
|
|
3421
3454
|
}
|
|
3422
3455
|
.e-listbox-wrapper .e-list-header,
|
|
@@ -78,6 +78,10 @@
|
|
|
78
78
|
position: absolute;
|
|
79
79
|
}
|
|
80
80
|
|
|
81
|
+
.e-mention.e-popup .e-dropdownbase {
|
|
82
|
+
min-height: 36px;
|
|
83
|
+
}
|
|
84
|
+
|
|
81
85
|
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
82
86
|
display: inline;
|
|
83
87
|
font-weight: bold;
|
|
@@ -607,6 +611,15 @@ ejs-dropdownlist {
|
|
|
607
611
|
min-height: 33px;
|
|
608
612
|
}
|
|
609
613
|
|
|
614
|
+
.e-ddl.e-popup.e-resize .e-resizer-right {
|
|
615
|
+
bottom: 0;
|
|
616
|
+
right: 0;
|
|
617
|
+
cursor: nwse-resize;
|
|
618
|
+
height: 15px;
|
|
619
|
+
position: absolute;
|
|
620
|
+
width: 15px;
|
|
621
|
+
}
|
|
622
|
+
|
|
610
623
|
.e-popup {
|
|
611
624
|
border-color: #757575;
|
|
612
625
|
}
|
|
@@ -618,7 +631,6 @@ ejs-dropdownlist {
|
|
|
618
631
|
|
|
619
632
|
.e-ddl.e-popup .e-filter-parent .e-input-group input.e-input-filter {
|
|
620
633
|
border-color: transparent;
|
|
621
|
-
background: none;
|
|
622
634
|
}
|
|
623
635
|
|
|
624
636
|
/* stylelint-disable */
|
|
@@ -1855,6 +1867,15 @@ ejs-multiselect {
|
|
|
1855
1867
|
cursor: pointer;
|
|
1856
1868
|
}
|
|
1857
1869
|
|
|
1870
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-resizer-right {
|
|
1871
|
+
bottom: 0;
|
|
1872
|
+
right: 0;
|
|
1873
|
+
cursor: nwse-resize;
|
|
1874
|
+
height: 15px;
|
|
1875
|
+
position: absolute;
|
|
1876
|
+
width: 15px;
|
|
1877
|
+
}
|
|
1878
|
+
|
|
1858
1879
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1859
1880
|
color: #fff;
|
|
1860
1881
|
}
|
|
@@ -78,6 +78,10 @@
|
|
|
78
78
|
position: absolute;
|
|
79
79
|
}
|
|
80
80
|
|
|
81
|
+
.e-mention.e-popup .e-dropdownbase {
|
|
82
|
+
min-height: 36px;
|
|
83
|
+
}
|
|
84
|
+
|
|
81
85
|
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
82
86
|
display: inline;
|
|
83
87
|
font-weight: bold;
|
|
@@ -682,6 +686,15 @@ ejs-dropdownlist {
|
|
|
682
686
|
min-height: 33px;
|
|
683
687
|
}
|
|
684
688
|
|
|
689
|
+
.e-ddl.e-popup.e-resize .e-resizer-right {
|
|
690
|
+
bottom: 0;
|
|
691
|
+
right: 0;
|
|
692
|
+
cursor: nwse-resize;
|
|
693
|
+
height: 15px;
|
|
694
|
+
position: absolute;
|
|
695
|
+
width: 15px;
|
|
696
|
+
}
|
|
697
|
+
|
|
685
698
|
.e-popup {
|
|
686
699
|
border-color: #757575;
|
|
687
700
|
}
|
|
@@ -693,7 +706,6 @@ ejs-dropdownlist {
|
|
|
693
706
|
|
|
694
707
|
.e-ddl.e-popup .e-filter-parent .e-input-group input.e-input-filter {
|
|
695
708
|
border-color: transparent;
|
|
696
|
-
background: none;
|
|
697
709
|
}
|
|
698
710
|
|
|
699
711
|
.e-bigger .e-input-group.e-ddl .e-input-filter, .e-bigger .e-input-group.e-ddl .e-input-filter:focus {
|
|
@@ -2092,6 +2104,15 @@ ejs-multiselect {
|
|
|
2092
2104
|
cursor: pointer;
|
|
2093
2105
|
}
|
|
2094
2106
|
|
|
2107
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-resizer-right {
|
|
2108
|
+
bottom: 0;
|
|
2109
|
+
right: 0;
|
|
2110
|
+
cursor: nwse-resize;
|
|
2111
|
+
height: 15px;
|
|
2112
|
+
position: absolute;
|
|
2113
|
+
width: 15px;
|
|
2114
|
+
}
|
|
2115
|
+
|
|
2095
2116
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
2096
2117
|
color: #fff;
|
|
2097
2118
|
}
|
|
@@ -78,6 +78,10 @@
|
|
|
78
78
|
position: absolute;
|
|
79
79
|
}
|
|
80
80
|
|
|
81
|
+
.e-mention.e-popup .e-dropdownbase {
|
|
82
|
+
min-height: 36px;
|
|
83
|
+
}
|
|
84
|
+
|
|
81
85
|
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
82
86
|
display: inline;
|
|
83
87
|
font-weight: bold;
|
|
@@ -366,7 +370,7 @@
|
|
|
366
370
|
.e-ddl.e-popup .e-content.e-nodata {
|
|
367
371
|
background-color: #000;
|
|
368
372
|
}
|
|
369
|
-
.e-ddl.e-popup .e-dropdownbase .e-list-item .e-highlight {
|
|
373
|
+
.e-ddl.e-popup .e-dropdownbase .e-list-item:not(.e-active) .e-highlight {
|
|
370
374
|
color: #ffd939;
|
|
371
375
|
}
|
|
372
376
|
.e-ddl.e-popup .e-input-group {
|
|
@@ -409,6 +413,10 @@
|
|
|
409
413
|
font-family: "e-icons";
|
|
410
414
|
}
|
|
411
415
|
|
|
416
|
+
.e-ddl.e-popup.e-resize .e-icons.e-resizer-right::before {
|
|
417
|
+
content: "\eb06";
|
|
418
|
+
}
|
|
419
|
+
|
|
412
420
|
.e-popup.e-wide-popup.e-ddl-device.e-popup-close {
|
|
413
421
|
display: block;
|
|
414
422
|
visibility: hidden;
|
|
@@ -607,6 +615,20 @@ ejs-dropdownlist {
|
|
|
607
615
|
min-height: 33px;
|
|
608
616
|
}
|
|
609
617
|
|
|
618
|
+
.e-ddl.e-popup.e-resize .e-resizer-right {
|
|
619
|
+
bottom: 0;
|
|
620
|
+
right: 0;
|
|
621
|
+
cursor: nwse-resize;
|
|
622
|
+
height: 15px;
|
|
623
|
+
position: absolute;
|
|
624
|
+
width: 15px;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
.e-ddl.e-popup.e-resize .e-resizer-right {
|
|
628
|
+
background: transparent;
|
|
629
|
+
color: rgb(221, 218, 218);
|
|
630
|
+
}
|
|
631
|
+
|
|
610
632
|
.e-popup {
|
|
611
633
|
border-color: #969696;
|
|
612
634
|
}
|
|
@@ -1109,6 +1131,10 @@ ejs-dropdownlist {
|
|
|
1109
1131
|
content: "";
|
|
1110
1132
|
}
|
|
1111
1133
|
|
|
1134
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-icons.e-resizer-right::before {
|
|
1135
|
+
content: "\eb06";
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1112
1138
|
.e-multi-select-wrapper {
|
|
1113
1139
|
-webkit-box-sizing: border-box;
|
|
1114
1140
|
box-sizing: border-box;
|
|
@@ -1872,6 +1898,20 @@ ejs-multiselect {
|
|
|
1872
1898
|
cursor: pointer;
|
|
1873
1899
|
}
|
|
1874
1900
|
|
|
1901
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-resizer-right {
|
|
1902
|
+
bottom: 0;
|
|
1903
|
+
right: 0;
|
|
1904
|
+
cursor: nwse-resize;
|
|
1905
|
+
height: 15px;
|
|
1906
|
+
position: absolute;
|
|
1907
|
+
width: 15px;
|
|
1908
|
+
}
|
|
1909
|
+
|
|
1910
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-resizer-right {
|
|
1911
|
+
background: transparent;
|
|
1912
|
+
color: rgb(221, 218, 218);
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1875
1915
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1876
1916
|
color: #000;
|
|
1877
1917
|
}
|
package/styles/highcontrast.css
CHANGED
|
@@ -78,6 +78,10 @@
|
|
|
78
78
|
position: absolute;
|
|
79
79
|
}
|
|
80
80
|
|
|
81
|
+
.e-mention.e-popup .e-dropdownbase {
|
|
82
|
+
min-height: 36px;
|
|
83
|
+
}
|
|
84
|
+
|
|
81
85
|
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
82
86
|
display: inline;
|
|
83
87
|
font-weight: bold;
|
|
@@ -441,7 +445,7 @@
|
|
|
441
445
|
.e-ddl.e-popup .e-content.e-nodata {
|
|
442
446
|
background-color: #000;
|
|
443
447
|
}
|
|
444
|
-
.e-ddl.e-popup .e-dropdownbase .e-list-item .e-highlight {
|
|
448
|
+
.e-ddl.e-popup .e-dropdownbase .e-list-item:not(.e-active) .e-highlight {
|
|
445
449
|
color: #ffd939;
|
|
446
450
|
}
|
|
447
451
|
.e-ddl.e-popup .e-input-group {
|
|
@@ -484,6 +488,10 @@
|
|
|
484
488
|
font-family: "e-icons";
|
|
485
489
|
}
|
|
486
490
|
|
|
491
|
+
.e-ddl.e-popup.e-resize .e-icons.e-resizer-right::before {
|
|
492
|
+
content: "\eb06";
|
|
493
|
+
}
|
|
494
|
+
|
|
487
495
|
.e-popup.e-wide-popup.e-ddl-device.e-popup-close {
|
|
488
496
|
display: block;
|
|
489
497
|
visibility: hidden;
|
|
@@ -682,6 +690,20 @@ ejs-dropdownlist {
|
|
|
682
690
|
min-height: 33px;
|
|
683
691
|
}
|
|
684
692
|
|
|
693
|
+
.e-ddl.e-popup.e-resize .e-resizer-right {
|
|
694
|
+
bottom: 0;
|
|
695
|
+
right: 0;
|
|
696
|
+
cursor: nwse-resize;
|
|
697
|
+
height: 15px;
|
|
698
|
+
position: absolute;
|
|
699
|
+
width: 15px;
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
.e-ddl.e-popup.e-resize .e-resizer-right {
|
|
703
|
+
background: transparent;
|
|
704
|
+
color: rgb(221, 218, 218);
|
|
705
|
+
}
|
|
706
|
+
|
|
685
707
|
.e-popup {
|
|
686
708
|
border-color: #969696;
|
|
687
709
|
}
|
|
@@ -1346,6 +1368,10 @@ ejs-dropdownlist {
|
|
|
1346
1368
|
content: "";
|
|
1347
1369
|
}
|
|
1348
1370
|
|
|
1371
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-icons.e-resizer-right::before {
|
|
1372
|
+
content: "\eb06";
|
|
1373
|
+
}
|
|
1374
|
+
|
|
1349
1375
|
.e-multi-select-wrapper {
|
|
1350
1376
|
-webkit-box-sizing: border-box;
|
|
1351
1377
|
box-sizing: border-box;
|
|
@@ -2109,6 +2135,20 @@ ejs-multiselect {
|
|
|
2109
2135
|
cursor: pointer;
|
|
2110
2136
|
}
|
|
2111
2137
|
|
|
2138
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-resizer-right {
|
|
2139
|
+
bottom: 0;
|
|
2140
|
+
right: 0;
|
|
2141
|
+
cursor: nwse-resize;
|
|
2142
|
+
height: 15px;
|
|
2143
|
+
position: absolute;
|
|
2144
|
+
width: 15px;
|
|
2145
|
+
}
|
|
2146
|
+
|
|
2147
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-resizer-right {
|
|
2148
|
+
background: transparent;
|
|
2149
|
+
color: rgb(221, 218, 218);
|
|
2150
|
+
}
|
|
2151
|
+
|
|
2112
2152
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
2113
2153
|
color: #000;
|
|
2114
2154
|
}
|
|
@@ -9,6 +9,9 @@
|
|
|
9
9
|
@if ($theme-name == 'bootstrap5.3' or $theme-name == 'bootstrap5.3-dark') {
|
|
10
10
|
border-radius: 6px;
|
|
11
11
|
}
|
|
12
|
+
@if $skin-name == 'tailwind3' {
|
|
13
|
+
border-radius: 8px;
|
|
14
|
+
}
|
|
12
15
|
|
|
13
16
|
&.e-listboxtool-container .e-list-wrap {
|
|
14
17
|
@if $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5.3' or $skin-name == 'tailwind' {
|
|
@@ -44,7 +47,7 @@
|
|
|
44
47
|
@if ($skin-name == 'bootstrap4') {
|
|
45
48
|
padding: 12px 20px;
|
|
46
49
|
}
|
|
47
|
-
@if ($theme-name == 'bootstrap5.3' or $theme-name == 'bootstrap5.3-dark') {
|
|
50
|
+
@if ($theme-name == 'bootstrap5.3' or $theme-name == 'bootstrap5.3-dark' or $skin-name == 'tailwind3') {
|
|
48
51
|
font-size: 16px;
|
|
49
52
|
}
|
|
50
53
|
}
|
|
@@ -67,6 +70,10 @@
|
|
|
67
70
|
@if $theme-name == 'bootstrap5.3' or $theme-name == 'bootstrap5.3-dark' {
|
|
68
71
|
padding: 9px 16px;
|
|
69
72
|
}
|
|
73
|
+
@if ($skin-name == 'tailwind3') {
|
|
74
|
+
font-size: 14px;
|
|
75
|
+
padding: 10px 16px;
|
|
76
|
+
}
|
|
70
77
|
}
|
|
71
78
|
|
|
72
79
|
.e-list-header {
|
|
@@ -170,4 +177,14 @@
|
|
|
170
177
|
}
|
|
171
178
|
}
|
|
172
179
|
}
|
|
180
|
+
|
|
181
|
+
@if $skin-name == 'tailwind3' {
|
|
182
|
+
.e-bigger .e-listboxtool-wrapper .e-listbox-tool .e-btn-icon {
|
|
183
|
+
font-size: 18px;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.e-bigger .e-listbox-wrapper .e-filter-parent {
|
|
187
|
+
padding: 12px;
|
|
188
|
+
}
|
|
189
|
+
}
|
|
173
190
|
}
|
|
@@ -18,6 +18,10 @@
|
|
|
18
18
|
@if $skin-name == 'fluent2' or $theme-name == 'bootstrap5.3' or $theme-name == 'bootstrap5.3-dark' {
|
|
19
19
|
border-radius: 4px;
|
|
20
20
|
}
|
|
21
|
+
@if $skin-name == 'tailwind3' {
|
|
22
|
+
font-weight: $font-weight-medium;
|
|
23
|
+
border-radius: 6px;
|
|
24
|
+
}
|
|
21
25
|
|
|
22
26
|
&.e-listboxtool-container .e-list-wrap {
|
|
23
27
|
@if $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5.3' or $skin-name == 'tailwind' {
|
|
@@ -43,7 +47,7 @@
|
|
|
43
47
|
|
|
44
48
|
& .e-list-item.e-disabled,
|
|
45
49
|
& .e-list-item.e-disabled .e-list-icon {
|
|
46
|
-
@if $skin-name == 'fluent2' {
|
|
50
|
+
@if $skin-name == 'fluent2' or $skin-name == 'tailwind3' {
|
|
47
51
|
color: $content-text-color-disabled;
|
|
48
52
|
opacity: 1;
|
|
49
53
|
}
|
|
@@ -68,6 +72,11 @@
|
|
|
68
72
|
color: $content-text-color !important; /* stylelint-disable-line declaration-no-important */
|
|
69
73
|
box-shadow: $secondary-shadow-focus;
|
|
70
74
|
}
|
|
75
|
+
@if $skin-name == 'tailwind3' {
|
|
76
|
+
background-color: $content-bg-color !important; /* stylelint-disable-line declaration-no-important */
|
|
77
|
+
color: $content-text-color !important; /* stylelint-disable-line declaration-no-important */
|
|
78
|
+
box-shadow: $shadow-focus-ring2;
|
|
79
|
+
}
|
|
71
80
|
}
|
|
72
81
|
|
|
73
82
|
&.e-disabled {
|
|
@@ -295,16 +304,28 @@
|
|
|
295
304
|
}
|
|
296
305
|
}
|
|
297
306
|
|
|
307
|
+
.e-filter-parent {
|
|
308
|
+
@if $skin-name == 'tailwind3' {
|
|
309
|
+
padding: 8px 11px;
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
|
|
298
313
|
.e-input-group {
|
|
299
314
|
@if $skin-name != 'tailwind' {
|
|
300
315
|
padding: 4px 8px;
|
|
301
316
|
}
|
|
317
|
+
@if $skin-name == 'tailwind3' {
|
|
318
|
+
padding: 0;
|
|
319
|
+
}
|
|
302
320
|
}
|
|
303
321
|
|
|
304
322
|
.e-input-focus {
|
|
305
323
|
@if $skin-name != 'tailwind' {
|
|
306
324
|
padding: 4px 4px 4px 8px;
|
|
307
325
|
}
|
|
326
|
+
@if $skin-name == 'tailwind3' {
|
|
327
|
+
padding: 0;
|
|
328
|
+
}
|
|
308
329
|
}
|
|
309
330
|
|
|
310
331
|
.e-hidden-select {
|
|
@@ -320,7 +341,7 @@
|
|
|
320
341
|
@if $skin-name == 'fluent2' {
|
|
321
342
|
border: 2px solid $badge-bgcolor;
|
|
322
343
|
}
|
|
323
|
-
@else if $theme-name == 'bootstrap5.3' or $theme-name == 'bootstrap5.3-dark' {
|
|
344
|
+
@else if $theme-name == 'bootstrap5.3' or $theme-name == 'bootstrap5.3-dark' or $skin-name == 'tailwind3' {
|
|
324
345
|
height: 2px;
|
|
325
346
|
}
|
|
326
347
|
@else {
|
|
@@ -415,7 +436,12 @@
|
|
|
415
436
|
border: 1px solid $listbox-border-color;
|
|
416
437
|
overflow: auto;
|
|
417
438
|
padding: 8px;
|
|
418
|
-
|
|
439
|
+
@if $skin-name == 'tailwind3' {
|
|
440
|
+
border-radius: 8px;
|
|
441
|
+
.e-btn-icon {
|
|
442
|
+
font-size: 16px;
|
|
443
|
+
}
|
|
444
|
+
}
|
|
419
445
|
.e-btn {
|
|
420
446
|
display: list-item;
|
|
421
447
|
list-style-type: none;
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
//layout variables
|
|
2
|
+
$listbox-font-family: $font-family !default;
|
|
3
|
+
$listbox-icon-margin-right: 16px !default;
|
|
4
|
+
$listbox-icon-line-height: 34px !default;
|
|
5
|
+
$listbox-icon-back-margin: 2px !default;
|
|
6
|
+
$listbox-rtl-icon-back-margin: -2px !default;
|
|
7
|
+
$listbox-item-line-height: 1 !default;
|
|
8
|
+
$listbox-item-padding: 12px 12px !default;
|
|
9
|
+
$listbox-bigger-item-padding: 12px 16px !default;
|
|
10
|
+
$listbox-header-text-padding: 12px !default;
|
|
11
|
+
$listbox-header-font-size: $text-xs !default;
|
|
12
|
+
$listbox-header-height: 18px !default;
|
|
13
|
+
$listbox-header-font-weight: $font-weight-medium !default;
|
|
14
|
+
$listbox-header-line-height: 18px !default;
|
|
15
|
+
$listbox-header-padding-bottom: 0 !default;
|
|
16
|
+
$listbox-touch-back-icon-padding: 0 !default;
|
|
17
|
+
$listbox-border-bottom: 0 !default;
|
|
18
|
+
$listbox-border-top: 0 !default;
|
|
19
|
+
$listbox-border-left: 0 !default;
|
|
20
|
+
$listbox-border-right: 0 !default;
|
|
21
|
+
$listbox-group-first-border-bottom: 1px !default;
|
|
22
|
+
$listbox-group-border-top: 0 !default;
|
|
23
|
+
$listbox-group-border-bottom: 1px !default;
|
|
24
|
+
$listbox-groupheader-item-height: 32px !default;
|
|
25
|
+
$listbox-groupheader-item-line-height: 10px !default;
|
|
26
|
+
$listbox-groupheader-font-size: 12px !default;
|
|
27
|
+
$listbox-border-size: 0 !default;
|
|
28
|
+
$listbox-font-size: $text-sm !default;
|
|
29
|
+
$listbox-back-padding-right: 8px !default;
|
|
30
|
+
$listbox-touch-item-height: 48px !default;
|
|
31
|
+
$listbox-touch-item-line-height: 24px !default;
|
|
32
|
+
$listbox-touch-item-font-size: $text-base !default;
|
|
33
|
+
$listbox-touch-groupheader-height: 40px !default;
|
|
34
|
+
$listbox-touch-groupheader-line-height: 22px !default;
|
|
35
|
+
$listbox-touch-header-height: 22px !default;
|
|
36
|
+
$listbox-touch-header-font-weight: $font-weight-medium !default;
|
|
37
|
+
$listbox-touch-header-font-size: $text-sm !default;
|
|
38
|
+
$listbox-touch-header-line-height: 22px !default;
|
|
39
|
+
$listbox-touch-header-icon-margin-top: 2px !default;
|
|
40
|
+
$listbox-checkbox-right-margin: -2px 0 0 8px !default;
|
|
41
|
+
$listbox-checkbox-left-margin: -2px 8px 0 0 !default;
|
|
42
|
+
$listbox-rtl-checkbox-left-margin: -2px 0 0 8px !default;
|
|
43
|
+
$listbox-rtl-checkbox-right-margin: -2px 8px 0 0 !default;
|
|
44
|
+
|
|
45
|
+
//ListView In-built template variables
|
|
46
|
+
$listbox-template-padding: 8px 16px !default;
|
|
47
|
+
$listbox-template-avatar-padding-right: 16px !default;
|
|
48
|
+
$listbox-template-avatar-padding-left: 68px !default;
|
|
49
|
+
$listbox-template-avatar-rightposition-padding-right: 68px !default;
|
|
50
|
+
$listbox-template-avatar-rightposition-padding-left: 16px !default;
|
|
51
|
+
$listbox-template-avatar-size: 40px !default;
|
|
52
|
+
$listbox-template-avatar-top: 0 !default;
|
|
53
|
+
$listbox-template-avatar-left: 0 !default;
|
|
54
|
+
$listbox-template-avatar-rightposition-right: 0 !default;
|
|
55
|
+
$listbox-template-badge-height: 18px !default;
|
|
56
|
+
$listbox-template-badge-width: 32px !default;
|
|
57
|
+
$listbox-template-badge-line-height: 16px !default;
|
|
58
|
+
$listbox-template-badge-font-size: $text-xxs !default;
|
|
59
|
+
$listbox-template-badge-right: 12px !default;
|
|
60
|
+
$listbox-template-avatar-badge-padding-right: 10px !default;
|
|
61
|
+
$listbox-template-avatar-badge-padding-left: 68px !default;
|
|
62
|
+
$listbox-template-badgewithoutavatar-padding-right: 10px !default;
|
|
63
|
+
$listbox-template-badgewithoutavatar-padding-left: 16px !default;
|
|
64
|
+
$listbox-template-item-padding: 8px 0 !default;
|
|
65
|
+
$listbox-template-multiline-header-padding: 0 !default;
|
|
66
|
+
$listbox-template-multiline-content-padding: 2px 0 0 0 !default;
|
|
67
|
+
$listbox-template-multiline-header-font-size: $text-sm !default;
|
|
68
|
+
$listbox-template-multiline-padding: 4px !default;
|
|
69
|
+
$listbox-template-multiline-content-font-size: $text-sm !default;
|
|
70
|
+
$listbox-template-multiline-avatar-top: 0 !default;
|
|
71
|
+
$listbox-filter-small-height: calc(100% - 45px) !default;
|
|
72
|
+
$listbox-filter-bigger-small-height: calc(100% - 45px) !default;
|
|
73
|
+
$listbox-item-height: 40px !default;
|
|
74
|
+
|
|
75
|
+
$listbox-border-color: $border-light;
|
|
76
|
+
$badge-color: $primary-text-color !default;
|
|
77
|
+
$badge-bgcolor: $primary !default;
|
|
78
|
+
|
|
79
|
+
$select-all-border-color: $border-light !default;
|
|
80
|
+
$listbox-text-color: $content-text-color !default;
|
|
81
|
+
$listbox-text-disabled: $content-text-color-disabled !default;
|
|
82
|
+
$listbox-icon-color: $icon-color !default;
|
|
83
|
+
$listbox-icon-disabled: $icon-color-disabled !default;
|
|
84
|
+
$listbox-item-hover-bg: $content-bg-color-hover !default;
|
|
85
|
+
$listbox-background: $transparent !default;
|
|
86
|
+
$listbox-line-color: $border-light !default;
|
|
87
|
+
$listbox-hover-border-color: transparent !default;
|
|
88
|
+
$listbox-border-bottom-color: $border-light !default;
|
|
89
|
+
$listbox-border-top-color: transparent !default;
|
|
90
|
+
$listbox-border-right-color: transparent !default;
|
|
91
|
+
$listbox-border-left-color: transparent !default;
|
|
92
|
+
$listbox-text-hover-color: $content-text-color !default;
|
|
93
|
+
$listbox-item-active-bg: $content-bg-color-selected !default;
|
|
94
|
+
$listbox-text-active-color: $content-text-color-selected !default;
|
|
95
|
+
$listbox-text-selected-color: $content-text-color-selected !default;
|
|
96
|
+
$listbox-header-text-color: $content-text-color-alt2 !default;
|
|
97
|
+
$listbox-header-text-disabled: $content-text-color-disabled !default;
|
|
98
|
+
$listbox-header-bg: $content-bg-color-alt2 !default;
|
|
99
|
+
$listbox-header-icon-color: $icon-color !default;
|
|
100
|
+
$listbox-header-icon-disabled: $icon-color-disabled !default;
|
|
101
|
+
$listbox-header-border: rgba($black, .12) !default;
|
|
102
|
+
$checkmark-bgcolor: $primary !default;
|
|
103
|
+
$checkmark-border-color: transparent !default;
|
|
104
|
+
$checkmark-color: $primary-text-color !default;
|
|
105
|
+
$listbox-groupheader-text-color: $content-text-color !default;
|
|
106
|
+
$listbox-groupheader-bg: $content-bg-color-alt1 !default;
|
|
107
|
+
$listbox-groupheader-border: $black !default;
|
|
108
|
+
$listbox-groupheader-icon: $icon-color !default;
|
|
109
|
+
$listbox-template-multiline-header-color: $content-text-color !default;
|
|
110
|
+
$listbox-template-multiline-content-color: $content-text-color-alt2 !default;
|
|
111
|
+
|
|
112
|
+
$listbox-select-height: calc(100% - 36px) !default;
|
|
113
|
+
$listbox-select-bigger-height: calc(100% - 40px) !default;
|
|
114
|
+
$listbox-filterselect-height: calc(100% - 36px) !default;
|
|
115
|
+
$listbox-filterselect-bigger-height: calc(100% - 48px) !default;
|
|
116
|
+
$listbox-mat-filter-height: calc(100% - 50px) !default;
|
|
117
|
+
$listbox-mat-filter-bigger-height: calc(100% - 55px) !default;
|
|
118
|
+
$listbox-filter-height: calc(100% - 50px) !default;
|
|
119
|
+
$listbox-filter-bigger-height: calc(100% - 56px) !default;
|
|
120
|
+
$listbox-ej2-filterselect-height: calc(100% - 86px) !default;
|
|
121
|
+
$listbox-ej2-filterselect-bigger-height: calc(100% - 104px) !default;
|
|
122
|
+
$listbox-dragged-item-bg-color: $content-bg-color-dragged !default;
|
|
123
|
+
$listbox-dragged-item-text-color: $content-text-color-dragged !default;
|