@syncfusion/ej2-dropdowns 27.2.5 → 28.1.35
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 +511 -40
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +510 -38
- 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 +2 -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 +14 -2
- package/src/drop-down-list/drop-down-list-model.d.ts +31 -0
- package/src/drop-down-list/drop-down-list.d.ts +45 -1
- package/src/drop-down-list/drop-down-list.js +213 -13
- package/src/drop-down-tree/drop-down-tree.d.ts +1 -0
- package/src/drop-down-tree/drop-down-tree.js +4 -3
- 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 +250 -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 +31 -0
- package/styles/bootstrap5-dark.css +31 -0
- package/styles/bootstrap5-lite.css +31 -0
- package/styles/bootstrap5.3-lite.css +31 -3
- package/styles/bootstrap5.3.css +31 -3
- package/styles/bootstrap5.css +31 -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 +456 -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 +31 -1
- package/styles/fluent-dark.css +31 -1
- package/styles/fluent-lite.css +31 -1
- package/styles/fluent.css +31 -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 +32 -5
- package/styles/material3-dark.css +32 -5
- package/styles/material3-lite.css +32 -5
- package/styles/material3.css +32 -5
- 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 +28 -5
- package/styles/multi-select/_material3-definition.scss +1 -1
- 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 +14 -0
- package/styles/multi-select/bootstrap5.3.css +14 -0
- package/styles/multi-select/bootstrap5.css +14 -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 +14 -0
- package/styles/multi-select/fluent.css +14 -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 +15 -4
- package/styles/multi-select/material3.css +15 -4
- 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 +2890 -0
- package/styles/tailwind3-lite.scss +28 -0
- package/styles/tailwind3.css +3551 -0
- package/styles/tailwind3.scss +33 -0
package/styles/fabric-dark.css
CHANGED
|
@@ -66,6 +66,10 @@
|
|
|
66
66
|
position: absolute;
|
|
67
67
|
}
|
|
68
68
|
|
|
69
|
+
.e-mention.e-popup .e-dropdownbase {
|
|
70
|
+
min-height: 36px;
|
|
71
|
+
}
|
|
72
|
+
|
|
69
73
|
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
70
74
|
display: inline;
|
|
71
75
|
font-weight: bold;
|
|
@@ -463,6 +467,10 @@
|
|
|
463
467
|
font-family: "e-icons";
|
|
464
468
|
}
|
|
465
469
|
|
|
470
|
+
.e-ddl.e-popup.e-resize .e-icons.e-resizer-right::before {
|
|
471
|
+
content: "\eb06";
|
|
472
|
+
}
|
|
473
|
+
|
|
466
474
|
.e-popup.e-wide-popup.e-ddl-device.e-popup-close {
|
|
467
475
|
display: block;
|
|
468
476
|
visibility: hidden;
|
|
@@ -661,6 +669,20 @@ ejs-dropdownlist {
|
|
|
661
669
|
min-height: 33px;
|
|
662
670
|
}
|
|
663
671
|
|
|
672
|
+
.e-ddl.e-popup.e-resize .e-resizer-right {
|
|
673
|
+
bottom: 0;
|
|
674
|
+
right: 0;
|
|
675
|
+
cursor: nwse-resize;
|
|
676
|
+
height: 15px;
|
|
677
|
+
position: absolute;
|
|
678
|
+
width: 15px;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.e-ddl.e-popup.e-resize .e-resizer-right {
|
|
682
|
+
background: transparent;
|
|
683
|
+
color: rgb(221, 218, 218);
|
|
684
|
+
}
|
|
685
|
+
|
|
664
686
|
.e-popup {
|
|
665
687
|
border-color: #414040;
|
|
666
688
|
}
|
|
@@ -672,7 +694,6 @@ ejs-dropdownlist {
|
|
|
672
694
|
|
|
673
695
|
.e-ddl.e-popup .e-filter-parent .e-input-group input.e-input-filter {
|
|
674
696
|
border-color: transparent;
|
|
675
|
-
background: none;
|
|
676
697
|
}
|
|
677
698
|
|
|
678
699
|
.e-bigger .e-input-group.e-ddl .e-input-filter, .e-bigger .e-input-group.e-ddl .e-input-filter:focus {
|
|
@@ -1238,6 +1259,10 @@ ejs-dropdownlist {
|
|
|
1238
1259
|
content: "";
|
|
1239
1260
|
}
|
|
1240
1261
|
|
|
1262
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-icons.e-resizer-right::before {
|
|
1263
|
+
content: "\eb06";
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1241
1266
|
.e-multi-select-wrapper {
|
|
1242
1267
|
-webkit-box-sizing: border-box;
|
|
1243
1268
|
box-sizing: border-box;
|
|
@@ -1994,6 +2019,20 @@ ejs-multiselect {
|
|
|
1994
2019
|
cursor: pointer;
|
|
1995
2020
|
}
|
|
1996
2021
|
|
|
2022
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-resizer-right {
|
|
2023
|
+
bottom: 0;
|
|
2024
|
+
right: 0;
|
|
2025
|
+
cursor: nwse-resize;
|
|
2026
|
+
height: 15px;
|
|
2027
|
+
position: absolute;
|
|
2028
|
+
width: 15px;
|
|
2029
|
+
}
|
|
2030
|
+
|
|
2031
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-resizer-right {
|
|
2032
|
+
background: transparent;
|
|
2033
|
+
color: rgb(221, 218, 218);
|
|
2034
|
+
}
|
|
2035
|
+
|
|
1997
2036
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1998
2037
|
color: #fff;
|
|
1999
2038
|
}
|
package/styles/fabric-lite.css
CHANGED
|
@@ -66,6 +66,10 @@
|
|
|
66
66
|
position: absolute;
|
|
67
67
|
}
|
|
68
68
|
|
|
69
|
+
.e-mention.e-popup .e-dropdownbase {
|
|
70
|
+
min-height: 36px;
|
|
71
|
+
}
|
|
72
|
+
|
|
69
73
|
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
70
74
|
display: inline;
|
|
71
75
|
font-weight: bold;
|
|
@@ -388,6 +392,10 @@
|
|
|
388
392
|
font-family: "e-icons";
|
|
389
393
|
}
|
|
390
394
|
|
|
395
|
+
.e-ddl.e-popup.e-resize .e-icons.e-resizer-right::before {
|
|
396
|
+
content: "\eb06";
|
|
397
|
+
}
|
|
398
|
+
|
|
391
399
|
.e-popup.e-wide-popup.e-ddl-device.e-popup-close {
|
|
392
400
|
display: block;
|
|
393
401
|
visibility: hidden;
|
|
@@ -586,6 +594,15 @@ ejs-dropdownlist {
|
|
|
586
594
|
min-height: 33px;
|
|
587
595
|
}
|
|
588
596
|
|
|
597
|
+
.e-ddl.e-popup.e-resize .e-resizer-right {
|
|
598
|
+
bottom: 0;
|
|
599
|
+
right: 0;
|
|
600
|
+
cursor: nwse-resize;
|
|
601
|
+
height: 15px;
|
|
602
|
+
position: absolute;
|
|
603
|
+
width: 15px;
|
|
604
|
+
}
|
|
605
|
+
|
|
589
606
|
.e-popup {
|
|
590
607
|
border-color: #eaeaea;
|
|
591
608
|
}
|
|
@@ -597,7 +614,6 @@ ejs-dropdownlist {
|
|
|
597
614
|
|
|
598
615
|
.e-ddl.e-popup .e-filter-parent .e-input-group input.e-input-filter {
|
|
599
616
|
border-color: transparent;
|
|
600
|
-
background: none;
|
|
601
617
|
}
|
|
602
618
|
|
|
603
619
|
/*! TreeView's fabric theme wise override definitions and variables */
|
|
@@ -986,6 +1002,10 @@ ejs-dropdownlist {
|
|
|
986
1002
|
content: "";
|
|
987
1003
|
}
|
|
988
1004
|
|
|
1005
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-icons.e-resizer-right::before {
|
|
1006
|
+
content: "\eb06";
|
|
1007
|
+
}
|
|
1008
|
+
|
|
989
1009
|
.e-multi-select-wrapper {
|
|
990
1010
|
-webkit-box-sizing: border-box;
|
|
991
1011
|
box-sizing: border-box;
|
|
@@ -1742,6 +1762,15 @@ ejs-multiselect {
|
|
|
1742
1762
|
cursor: pointer;
|
|
1743
1763
|
}
|
|
1744
1764
|
|
|
1765
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-resizer-right {
|
|
1766
|
+
bottom: 0;
|
|
1767
|
+
right: 0;
|
|
1768
|
+
cursor: nwse-resize;
|
|
1769
|
+
height: 15px;
|
|
1770
|
+
position: absolute;
|
|
1771
|
+
width: 15px;
|
|
1772
|
+
}
|
|
1773
|
+
|
|
1745
1774
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1746
1775
|
color: #666;
|
|
1747
1776
|
}
|
package/styles/fabric.css
CHANGED
|
@@ -66,6 +66,10 @@
|
|
|
66
66
|
position: absolute;
|
|
67
67
|
}
|
|
68
68
|
|
|
69
|
+
.e-mention.e-popup .e-dropdownbase {
|
|
70
|
+
min-height: 36px;
|
|
71
|
+
}
|
|
72
|
+
|
|
69
73
|
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
70
74
|
display: inline;
|
|
71
75
|
font-weight: bold;
|
|
@@ -463,6 +467,10 @@
|
|
|
463
467
|
font-family: "e-icons";
|
|
464
468
|
}
|
|
465
469
|
|
|
470
|
+
.e-ddl.e-popup.e-resize .e-icons.e-resizer-right::before {
|
|
471
|
+
content: "\eb06";
|
|
472
|
+
}
|
|
473
|
+
|
|
466
474
|
.e-popup.e-wide-popup.e-ddl-device.e-popup-close {
|
|
467
475
|
display: block;
|
|
468
476
|
visibility: hidden;
|
|
@@ -661,6 +669,15 @@ ejs-dropdownlist {
|
|
|
661
669
|
min-height: 33px;
|
|
662
670
|
}
|
|
663
671
|
|
|
672
|
+
.e-ddl.e-popup.e-resize .e-resizer-right {
|
|
673
|
+
bottom: 0;
|
|
674
|
+
right: 0;
|
|
675
|
+
cursor: nwse-resize;
|
|
676
|
+
height: 15px;
|
|
677
|
+
position: absolute;
|
|
678
|
+
width: 15px;
|
|
679
|
+
}
|
|
680
|
+
|
|
664
681
|
.e-popup {
|
|
665
682
|
border-color: #eaeaea;
|
|
666
683
|
}
|
|
@@ -672,7 +689,6 @@ ejs-dropdownlist {
|
|
|
672
689
|
|
|
673
690
|
.e-ddl.e-popup .e-filter-parent .e-input-group input.e-input-filter {
|
|
674
691
|
border-color: transparent;
|
|
675
|
-
background: none;
|
|
676
692
|
}
|
|
677
693
|
|
|
678
694
|
.e-bigger .e-input-group.e-ddl .e-input-filter, .e-bigger .e-input-group.e-ddl .e-input-filter:focus {
|
|
@@ -1234,6 +1250,10 @@ ejs-dropdownlist {
|
|
|
1234
1250
|
content: "";
|
|
1235
1251
|
}
|
|
1236
1252
|
|
|
1253
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-icons.e-resizer-right::before {
|
|
1254
|
+
content: "\eb06";
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1237
1257
|
.e-multi-select-wrapper {
|
|
1238
1258
|
-webkit-box-sizing: border-box;
|
|
1239
1259
|
box-sizing: border-box;
|
|
@@ -1990,6 +2010,15 @@ ejs-multiselect {
|
|
|
1990
2010
|
cursor: pointer;
|
|
1991
2011
|
}
|
|
1992
2012
|
|
|
2013
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-resizer-right {
|
|
2014
|
+
bottom: 0;
|
|
2015
|
+
right: 0;
|
|
2016
|
+
cursor: nwse-resize;
|
|
2017
|
+
height: 15px;
|
|
2018
|
+
position: absolute;
|
|
2019
|
+
width: 15px;
|
|
2020
|
+
}
|
|
2021
|
+
|
|
1993
2022
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1994
2023
|
color: #666;
|
|
1995
2024
|
}
|
|
@@ -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;
|
|
@@ -466,6 +470,10 @@
|
|
|
466
470
|
font-family: "e-icons";
|
|
467
471
|
}
|
|
468
472
|
|
|
473
|
+
.e-ddl.e-popup.e-resize .e-icons.e-resizer-right::before {
|
|
474
|
+
content: "\e761";
|
|
475
|
+
}
|
|
476
|
+
|
|
469
477
|
.e-popup.e-wide-popup.e-ddl-device.e-popup-close {
|
|
470
478
|
display: block;
|
|
471
479
|
visibility: hidden;
|
|
@@ -661,6 +669,15 @@ ejs-dropdownlist {
|
|
|
661
669
|
min-height: 33px;
|
|
662
670
|
}
|
|
663
671
|
|
|
672
|
+
.e-ddl.e-popup.e-resize .e-resizer-right {
|
|
673
|
+
bottom: 0;
|
|
674
|
+
right: 0;
|
|
675
|
+
cursor: nwse-resize;
|
|
676
|
+
height: 15px;
|
|
677
|
+
position: absolute;
|
|
678
|
+
width: 15px;
|
|
679
|
+
}
|
|
680
|
+
|
|
664
681
|
.e-popup {
|
|
665
682
|
border-color: #292827;
|
|
666
683
|
}
|
|
@@ -672,7 +689,6 @@ ejs-dropdownlist {
|
|
|
672
689
|
|
|
673
690
|
.e-ddl.e-popup .e-filter-parent .e-input-group input.e-input-filter {
|
|
674
691
|
border-color: transparent;
|
|
675
|
-
background: none;
|
|
676
692
|
}
|
|
677
693
|
|
|
678
694
|
/*! TreeView's bootstrap5 theme wise override definitions and variables */
|
|
@@ -1086,6 +1102,10 @@ ejs-dropdownlist {
|
|
|
1086
1102
|
content: "";
|
|
1087
1103
|
}
|
|
1088
1104
|
|
|
1105
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-icons.e-resizer-right::before {
|
|
1106
|
+
content: "\e761";
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1089
1109
|
.e-multi-select-wrapper {
|
|
1090
1110
|
-webkit-box-sizing: border-box;
|
|
1091
1111
|
box-sizing: border-box;
|
|
@@ -1428,6 +1448,7 @@ ejs-dropdownlist {
|
|
|
1428
1448
|
max-width: 100%;
|
|
1429
1449
|
padding-left: 8px;
|
|
1430
1450
|
padding-right: 6px;
|
|
1451
|
+
vertical-align: middle;
|
|
1431
1452
|
}
|
|
1432
1453
|
|
|
1433
1454
|
.e-multi-select-list-wrapper .e-hide-listitem,
|
|
@@ -1850,6 +1871,15 @@ ejs-multiselect {
|
|
|
1850
1871
|
cursor: pointer;
|
|
1851
1872
|
}
|
|
1852
1873
|
|
|
1874
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-resizer-right {
|
|
1875
|
+
bottom: 0;
|
|
1876
|
+
right: 0;
|
|
1877
|
+
cursor: nwse-resize;
|
|
1878
|
+
height: 15px;
|
|
1879
|
+
position: absolute;
|
|
1880
|
+
width: 15px;
|
|
1881
|
+
}
|
|
1882
|
+
|
|
1853
1883
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1854
1884
|
color: #f3f2f1;
|
|
1855
1885
|
}
|
package/styles/fluent-dark.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;
|
|
@@ -567,6 +571,10 @@
|
|
|
567
571
|
font-family: "e-icons";
|
|
568
572
|
}
|
|
569
573
|
|
|
574
|
+
.e-ddl.e-popup.e-resize .e-icons.e-resizer-right::before {
|
|
575
|
+
content: "\e761";
|
|
576
|
+
}
|
|
577
|
+
|
|
570
578
|
.e-popup.e-wide-popup.e-ddl-device.e-popup-close {
|
|
571
579
|
display: block;
|
|
572
580
|
visibility: hidden;
|
|
@@ -762,6 +770,15 @@ ejs-dropdownlist {
|
|
|
762
770
|
min-height: 33px;
|
|
763
771
|
}
|
|
764
772
|
|
|
773
|
+
.e-ddl.e-popup.e-resize .e-resizer-right {
|
|
774
|
+
bottom: 0;
|
|
775
|
+
right: 0;
|
|
776
|
+
cursor: nwse-resize;
|
|
777
|
+
height: 15px;
|
|
778
|
+
position: absolute;
|
|
779
|
+
width: 15px;
|
|
780
|
+
}
|
|
781
|
+
|
|
765
782
|
.e-popup {
|
|
766
783
|
border-color: #292827;
|
|
767
784
|
}
|
|
@@ -773,7 +790,6 @@ ejs-dropdownlist {
|
|
|
773
790
|
|
|
774
791
|
.e-ddl.e-popup .e-filter-parent .e-input-group input.e-input-filter {
|
|
775
792
|
border-color: transparent;
|
|
776
|
-
background: none;
|
|
777
793
|
}
|
|
778
794
|
|
|
779
795
|
.e-bigger .e-input-group.e-ddl .e-input-filter, .e-bigger .e-input-group.e-ddl .e-input-filter:focus {
|
|
@@ -1396,6 +1412,10 @@ ejs-dropdownlist {
|
|
|
1396
1412
|
content: "";
|
|
1397
1413
|
}
|
|
1398
1414
|
|
|
1415
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-icons.e-resizer-right::before {
|
|
1416
|
+
content: "\e761";
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1399
1419
|
.e-multi-select-wrapper {
|
|
1400
1420
|
-webkit-box-sizing: border-box;
|
|
1401
1421
|
box-sizing: border-box;
|
|
@@ -1738,6 +1758,7 @@ ejs-dropdownlist {
|
|
|
1738
1758
|
max-width: 100%;
|
|
1739
1759
|
padding-left: 8px;
|
|
1740
1760
|
padding-right: 6px;
|
|
1761
|
+
vertical-align: middle;
|
|
1741
1762
|
}
|
|
1742
1763
|
|
|
1743
1764
|
.e-multi-select-list-wrapper .e-hide-listitem,
|
|
@@ -2160,6 +2181,15 @@ ejs-multiselect {
|
|
|
2160
2181
|
cursor: pointer;
|
|
2161
2182
|
}
|
|
2162
2183
|
|
|
2184
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-resizer-right {
|
|
2185
|
+
bottom: 0;
|
|
2186
|
+
right: 0;
|
|
2187
|
+
cursor: nwse-resize;
|
|
2188
|
+
height: 15px;
|
|
2189
|
+
position: absolute;
|
|
2190
|
+
width: 15px;
|
|
2191
|
+
}
|
|
2192
|
+
|
|
2163
2193
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
2164
2194
|
color: #f3f2f1;
|
|
2165
2195
|
}
|
package/styles/fluent-lite.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;
|
|
@@ -466,6 +470,10 @@
|
|
|
466
470
|
font-family: "e-icons";
|
|
467
471
|
}
|
|
468
472
|
|
|
473
|
+
.e-ddl.e-popup.e-resize .e-icons.e-resizer-right::before {
|
|
474
|
+
content: "\e761";
|
|
475
|
+
}
|
|
476
|
+
|
|
469
477
|
.e-popup.e-wide-popup.e-ddl-device.e-popup-close {
|
|
470
478
|
display: block;
|
|
471
479
|
visibility: hidden;
|
|
@@ -661,6 +669,15 @@ ejs-dropdownlist {
|
|
|
661
669
|
min-height: 33px;
|
|
662
670
|
}
|
|
663
671
|
|
|
672
|
+
.e-ddl.e-popup.e-resize .e-resizer-right {
|
|
673
|
+
bottom: 0;
|
|
674
|
+
right: 0;
|
|
675
|
+
cursor: nwse-resize;
|
|
676
|
+
height: 15px;
|
|
677
|
+
position: absolute;
|
|
678
|
+
width: 15px;
|
|
679
|
+
}
|
|
680
|
+
|
|
664
681
|
.e-popup {
|
|
665
682
|
border-color: #edebe9;
|
|
666
683
|
}
|
|
@@ -672,7 +689,6 @@ ejs-dropdownlist {
|
|
|
672
689
|
|
|
673
690
|
.e-ddl.e-popup .e-filter-parent .e-input-group input.e-input-filter {
|
|
674
691
|
border-color: transparent;
|
|
675
|
-
background: none;
|
|
676
692
|
}
|
|
677
693
|
|
|
678
694
|
/*! TreeView's bootstrap5 theme wise override definitions and variables */
|
|
@@ -1086,6 +1102,10 @@ ejs-dropdownlist {
|
|
|
1086
1102
|
content: "";
|
|
1087
1103
|
}
|
|
1088
1104
|
|
|
1105
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-icons.e-resizer-right::before {
|
|
1106
|
+
content: "\e761";
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1089
1109
|
.e-multi-select-wrapper {
|
|
1090
1110
|
-webkit-box-sizing: border-box;
|
|
1091
1111
|
box-sizing: border-box;
|
|
@@ -1428,6 +1448,7 @@ ejs-dropdownlist {
|
|
|
1428
1448
|
max-width: 100%;
|
|
1429
1449
|
padding-left: 8px;
|
|
1430
1450
|
padding-right: 6px;
|
|
1451
|
+
vertical-align: middle;
|
|
1431
1452
|
}
|
|
1432
1453
|
|
|
1433
1454
|
.e-multi-select-list-wrapper .e-hide-listitem,
|
|
@@ -1850,6 +1871,15 @@ ejs-multiselect {
|
|
|
1850
1871
|
cursor: pointer;
|
|
1851
1872
|
}
|
|
1852
1873
|
|
|
1874
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-resizer-right {
|
|
1875
|
+
bottom: 0;
|
|
1876
|
+
right: 0;
|
|
1877
|
+
cursor: nwse-resize;
|
|
1878
|
+
height: 15px;
|
|
1879
|
+
position: absolute;
|
|
1880
|
+
width: 15px;
|
|
1881
|
+
}
|
|
1882
|
+
|
|
1853
1883
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1854
1884
|
color: #201f1e;
|
|
1855
1885
|
}
|
package/styles/fluent.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;
|
|
@@ -567,6 +571,10 @@
|
|
|
567
571
|
font-family: "e-icons";
|
|
568
572
|
}
|
|
569
573
|
|
|
574
|
+
.e-ddl.e-popup.e-resize .e-icons.e-resizer-right::before {
|
|
575
|
+
content: "\e761";
|
|
576
|
+
}
|
|
577
|
+
|
|
570
578
|
.e-popup.e-wide-popup.e-ddl-device.e-popup-close {
|
|
571
579
|
display: block;
|
|
572
580
|
visibility: hidden;
|
|
@@ -762,6 +770,15 @@ ejs-dropdownlist {
|
|
|
762
770
|
min-height: 33px;
|
|
763
771
|
}
|
|
764
772
|
|
|
773
|
+
.e-ddl.e-popup.e-resize .e-resizer-right {
|
|
774
|
+
bottom: 0;
|
|
775
|
+
right: 0;
|
|
776
|
+
cursor: nwse-resize;
|
|
777
|
+
height: 15px;
|
|
778
|
+
position: absolute;
|
|
779
|
+
width: 15px;
|
|
780
|
+
}
|
|
781
|
+
|
|
765
782
|
.e-popup {
|
|
766
783
|
border-color: #edebe9;
|
|
767
784
|
}
|
|
@@ -773,7 +790,6 @@ ejs-dropdownlist {
|
|
|
773
790
|
|
|
774
791
|
.e-ddl.e-popup .e-filter-parent .e-input-group input.e-input-filter {
|
|
775
792
|
border-color: transparent;
|
|
776
|
-
background: none;
|
|
777
793
|
}
|
|
778
794
|
|
|
779
795
|
.e-bigger .e-input-group.e-ddl .e-input-filter, .e-bigger .e-input-group.e-ddl .e-input-filter:focus {
|
|
@@ -1396,6 +1412,10 @@ ejs-dropdownlist {
|
|
|
1396
1412
|
content: "";
|
|
1397
1413
|
}
|
|
1398
1414
|
|
|
1415
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-icons.e-resizer-right::before {
|
|
1416
|
+
content: "\e761";
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1399
1419
|
.e-multi-select-wrapper {
|
|
1400
1420
|
-webkit-box-sizing: border-box;
|
|
1401
1421
|
box-sizing: border-box;
|
|
@@ -1738,6 +1758,7 @@ ejs-dropdownlist {
|
|
|
1738
1758
|
max-width: 100%;
|
|
1739
1759
|
padding-left: 8px;
|
|
1740
1760
|
padding-right: 6px;
|
|
1761
|
+
vertical-align: middle;
|
|
1741
1762
|
}
|
|
1742
1763
|
|
|
1743
1764
|
.e-multi-select-list-wrapper .e-hide-listitem,
|
|
@@ -2160,6 +2181,15 @@ ejs-multiselect {
|
|
|
2160
2181
|
cursor: pointer;
|
|
2161
2182
|
}
|
|
2162
2183
|
|
|
2184
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-resizer-right {
|
|
2185
|
+
bottom: 0;
|
|
2186
|
+
right: 0;
|
|
2187
|
+
cursor: nwse-resize;
|
|
2188
|
+
height: 15px;
|
|
2189
|
+
position: absolute;
|
|
2190
|
+
width: 15px;
|
|
2191
|
+
}
|
|
2192
|
+
|
|
2163
2193
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
2164
2194
|
color: #201f1e;
|
|
2165
2195
|
}
|
package/styles/fluent2-lite.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;
|
|
@@ -635,6 +639,10 @@
|
|
|
635
639
|
font-family: "e-icons";
|
|
636
640
|
}
|
|
637
641
|
|
|
642
|
+
.e-ddl.e-popup.e-resize .e-icons.e-resizer-right::before {
|
|
643
|
+
content: "\e832";
|
|
644
|
+
}
|
|
645
|
+
|
|
638
646
|
.e-popup.e-wide-popup.e-ddl-device.e-popup-close {
|
|
639
647
|
display: block;
|
|
640
648
|
visibility: hidden;
|
|
@@ -834,6 +842,15 @@ ejs-dropdownlist {
|
|
|
834
842
|
min-height: 33px;
|
|
835
843
|
}
|
|
836
844
|
|
|
845
|
+
.e-ddl.e-popup.e-resize .e-resizer-right {
|
|
846
|
+
bottom: 0;
|
|
847
|
+
right: 0;
|
|
848
|
+
cursor: nwse-resize;
|
|
849
|
+
height: 15px;
|
|
850
|
+
position: absolute;
|
|
851
|
+
width: 15px;
|
|
852
|
+
}
|
|
853
|
+
|
|
837
854
|
.e-popup {
|
|
838
855
|
border-color: var(--color-sf-border-light);
|
|
839
856
|
}
|
|
@@ -845,7 +862,6 @@ ejs-dropdownlist {
|
|
|
845
862
|
|
|
846
863
|
.e-ddl.e-popup .e-filter-parent .e-input-group input.e-input-filter {
|
|
847
864
|
border-color: transparent;
|
|
848
|
-
background: none;
|
|
849
865
|
}
|
|
850
866
|
|
|
851
867
|
/*! TreeView's theme wise override definitions and variables */
|
|
@@ -1293,6 +1309,10 @@ ejs-dropdownlist {
|
|
|
1293
1309
|
width: 14px;
|
|
1294
1310
|
}
|
|
1295
1311
|
|
|
1312
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-icons.e-resizer-right::before {
|
|
1313
|
+
content: "\e832";
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1296
1316
|
.e-multi-select-wrapper {
|
|
1297
1317
|
-webkit-box-sizing: border-box;
|
|
1298
1318
|
box-sizing: border-box;
|
|
@@ -1568,7 +1588,7 @@ ejs-dropdownlist {
|
|
|
1568
1588
|
.e-multi-select-wrapper input[type=text] {
|
|
1569
1589
|
background: none;
|
|
1570
1590
|
border: 0;
|
|
1571
|
-
font-family: "Segoe UI", -apple-system,
|
|
1591
|
+
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
1572
1592
|
font-size: 14px;
|
|
1573
1593
|
font-weight: normal;
|
|
1574
1594
|
height: 28px;
|
|
@@ -1582,7 +1602,7 @@ ejs-dropdownlist {
|
|
|
1582
1602
|
background: none;
|
|
1583
1603
|
border: 0;
|
|
1584
1604
|
color: inherit;
|
|
1585
|
-
font-family: "Segoe UI", -apple-system,
|
|
1605
|
+
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
1586
1606
|
font-size: 14px;
|
|
1587
1607
|
font-weight: normal;
|
|
1588
1608
|
height: 28px;
|
|
@@ -1617,7 +1637,7 @@ ejs-dropdownlist {
|
|
|
1617
1637
|
}
|
|
1618
1638
|
|
|
1619
1639
|
.e-multi-select-wrapper .e-delim-values {
|
|
1620
|
-
font-family: "Segoe UI", -apple-system,
|
|
1640
|
+
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
1621
1641
|
font-size: 14px;
|
|
1622
1642
|
line-height: 28px;
|
|
1623
1643
|
max-width: 100%;
|
|
@@ -1799,7 +1819,7 @@ ejs-dropdownlist {
|
|
|
1799
1819
|
|
|
1800
1820
|
.e-multi-select-list-wrapper .e-selectall-parent .e-all-text {
|
|
1801
1821
|
color: var(--color-sf-content-text-color);
|
|
1802
|
-
font-family: "Segoe UI", -apple-system,
|
|
1822
|
+
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
1803
1823
|
font-size: 14px;
|
|
1804
1824
|
}
|
|
1805
1825
|
|
|
@@ -1825,6 +1845,10 @@ ejs-dropdownlist {
|
|
|
1825
1845
|
float: left;
|
|
1826
1846
|
}
|
|
1827
1847
|
|
|
1848
|
+
.e-multiselect.e-control-wrapper.e-checkbox .e-multi-select-wrapper.e-down-icon {
|
|
1849
|
+
padding-right: 0 48px 0 0;
|
|
1850
|
+
}
|
|
1851
|
+
|
|
1828
1852
|
.e-multiselect .e-multi-select-wrapper.e-down-icon {
|
|
1829
1853
|
padding: 1px 0;
|
|
1830
1854
|
}
|
|
@@ -2031,6 +2055,15 @@ ejs-multiselect {
|
|
|
2031
2055
|
cursor: pointer;
|
|
2032
2056
|
}
|
|
2033
2057
|
|
|
2058
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-resizer-right {
|
|
2059
|
+
bottom: 0;
|
|
2060
|
+
right: 0;
|
|
2061
|
+
cursor: nwse-resize;
|
|
2062
|
+
height: 15px;
|
|
2063
|
+
position: absolute;
|
|
2064
|
+
width: 15px;
|
|
2065
|
+
}
|
|
2066
|
+
|
|
2034
2067
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
2035
2068
|
color: var(--color-sf-content-text-color);
|
|
2036
2069
|
}
|
|
@@ -2052,7 +2085,7 @@ ejs-multiselect {
|
|
|
2052
2085
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
2053
2086
|
-webkit-text-fill-color: var(--color-sf-content-text-color);
|
|
2054
2087
|
color: var(--color-sf-content-text-color);
|
|
2055
|
-
font-family: "Segoe UI", -apple-system,
|
|
2088
|
+
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
2056
2089
|
font-size: 14px;
|
|
2057
2090
|
}
|
|
2058
2091
|
|
|
@@ -2765,7 +2798,7 @@ ejs-listbox {
|
|
|
2765
2798
|
.e-listbox-wrapper,
|
|
2766
2799
|
.e-listbox-container,
|
|
2767
2800
|
.e-listboxtool-wrapper {
|
|
2768
|
-
font-family: "Segoe UI", -apple-system,
|
|
2801
|
+
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
2769
2802
|
font-size: 14px;
|
|
2770
2803
|
}
|
|
2771
2804
|
.e-listbox-wrapper .e-list-header,
|