@syncfusion/ej2-dropdowns 20.2.48 → 20.3.47
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/CHANGELOG.md +14 -28
- package/dist/ej2-dropdowns.min.js +10 -0
- package/dist/ej2-dropdowns.umd.min.js +2 -2
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +1437 -47
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +1463 -51
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +2 -2
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/mention.d.ts +4 -0
- package/mention.js +4 -0
- package/package.json +12 -12
- package/src/auto-complete/auto-complete.js +6 -2
- package/src/combo-box/combo-box.js +1 -3
- package/src/drop-down-base/drop-down-base.d.ts +2 -0
- package/src/drop-down-base/drop-down-base.js +6 -1
- package/src/drop-down-list/drop-down-list.d.ts +1 -0
- package/src/drop-down-list/drop-down-list.js +33 -21
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/list-box/list-box.js +16 -11
- package/src/mention/index.d.ts +5 -0
- package/src/mention/index.js +4 -0
- package/src/mention/mention-model.d.ts +285 -0
- package/src/mention/mention.d.ts +451 -0
- package/src/mention/mention.js +1369 -0
- package/src/multi-select/checkbox-selection.js +1 -4
- package/src/multi-select/multi-select-model.d.ts +1 -1
- package/src/multi-select/multi-select.d.ts +1 -0
- package/src/multi-select/multi-select.js +35 -9
- package/styles/auto-complete/_all.scss +1 -1
- package/styles/auto-complete/_bootstrap-dark-definition.scss +1 -1
- package/styles/auto-complete/_bootstrap-definition.scss +1 -1
- package/styles/auto-complete/_bootstrap4-definition.scss +2 -2
- package/styles/auto-complete/_bootstrap5-definition.scss +1 -1
- package/styles/auto-complete/_fabric-dark-definition.scss +1 -1
- package/styles/auto-complete/_fabric-definition.scss +1 -1
- package/styles/auto-complete/_fluent-definition.scss +1 -1
- package/styles/auto-complete/_fusionnew-definition.scss +1 -1
- package/styles/auto-complete/_highcontrast-definition.scss +1 -1
- package/styles/auto-complete/_highcontrast-light-definition.scss +1 -1
- package/styles/auto-complete/_material-dark-definition.scss +1 -1
- package/styles/auto-complete/_material-definition.scss +1 -1
- package/styles/auto-complete/_material3-definition.scss +1 -1
- package/styles/auto-complete/_tailwind-definition.scss +1 -1
- package/styles/auto-complete/bootstrap-dark.css +3 -1
- package/styles/auto-complete/bootstrap.css +3 -1
- package/styles/auto-complete/bootstrap4.css +3 -1
- package/styles/auto-complete/bootstrap5-dark.css +3 -1
- package/styles/auto-complete/bootstrap5.css +3 -1
- package/styles/auto-complete/fabric-dark.css +3 -1
- package/styles/auto-complete/fabric.css +3 -1
- package/styles/auto-complete/fluent-dark.css +3 -1
- package/styles/auto-complete/fluent.css +3 -1
- package/styles/auto-complete/highcontrast-light.css +3 -1
- package/styles/auto-complete/highcontrast.css +3 -1
- package/styles/auto-complete/material-dark.css +3 -1
- package/styles/auto-complete/material.css +3 -1
- package/styles/auto-complete/tailwind-dark.css +3 -1
- package/styles/auto-complete/tailwind.css +3 -1
- package/styles/bootstrap-dark.css +94 -42
- package/styles/bootstrap-dark.scss +1 -0
- package/styles/bootstrap.css +94 -42
- package/styles/bootstrap.scss +1 -0
- package/styles/bootstrap4.css +95 -42
- package/styles/bootstrap4.scss +1 -0
- package/styles/bootstrap5-dark.css +101 -44
- package/styles/bootstrap5-dark.scss +1 -0
- package/styles/bootstrap5.css +101 -44
- package/styles/bootstrap5.scss +1 -0
- package/styles/combo-box/_all.scss +1 -1
- package/styles/combo-box/_bootstrap-dark-definition.scss +1 -1
- package/styles/combo-box/_bootstrap-definition.scss +1 -1
- package/styles/combo-box/_bootstrap4-definition.scss +2 -2
- package/styles/combo-box/_bootstrap5-definition.scss +1 -1
- package/styles/combo-box/_fabric-dark-definition.scss +1 -1
- package/styles/combo-box/_fabric-definition.scss +1 -1
- package/styles/combo-box/_fluent-definition.scss +1 -1
- package/styles/combo-box/_fusionnew-definition.scss +1 -1
- package/styles/combo-box/_highcontrast-definition.scss +1 -1
- package/styles/combo-box/_highcontrast-light-definition.scss +1 -1
- package/styles/combo-box/_material-dark-definition.scss +1 -1
- package/styles/combo-box/_material-definition.scss +1 -1
- package/styles/combo-box/_material3-definition.scss +1 -1
- package/styles/combo-box/_tailwind-definition.scss +1 -1
- package/styles/combo-box/bootstrap-dark.css +3 -1
- package/styles/combo-box/bootstrap.css +3 -1
- package/styles/combo-box/bootstrap4.css +3 -1
- package/styles/combo-box/bootstrap5-dark.css +3 -1
- package/styles/combo-box/bootstrap5.css +3 -1
- package/styles/combo-box/fabric-dark.css +3 -1
- package/styles/combo-box/fabric.css +3 -1
- package/styles/combo-box/fluent-dark.css +3 -1
- package/styles/combo-box/fluent.css +3 -1
- package/styles/combo-box/highcontrast-light.css +3 -1
- package/styles/combo-box/highcontrast.css +3 -1
- package/styles/combo-box/material-dark.css +3 -1
- package/styles/combo-box/material.css +3 -1
- package/styles/combo-box/tailwind-dark.css +3 -1
- package/styles/combo-box/tailwind.css +3 -1
- package/styles/drop-down-base/_all.scss +1 -1
- package/styles/drop-down-base/_bootstrap-dark-definition.scss +8 -2
- package/styles/drop-down-base/_bootstrap-definition.scss +6 -1
- package/styles/drop-down-base/_bootstrap4-definition.scss +6 -1
- package/styles/drop-down-base/_bootstrap5-definition.scss +8 -3
- package/styles/drop-down-base/_fabric-dark-definition.scss +6 -1
- package/styles/drop-down-base/_fabric-definition.scss +6 -1
- package/styles/drop-down-base/_fluent-definition.scss +8 -2
- package/styles/drop-down-base/_fusionnew-definition.scss +8 -3
- package/styles/drop-down-base/_highcontrast-definition.scss +16 -6
- package/styles/drop-down-base/_highcontrast-light-definition.scss +18 -7
- package/styles/drop-down-base/_layout.scss +44 -3
- package/styles/drop-down-base/_material-dark-definition.scss +7 -1
- package/styles/drop-down-base/_material-definition.scss +6 -0
- package/styles/drop-down-base/_material3-definition.scss +8 -3
- package/styles/drop-down-base/_tailwind-definition.scss +8 -3
- package/styles/drop-down-base/_theme.scss +4 -4
- package/styles/drop-down-base/bootstrap-dark.css +42 -1
- package/styles/drop-down-base/bootstrap.css +42 -1
- package/styles/drop-down-base/bootstrap4.css +42 -1
- package/styles/drop-down-base/bootstrap5-dark.css +42 -1
- package/styles/drop-down-base/bootstrap5.css +42 -1
- package/styles/drop-down-base/fabric-dark.css +42 -1
- package/styles/drop-down-base/fabric.css +42 -1
- package/styles/drop-down-base/fluent-dark.css +42 -1
- package/styles/drop-down-base/fluent.css +42 -1
- package/styles/drop-down-base/highcontrast-light.css +42 -1
- package/styles/drop-down-base/highcontrast.css +42 -1
- package/styles/drop-down-base/material-dark.css +42 -1
- package/styles/drop-down-base/material.css +42 -1
- package/styles/drop-down-base/tailwind-dark.css +42 -1
- package/styles/drop-down-base/tailwind.css +42 -1
- package/styles/drop-down-list/_all.scss +2 -1
- package/styles/drop-down-list/_bootstrap-dark-definition.scss +2 -1
- package/styles/drop-down-list/_bootstrap-definition.scss +2 -1
- package/styles/drop-down-list/_bootstrap4-definition.scss +3 -1
- package/styles/drop-down-list/_bootstrap5-definition.scss +3 -3
- package/styles/drop-down-list/_fabric-dark-definition.scss +2 -1
- package/styles/drop-down-list/_fabric-definition.scss +2 -0
- package/styles/drop-down-list/_fluent-definition.scss +2 -1
- package/styles/drop-down-list/_fusionnew-definition.scss +3 -3
- package/styles/drop-down-list/_highcontrast-definition.scss +21 -10
- package/styles/drop-down-list/_highcontrast-light-definition.scss +22 -11
- package/styles/drop-down-list/_layout.scss +8 -9
- package/styles/drop-down-list/_material-dark-definition.scss +2 -2
- package/styles/drop-down-list/_material-definition.scss +1 -0
- package/styles/drop-down-list/_material3-definition.scss +3 -3
- package/styles/drop-down-list/_tailwind-definition.scss +1 -0
- package/styles/drop-down-list/_theme.scss +3 -3
- package/styles/drop-down-list/bootstrap-dark.css +5 -0
- package/styles/drop-down-list/bootstrap.css +5 -0
- package/styles/drop-down-list/bootstrap4.css +5 -0
- package/styles/drop-down-list/bootstrap5-dark.css +6 -0
- package/styles/drop-down-list/bootstrap5.css +6 -0
- package/styles/drop-down-list/fabric-dark.css +5 -0
- package/styles/drop-down-list/fabric.css +5 -0
- package/styles/drop-down-list/fluent-dark.css +6 -0
- package/styles/drop-down-list/fluent.css +6 -0
- package/styles/drop-down-list/highcontrast-light.css +5 -0
- package/styles/drop-down-list/highcontrast.css +5 -0
- package/styles/drop-down-list/icons/_bootstrap.scss +0 -1
- package/styles/drop-down-list/icons/_fabric.scss +0 -1
- package/styles/drop-down-list/icons/_material.scss +0 -1
- package/styles/drop-down-list/material-dark.css +5 -0
- package/styles/drop-down-list/material.css +5 -0
- package/styles/drop-down-list/tailwind-dark.css +6 -0
- package/styles/drop-down-list/tailwind.css +6 -0
- package/styles/drop-down-tree/_all.scss +1 -1
- package/styles/drop-down-tree/_bootstrap-dark-definition.scss +1 -1
- package/styles/drop-down-tree/_bootstrap-definition.scss +1 -1
- package/styles/drop-down-tree/_bootstrap4-definition.scss +1 -1
- package/styles/drop-down-tree/_bootstrap5-definition.scss +2 -2
- package/styles/drop-down-tree/_fabric-dark-definition.scss +1 -1
- package/styles/drop-down-tree/_fabric-definition.scss +2 -2
- package/styles/drop-down-tree/_fluent-definition.scss +2 -2
- package/styles/drop-down-tree/_fusionnew-definition.scss +2 -2
- package/styles/drop-down-tree/_highcontrast-definition.scss +1 -1
- package/styles/drop-down-tree/_highcontrast-light-definition.scss +1 -1
- package/styles/drop-down-tree/_layout.scss +1 -2
- package/styles/drop-down-tree/_material-dark-definition.scss +2 -2
- package/styles/drop-down-tree/_material-definition.scss +2 -2
- package/styles/drop-down-tree/_material3-definition.scss +2 -2
- package/styles/drop-down-tree/_tailwind-definition.scss +2 -2
- package/styles/drop-down-tree/bootstrap-dark.css +4 -0
- package/styles/drop-down-tree/bootstrap.css +4 -0
- package/styles/drop-down-tree/bootstrap4.css +4 -0
- package/styles/drop-down-tree/bootstrap5-dark.css +5 -0
- package/styles/drop-down-tree/bootstrap5.css +5 -0
- package/styles/drop-down-tree/fabric-dark.css +4 -0
- package/styles/drop-down-tree/fabric.css +4 -0
- package/styles/drop-down-tree/fluent-dark.css +5 -0
- package/styles/drop-down-tree/fluent.css +5 -0
- package/styles/drop-down-tree/highcontrast-light.css +4 -0
- package/styles/drop-down-tree/highcontrast.css +4 -0
- package/styles/drop-down-tree/icons/_bootstrap.scss +0 -1
- package/styles/drop-down-tree/icons/_bootstrap4.scss +0 -1
- package/styles/drop-down-tree/icons/_fabric.scss +0 -1
- package/styles/drop-down-tree/icons/_highcontrast-light.scss +0 -1
- package/styles/drop-down-tree/icons/_highcontrast.scss +0 -1
- package/styles/drop-down-tree/icons/_material-dark.scss +0 -1
- package/styles/drop-down-tree/icons/_material.scss +0 -1
- package/styles/drop-down-tree/material-dark.css +4 -0
- package/styles/drop-down-tree/material.css +4 -0
- package/styles/drop-down-tree/tailwind-dark.css +5 -0
- package/styles/drop-down-tree/tailwind.css +5 -0
- package/styles/fabric-dark.css +94 -42
- package/styles/fabric-dark.scss +1 -0
- package/styles/fabric.css +94 -42
- package/styles/fabric.scss +1 -0
- package/styles/fluent-dark.css +101 -44
- package/styles/fluent-dark.scss +1 -0
- package/styles/fluent.css +101 -44
- package/styles/fluent.scss +1 -0
- package/styles/highcontrast-light.css +97 -42
- package/styles/highcontrast-light.scss +1 -0
- package/styles/highcontrast.css +97 -42
- package/styles/highcontrast.scss +1 -0
- package/styles/list-box/_all.scss +1 -1
- package/styles/list-box/_bootstrap-dark-definition.scss +2 -0
- package/styles/list-box/_bootstrap-definition.scss +1 -0
- package/styles/list-box/_bootstrap4-definition.scss +1 -0
- package/styles/list-box/_bootstrap5-definition.scss +3 -0
- package/styles/list-box/_fabric-dark-definition.scss +3 -1
- package/styles/list-box/_fabric-definition.scss +1 -0
- package/styles/list-box/_fluent-definition.scss +3 -0
- package/styles/list-box/_fusionnew-definition.scss +1 -0
- package/styles/list-box/_highcontrast-definition.scss +1 -0
- package/styles/list-box/_highcontrast-light-definition.scss +3 -1
- package/styles/list-box/_layout.scss +8 -17
- package/styles/list-box/_material-dark-definition.scss +2 -0
- package/styles/list-box/_material-definition.scss +1 -0
- package/styles/list-box/_material3-definition.scss +1 -0
- package/styles/list-box/_tailwind-definition.scss +3 -0
- package/styles/list-box/_theme.scss +11 -25
- package/styles/list-box/bootstrap-dark.css +12 -33
- package/styles/list-box/bootstrap.css +14 -35
- package/styles/list-box/bootstrap4.css +14 -35
- package/styles/list-box/bootstrap5-dark.css +15 -36
- package/styles/list-box/bootstrap5.css +15 -36
- package/styles/list-box/fabric-dark.css +12 -33
- package/styles/list-box/fabric.css +14 -35
- package/styles/list-box/fluent-dark.css +15 -36
- package/styles/list-box/fluent.css +15 -36
- package/styles/list-box/highcontrast-light.css +12 -33
- package/styles/list-box/highcontrast.css +14 -35
- package/styles/list-box/icons/_bootstrap-dark.scss +2 -2
- package/styles/list-box/icons/_bootstrap.scss +1 -1
- package/styles/list-box/icons/_bootstrap4.scss +1 -1
- package/styles/list-box/icons/_bootstrap5.scss +1 -1
- package/styles/list-box/icons/_fabric-dark.scss +1 -1
- package/styles/list-box/icons/_fabric.scss +1 -1
- package/styles/list-box/icons/_fluent.scss +1 -1
- package/styles/list-box/icons/_fusionnew.scss +1 -1
- package/styles/list-box/icons/_highcontrast-light.scss +1 -1
- package/styles/list-box/icons/_highcontrast.scss +1 -1
- package/styles/list-box/icons/_material-dark.scss +1 -1
- package/styles/list-box/icons/_material.scss +2 -2
- package/styles/list-box/icons/_material3.scss +1 -1
- package/styles/list-box/icons/_tailwind-dark.scss +1 -1
- package/styles/list-box/icons/_tailwind.scss +1 -1
- package/styles/list-box/material-dark.css +12 -33
- package/styles/list-box/material.css +14 -35
- package/styles/list-box/tailwind-dark.css +15 -36
- package/styles/list-box/tailwind.css +15 -36
- package/styles/material-dark.css +94 -42
- package/styles/material-dark.scss +1 -0
- package/styles/material.css +94 -42
- package/styles/material.scss +1 -0
- package/styles/mention/_all.scss +1 -0
- package/styles/mention/_bootstrap-dark-definition.scss +3 -0
- package/styles/mention/_bootstrap-definition.scss +3 -0
- package/styles/mention/_bootstrap4-definition.scss +3 -0
- package/styles/mention/_bootstrap5-dark-definition.scss +1 -0
- package/styles/mention/_bootstrap5-definition.scss +1 -0
- package/styles/mention/_fabric-dark-definition.scss +2 -0
- package/styles/mention/_fabric-definition.scss +3 -0
- package/styles/mention/_fluent-dark-definition.scss +1 -0
- package/styles/mention/_fluent-definition.scss +1 -0
- package/styles/mention/_fusionnew-definition.scss +1 -0
- package/styles/mention/_highcontrast-definition.scss +3 -0
- package/styles/mention/_highcontrast-light-definition.scss +3 -0
- package/styles/mention/_layout.scss +6 -0
- package/styles/mention/_material-dark-definition.scss +3 -0
- package/styles/mention/_material-definition.scss +3 -0
- package/styles/mention/_material3-definition.scss +1 -0
- package/styles/mention/_tailwind-dark-definition.scss +1 -0
- package/styles/mention/_tailwind-definition.scss +1 -0
- package/styles/mention/bootstrap-dark.css +29 -0
- package/styles/mention/bootstrap-dark.scss +6 -0
- package/styles/mention/bootstrap.css +29 -0
- package/styles/mention/bootstrap.scss +6 -0
- package/styles/mention/bootstrap4.css +47 -0
- package/styles/mention/bootstrap4.scss +6 -0
- package/styles/mention/bootstrap5-dark.css +58 -0
- package/styles/mention/bootstrap5-dark.scss +6 -0
- package/styles/mention/bootstrap5.css +58 -0
- package/styles/mention/bootstrap5.scss +6 -0
- package/styles/mention/fabric-dark.css +29 -0
- package/styles/mention/fabric-dark.scss +6 -0
- package/styles/mention/fabric.css +29 -0
- package/styles/mention/fabric.scss +6 -0
- package/styles/mention/fluent-dark.css +58 -0
- package/styles/mention/fluent-dark.scss +6 -0
- package/styles/mention/fluent.css +58 -0
- package/styles/mention/fluent.scss +6 -0
- package/styles/mention/highcontrast-light.css +43 -0
- package/styles/mention/highcontrast-light.scss +6 -0
- package/styles/mention/highcontrast.css +43 -0
- package/styles/mention/highcontrast.scss +6 -0
- package/styles/mention/material-dark.css +29 -0
- package/styles/mention/material-dark.scss +6 -0
- package/styles/mention/material.css +29 -0
- package/styles/mention/material.scss +6 -0
- package/styles/mention/tailwind-dark.css +68 -0
- package/styles/mention/tailwind-dark.scss +6 -0
- package/styles/mention/tailwind.css +68 -0
- package/styles/mention/tailwind.scss +6 -0
- package/styles/multi-select/_all.scss +1 -1
- package/styles/multi-select/_bootstrap-dark-definition.scss +4 -1
- package/styles/multi-select/_bootstrap-definition.scss +2 -0
- package/styles/multi-select/_bootstrap4-definition.scss +5 -2
- package/styles/multi-select/_bootstrap5-definition.scss +2 -2
- package/styles/multi-select/_fabric-dark-definition.scss +5 -3
- package/styles/multi-select/_fabric-definition.scss +4 -2
- package/styles/multi-select/_fluent-definition.scss +2 -1
- package/styles/multi-select/_fusionnew-definition.scss +2 -2
- package/styles/multi-select/_highcontrast-definition.scss +47 -24
- package/styles/multi-select/_highcontrast-light-definition.scss +48 -25
- package/styles/multi-select/_layout.scss +59 -71
- package/styles/multi-select/_material-dark-definition.scss +3 -1
- package/styles/multi-select/_material-definition.scss +1 -0
- package/styles/multi-select/_material3-definition.scss +2 -2
- package/styles/multi-select/_tailwind-definition.scss +2 -3
- package/styles/multi-select/_theme.scss +16 -21
- package/styles/multi-select/bootstrap-dark.css +10 -6
- package/styles/multi-select/bootstrap.css +10 -6
- package/styles/multi-select/bootstrap4.css +10 -6
- package/styles/multi-select/bootstrap5-dark.css +11 -6
- package/styles/multi-select/bootstrap5.css +11 -6
- package/styles/multi-select/fabric-dark.css +10 -6
- package/styles/multi-select/fabric.css +10 -6
- package/styles/multi-select/fluent-dark.css +11 -6
- package/styles/multi-select/fluent.css +11 -6
- package/styles/multi-select/highcontrast-light.css +13 -6
- package/styles/multi-select/highcontrast.css +13 -6
- package/styles/multi-select/icons/_bootstrap5.scss +0 -1
- package/styles/multi-select/icons/_fluent.scss +0 -1
- package/styles/multi-select/icons/_fusionnew.scss +0 -1
- package/styles/multi-select/icons/_material-dark.scss +53 -54
- package/styles/multi-select/icons/_material.scss +53 -54
- package/styles/multi-select/icons/_material3.scss +0 -1
- package/styles/multi-select/icons/_tailwind.scss +0 -1
- package/styles/multi-select/material-dark.css +10 -6
- package/styles/multi-select/material.css +10 -6
- package/styles/multi-select/tailwind-dark.css +11 -6
- package/styles/multi-select/tailwind.css +11 -6
- package/styles/tailwind-dark.css +102 -44
- package/styles/tailwind-dark.scss +1 -0
- package/styles/tailwind.css +102 -44
- package/styles/tailwind.scss +1 -0
package/styles/fabric.css
CHANGED
|
@@ -77,7 +77,8 @@
|
|
|
77
77
|
position: relative;
|
|
78
78
|
}
|
|
79
79
|
|
|
80
|
-
.e-popup.e-ddl .e-dropdownbase.e-nodata
|
|
80
|
+
.e-popup.e-ddl .e-dropdownbase.e-nodata,
|
|
81
|
+
.e-popup.e-mention .e-dropdownbase.e-nodata {
|
|
81
82
|
color: #333;
|
|
82
83
|
cursor: default;
|
|
83
84
|
font-family: inherit;
|
|
@@ -86,6 +87,45 @@
|
|
|
86
87
|
text-align: center;
|
|
87
88
|
}
|
|
88
89
|
|
|
90
|
+
.e-mention.e-popup {
|
|
91
|
+
background: #fff;
|
|
92
|
+
border: 0;
|
|
93
|
+
box-shadow: 0 2px 3px 1px 0 0 5px 0 rgba(0, 0, 0, 0.4);
|
|
94
|
+
margin-top: 2px;
|
|
95
|
+
position: absolute;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
99
|
+
display: inline;
|
|
100
|
+
font-weight: bold;
|
|
101
|
+
vertical-align: baseline;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.e-mention .e-mention-chip,
|
|
105
|
+
.e-mention .e-mention-chip:hover {
|
|
106
|
+
background: #f4f4f4;
|
|
107
|
+
border-radius: 0;
|
|
108
|
+
border: none;
|
|
109
|
+
color: #0078d6;
|
|
110
|
+
cursor: default;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.e-mention .e-mention-chip::selection {
|
|
114
|
+
color: #fff;
|
|
115
|
+
background: #0078d6;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.e-mention.e-editable-element {
|
|
119
|
+
border: 2px solid rgba(234, 234, 234, 0.25);
|
|
120
|
+
height: auto;
|
|
121
|
+
min-height: 120px;
|
|
122
|
+
width: 100%;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.e-form-mirror-div {
|
|
126
|
+
white-space: pre-wrap;
|
|
127
|
+
}
|
|
128
|
+
|
|
89
129
|
.e-rtl .e-dropdownbase.e-dd-group .e-list-item {
|
|
90
130
|
padding-right: 20px;
|
|
91
131
|
}
|
|
@@ -148,6 +188,7 @@
|
|
|
148
188
|
border-color: rgba(234, 234, 234, 0.25);
|
|
149
189
|
}
|
|
150
190
|
.e-dropdownbase .e-list-item {
|
|
191
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
151
192
|
-webkit-tap-highlight-color: transparent;
|
|
152
193
|
background-color: #fff;
|
|
153
194
|
border-bottom: 1px;
|
|
@@ -334,6 +375,8 @@
|
|
|
334
375
|
color: #333;
|
|
335
376
|
}
|
|
336
377
|
|
|
378
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
379
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
337
380
|
@keyframes material-spinner-rotate {
|
|
338
381
|
0% {
|
|
339
382
|
transform: rotate(0);
|
|
@@ -486,6 +529,7 @@
|
|
|
486
529
|
background-color: #fff;
|
|
487
530
|
}
|
|
488
531
|
|
|
532
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
489
533
|
.e-ddl input.e-input::-webkit-contacts-auto-fill-button {
|
|
490
534
|
display: none;
|
|
491
535
|
pointer-events: none;
|
|
@@ -494,6 +538,7 @@
|
|
|
494
538
|
visibility: hidden;
|
|
495
539
|
}
|
|
496
540
|
|
|
541
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
497
542
|
.e-filter-parent {
|
|
498
543
|
border: 1px solid #c8c8c8;
|
|
499
544
|
border-top-width: 0;
|
|
@@ -537,6 +582,7 @@
|
|
|
537
582
|
cursor: default;
|
|
538
583
|
}
|
|
539
584
|
|
|
585
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
540
586
|
.e-ddl.e-input-group .e-ddl-hidden,
|
|
541
587
|
.e-ddl.e-float-input .e-ddl-hidden {
|
|
542
588
|
-webkit-appearance: initial;
|
|
@@ -679,6 +725,8 @@ ejs-dropdownlist {
|
|
|
679
725
|
color: #333;
|
|
680
726
|
}
|
|
681
727
|
|
|
728
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
729
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
682
730
|
@keyframes material-spinner-rotate {
|
|
683
731
|
0% {
|
|
684
732
|
transform: rotate(0);
|
|
@@ -696,6 +744,8 @@ ejs-dropdownlist {
|
|
|
696
744
|
}
|
|
697
745
|
}
|
|
698
746
|
/*! TreeView's fabric theme wise override definitions and variables */
|
|
747
|
+
/* stylelint-disable */
|
|
748
|
+
/* stylelint-disable */
|
|
699
749
|
.e-ddt .e-ddt-icon::before {
|
|
700
750
|
content: "\e966";
|
|
701
751
|
}
|
|
@@ -1089,6 +1139,9 @@ ejs-dropdownlist {
|
|
|
1089
1139
|
color: rgba(51, 51, 51, 0.87);
|
|
1090
1140
|
}
|
|
1091
1141
|
|
|
1142
|
+
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
1143
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1144
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1092
1145
|
@keyframes material-spinner-rotate {
|
|
1093
1146
|
0% {
|
|
1094
1147
|
transform: rotate(0);
|
|
@@ -1430,7 +1483,7 @@ ejs-dropdownlist {
|
|
|
1430
1483
|
border: 0;
|
|
1431
1484
|
font-family: inherit;
|
|
1432
1485
|
font-size: 14px;
|
|
1433
|
-
font-weight:
|
|
1486
|
+
font-weight: normal;
|
|
1434
1487
|
height: 28px;
|
|
1435
1488
|
min-height: 28px;
|
|
1436
1489
|
outline: none;
|
|
@@ -1444,7 +1497,7 @@ ejs-dropdownlist {
|
|
|
1444
1497
|
color: inherit;
|
|
1445
1498
|
font-family: inherit;
|
|
1446
1499
|
font-size: 14px;
|
|
1447
|
-
font-weight:
|
|
1500
|
+
font-weight: normal;
|
|
1448
1501
|
height: 28px;
|
|
1449
1502
|
min-height: 28px;
|
|
1450
1503
|
outline: none;
|
|
@@ -1467,6 +1520,7 @@ ejs-dropdownlist {
|
|
|
1467
1520
|
min-height: 38px;
|
|
1468
1521
|
}
|
|
1469
1522
|
|
|
1523
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1470
1524
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
1471
1525
|
display: none;
|
|
1472
1526
|
}
|
|
@@ -2115,6 +2169,7 @@ ejs-multiselect {
|
|
|
2115
2169
|
box-sizing: border-box;
|
|
2116
2170
|
}
|
|
2117
2171
|
|
|
2172
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2118
2173
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
2119
2174
|
-webkit-text-fill-color: #666;
|
|
2120
2175
|
color: #666;
|
|
@@ -2243,19 +2298,19 @@ ejs-multiselect {
|
|
|
2243
2298
|
border: 1px solid transparent;
|
|
2244
2299
|
}
|
|
2245
2300
|
|
|
2246
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
2301
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2247
2302
|
color: #a6a6a6;
|
|
2248
2303
|
}
|
|
2249
2304
|
|
|
2250
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
2305
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2251
2306
|
color: #a6a6a6;
|
|
2252
2307
|
}
|
|
2253
2308
|
|
|
2254
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
2309
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2255
2310
|
color: #a6a6a6;
|
|
2256
2311
|
}
|
|
2257
2312
|
|
|
2258
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
2313
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2259
2314
|
color: #a6a6a6;
|
|
2260
2315
|
}
|
|
2261
2316
|
|
|
@@ -2333,6 +2388,7 @@ ejs-multiselect {
|
|
|
2333
2388
|
content: "\e656";
|
|
2334
2389
|
}
|
|
2335
2390
|
|
|
2391
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2336
2392
|
.e-listbox-wrapper,
|
|
2337
2393
|
.e-listbox-container {
|
|
2338
2394
|
-webkit-overflow-scrolling: touch;
|
|
@@ -2351,7 +2407,7 @@ ejs-multiselect {
|
|
|
2351
2407
|
}
|
|
2352
2408
|
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
2353
2409
|
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
2354
|
-
width: 86% !important;
|
|
2410
|
+
width: 86% !important; /* stylelint-disable-line declaration-no-important */
|
|
2355
2411
|
}
|
|
2356
2412
|
.e-listbox-wrapper:focus,
|
|
2357
2413
|
.e-listbox-container:focus {
|
|
@@ -2710,16 +2766,6 @@ ejs-listbox {
|
|
|
2710
2766
|
top: 30%;
|
|
2711
2767
|
}
|
|
2712
2768
|
|
|
2713
|
-
.e-listboxtool-container .e-left {
|
|
2714
|
-
-ms-flex-direction: row-reverse;
|
|
2715
|
-
flex-direction: row-reverse;
|
|
2716
|
-
}
|
|
2717
|
-
|
|
2718
|
-
.e-listboxtool-wrapper .e-left {
|
|
2719
|
-
-ms-flex-direction: column-reverse;
|
|
2720
|
-
flex-direction: column-reverse;
|
|
2721
|
-
}
|
|
2722
|
-
|
|
2723
2769
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
2724
2770
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
2725
2771
|
margin-right: 15px;
|
|
@@ -2733,7 +2779,7 @@ ejs-listbox {
|
|
|
2733
2779
|
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
2734
2780
|
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
2735
2781
|
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
2736
|
-
width: 83% !important;
|
|
2782
|
+
width: 83% !important; /* stylelint-disable-line declaration-no-important */
|
|
2737
2783
|
}
|
|
2738
2784
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
2739
2785
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
@@ -2822,30 +2868,16 @@ ejs-listbox {
|
|
|
2822
2868
|
.e-listbox-container.e-bigger .e-list-header .e-text {
|
|
2823
2869
|
font-size: 15px;
|
|
2824
2870
|
}
|
|
2825
|
-
.e-listbox-wrapper.e-filter-list .e-list-parent
|
|
2826
|
-
|
|
2827
|
-
}
|
|
2828
|
-
|
|
2829
|
-
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
2830
|
-
height: calc(100% - 51px) !important;
|
|
2831
|
-
}
|
|
2832
|
-
|
|
2833
|
-
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
2871
|
+
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2872
|
+
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
2834
2873
|
height: calc(100% - 45px);
|
|
2835
2874
|
}
|
|
2836
2875
|
|
|
2837
|
-
.e-
|
|
2838
|
-
|
|
2839
|
-
}
|
|
2840
|
-
|
|
2841
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
2876
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2877
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
2842
2878
|
height: calc(100% - 59px);
|
|
2843
2879
|
}
|
|
2844
2880
|
|
|
2845
|
-
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
2846
|
-
height: calc(100% - 59px) !important;
|
|
2847
|
-
}
|
|
2848
|
-
|
|
2849
2881
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
2850
2882
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
2851
2883
|
height: calc(100% - 104px);
|
|
@@ -2856,14 +2888,11 @@ ejs-listbox {
|
|
|
2856
2888
|
height: calc(100% - 45px);
|
|
2857
2889
|
}
|
|
2858
2890
|
|
|
2859
|
-
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent
|
|
2891
|
+
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2892
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
2860
2893
|
height: calc(100% - 55px);
|
|
2861
2894
|
}
|
|
2862
2895
|
|
|
2863
|
-
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
2864
|
-
height: calc(100% - 55px) !important;
|
|
2865
|
-
}
|
|
2866
|
-
|
|
2867
2896
|
.e-listbox-wrapper,
|
|
2868
2897
|
.e-listbox-container:not(.e-listboxtool-container):not(.e-sortableclone),
|
|
2869
2898
|
.e-listboxtool-container.e-listbox-container .e-ul {
|
|
@@ -2883,6 +2912,11 @@ ejs-listbox {
|
|
|
2883
2912
|
font-size: 14px;
|
|
2884
2913
|
}
|
|
2885
2914
|
|
|
2915
|
+
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2916
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
2917
|
+
height: calc(100% - 51px);
|
|
2918
|
+
}
|
|
2919
|
+
|
|
2886
2920
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
2887
2921
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
2888
2922
|
height: calc(100% - 87px);
|
|
@@ -3118,4 +3152,22 @@ ejs-listbox {
|
|
|
3118
3152
|
.e-listbox-container.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
|
|
3119
3153
|
padding-left: 3.3846em;
|
|
3120
3154
|
padding-right: 0.923em;
|
|
3155
|
+
}
|
|
3156
|
+
|
|
3157
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
3158
|
+
@keyframes material-spinner-rotate {
|
|
3159
|
+
0% {
|
|
3160
|
+
transform: rotate(0);
|
|
3161
|
+
}
|
|
3162
|
+
100% {
|
|
3163
|
+
transform: rotate(360deg);
|
|
3164
|
+
}
|
|
3165
|
+
}
|
|
3166
|
+
@keyframes fabric-spinner-rotate {
|
|
3167
|
+
0% {
|
|
3168
|
+
transform: rotate(0);
|
|
3169
|
+
}
|
|
3170
|
+
100% {
|
|
3171
|
+
transform: rotate(360deg);
|
|
3172
|
+
}
|
|
3121
3173
|
}
|
package/styles/fabric.scss
CHANGED
package/styles/fluent-dark.css
CHANGED
|
@@ -103,7 +103,8 @@
|
|
|
103
103
|
position: relative;
|
|
104
104
|
}
|
|
105
105
|
|
|
106
|
-
.e-popup.e-ddl .e-dropdownbase.e-nodata
|
|
106
|
+
.e-popup.e-ddl .e-dropdownbase.e-nodata,
|
|
107
|
+
.e-popup.e-mention .e-dropdownbase.e-nodata {
|
|
107
108
|
color: #f3f2f1;
|
|
108
109
|
cursor: default;
|
|
109
110
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
@@ -112,6 +113,45 @@
|
|
|
112
113
|
text-align: center;
|
|
113
114
|
}
|
|
114
115
|
|
|
116
|
+
.e-mention.e-popup {
|
|
117
|
+
background: #252423;
|
|
118
|
+
border: 0;
|
|
119
|
+
box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
120
|
+
margin-top: 2px;
|
|
121
|
+
position: absolute;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
125
|
+
display: inline;
|
|
126
|
+
font-weight: bold;
|
|
127
|
+
vertical-align: baseline;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.e-mention .e-mention-chip,
|
|
131
|
+
.e-mention .e-mention-chip:hover {
|
|
132
|
+
background: #252423;
|
|
133
|
+
border-radius: 2px;
|
|
134
|
+
border: none;
|
|
135
|
+
color: #0078d4;
|
|
136
|
+
cursor: default;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.e-mention .e-mention-chip::selection {
|
|
140
|
+
color: #fff;
|
|
141
|
+
background: #0078d4;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.e-mention.e-editable-element {
|
|
145
|
+
border: 2px solid #292827;
|
|
146
|
+
height: auto;
|
|
147
|
+
min-height: 120px;
|
|
148
|
+
width: 100%;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.e-form-mirror-div {
|
|
152
|
+
white-space: pre-wrap;
|
|
153
|
+
}
|
|
154
|
+
|
|
115
155
|
.e-bigger.e-ddl .e-dropdownbase.e-nodata,
|
|
116
156
|
.e-bigger .e-ddl .e-dropdownbase.e-nodata {
|
|
117
157
|
font-size: 16px;
|
|
@@ -192,6 +232,7 @@
|
|
|
192
232
|
border-color: #292827;
|
|
193
233
|
}
|
|
194
234
|
.e-dropdownbase .e-list-item {
|
|
235
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
195
236
|
-webkit-tap-highlight-color: transparent;
|
|
196
237
|
background-color: #252423;
|
|
197
238
|
border-bottom: 0;
|
|
@@ -382,6 +423,9 @@
|
|
|
382
423
|
color: #a19f9d;
|
|
383
424
|
}
|
|
384
425
|
|
|
426
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
427
|
+
/* stylelint-disable-line no-empty-source */
|
|
428
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
385
429
|
@keyframes material-spinner-rotate {
|
|
386
430
|
0% {
|
|
387
431
|
transform: rotate(0);
|
|
@@ -578,6 +622,7 @@
|
|
|
578
622
|
background-color: #252423;
|
|
579
623
|
}
|
|
580
624
|
|
|
625
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
581
626
|
.e-ddl input.e-input::-webkit-contacts-auto-fill-button {
|
|
582
627
|
display: none;
|
|
583
628
|
pointer-events: none;
|
|
@@ -586,6 +631,7 @@
|
|
|
586
631
|
visibility: hidden;
|
|
587
632
|
}
|
|
588
633
|
|
|
634
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
589
635
|
.e-filter-parent {
|
|
590
636
|
border: 0;
|
|
591
637
|
border-top-width: 0;
|
|
@@ -626,6 +672,7 @@
|
|
|
626
672
|
cursor: default;
|
|
627
673
|
}
|
|
628
674
|
|
|
675
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
629
676
|
.e-ddl.e-input-group .e-ddl-hidden,
|
|
630
677
|
.e-ddl.e-float-input .e-ddl-hidden {
|
|
631
678
|
-webkit-appearance: initial;
|
|
@@ -768,6 +815,9 @@ ejs-dropdownlist {
|
|
|
768
815
|
color: #f3f2f1;
|
|
769
816
|
}
|
|
770
817
|
|
|
818
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
819
|
+
/* stylelint-disable-line no-empty-source */
|
|
820
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
771
821
|
@keyframes material-spinner-rotate {
|
|
772
822
|
0% {
|
|
773
823
|
transform: rotate(0);
|
|
@@ -785,6 +835,8 @@ ejs-dropdownlist {
|
|
|
785
835
|
}
|
|
786
836
|
}
|
|
787
837
|
/*! TreeView's bootstrap5 theme wise override definitions and variables */
|
|
838
|
+
/* stylelint-disable */
|
|
839
|
+
/* stylelint-disable */
|
|
788
840
|
.e-ddt .e-ddt-icon::before {
|
|
789
841
|
content: "\e729";
|
|
790
842
|
}
|
|
@@ -1229,6 +1281,10 @@ ejs-dropdownlist {
|
|
|
1229
1281
|
color: #f3f2f1;
|
|
1230
1282
|
}
|
|
1231
1283
|
|
|
1284
|
+
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
1285
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1286
|
+
/* stylelint-disable-line no-empty-source */
|
|
1287
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1232
1288
|
@keyframes material-spinner-rotate {
|
|
1233
1289
|
0% {
|
|
1234
1290
|
transform: rotate(0);
|
|
@@ -1650,7 +1706,7 @@ ejs-dropdownlist {
|
|
|
1650
1706
|
border: 0;
|
|
1651
1707
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
1652
1708
|
font-size: 14px;
|
|
1653
|
-
font-weight:
|
|
1709
|
+
font-weight: normal;
|
|
1654
1710
|
height: 30px;
|
|
1655
1711
|
min-height: 30px;
|
|
1656
1712
|
outline: none;
|
|
@@ -1664,7 +1720,7 @@ ejs-dropdownlist {
|
|
|
1664
1720
|
color: inherit;
|
|
1665
1721
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
1666
1722
|
font-size: 14px;
|
|
1667
|
-
font-weight:
|
|
1723
|
+
font-weight: normal;
|
|
1668
1724
|
height: 30px;
|
|
1669
1725
|
min-height: 30px;
|
|
1670
1726
|
outline: none;
|
|
@@ -1687,6 +1743,7 @@ ejs-dropdownlist {
|
|
|
1687
1743
|
min-height: 36px;
|
|
1688
1744
|
}
|
|
1689
1745
|
|
|
1746
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1690
1747
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
1691
1748
|
display: none;
|
|
1692
1749
|
}
|
|
@@ -2346,6 +2403,7 @@ ejs-multiselect {
|
|
|
2346
2403
|
box-sizing: border-box;
|
|
2347
2404
|
}
|
|
2348
2405
|
|
|
2406
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2349
2407
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
2350
2408
|
-webkit-text-fill-color: #f3f2f1;
|
|
2351
2409
|
color: #f3f2f1;
|
|
@@ -2491,19 +2549,19 @@ ejs-multiselect {
|
|
|
2491
2549
|
border: 0 solid transparent;
|
|
2492
2550
|
}
|
|
2493
2551
|
|
|
2494
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
2552
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2495
2553
|
color: #a19f9d;
|
|
2496
2554
|
}
|
|
2497
2555
|
|
|
2498
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
2556
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2499
2557
|
color: #a19f9d;
|
|
2500
2558
|
}
|
|
2501
2559
|
|
|
2502
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
2560
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2503
2561
|
color: #a19f9d;
|
|
2504
2562
|
}
|
|
2505
2563
|
|
|
2506
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
2564
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2507
2565
|
color: #a19f9d;
|
|
2508
2566
|
}
|
|
2509
2567
|
|
|
@@ -2592,6 +2650,7 @@ ejs-multiselect {
|
|
|
2592
2650
|
content: "\e744";
|
|
2593
2651
|
}
|
|
2594
2652
|
|
|
2653
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2595
2654
|
.e-listbox-wrapper,
|
|
2596
2655
|
.e-listbox-container {
|
|
2597
2656
|
-webkit-overflow-scrolling: touch;
|
|
@@ -2610,7 +2669,7 @@ ejs-multiselect {
|
|
|
2610
2669
|
}
|
|
2611
2670
|
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
2612
2671
|
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
2613
|
-
width: 84% !important;
|
|
2672
|
+
width: 84% !important; /* stylelint-disable-line declaration-no-important */
|
|
2614
2673
|
}
|
|
2615
2674
|
.e-listbox-wrapper:focus,
|
|
2616
2675
|
.e-listbox-container:focus {
|
|
@@ -2969,16 +3028,6 @@ ejs-listbox {
|
|
|
2969
3028
|
top: 30%;
|
|
2970
3029
|
}
|
|
2971
3030
|
|
|
2972
|
-
.e-listboxtool-container .e-left {
|
|
2973
|
-
-ms-flex-direction: row-reverse;
|
|
2974
|
-
flex-direction: row-reverse;
|
|
2975
|
-
}
|
|
2976
|
-
|
|
2977
|
-
.e-listboxtool-wrapper .e-left {
|
|
2978
|
-
-ms-flex-direction: column-reverse;
|
|
2979
|
-
flex-direction: column-reverse;
|
|
2980
|
-
}
|
|
2981
|
-
|
|
2982
3031
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
2983
3032
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
2984
3033
|
margin-right: 15px;
|
|
@@ -2992,7 +3041,7 @@ ejs-listbox {
|
|
|
2992
3041
|
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
2993
3042
|
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
2994
3043
|
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
2995
|
-
width: 80% !important;
|
|
3044
|
+
width: 80% !important; /* stylelint-disable-line declaration-no-important */
|
|
2996
3045
|
}
|
|
2997
3046
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
2998
3047
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
@@ -3081,28 +3130,14 @@ ejs-listbox {
|
|
|
3081
3130
|
.e-listbox-container.e-bigger .e-list-header .e-text {
|
|
3082
3131
|
font-size: 14px;
|
|
3083
3132
|
}
|
|
3084
|
-
.e-listbox-wrapper.e-filter-list .e-list-parent
|
|
3085
|
-
|
|
3086
|
-
}
|
|
3087
|
-
|
|
3088
|
-
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
3089
|
-
height: calc(100% - 57px) !important;
|
|
3090
|
-
}
|
|
3091
|
-
|
|
3092
|
-
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
3133
|
+
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3134
|
+
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
3093
3135
|
height: calc(100% - 45px);
|
|
3094
3136
|
}
|
|
3095
3137
|
|
|
3096
|
-
.e-
|
|
3097
|
-
|
|
3098
|
-
|
|
3099
|
-
|
|
3100
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
3101
|
-
height: calc(100% - 65px);
|
|
3102
|
-
}
|
|
3103
|
-
|
|
3104
|
-
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
3105
|
-
height: calc(100% - 65px) !important;
|
|
3138
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3139
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
3140
|
+
height: calc(100% - 55px);
|
|
3106
3141
|
}
|
|
3107
3142
|
|
|
3108
3143
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
@@ -3115,14 +3150,11 @@ ejs-listbox {
|
|
|
3115
3150
|
height: calc(100% - 48px);
|
|
3116
3151
|
}
|
|
3117
3152
|
|
|
3118
|
-
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent
|
|
3153
|
+
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3154
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
3119
3155
|
height: calc(100% - 45px);
|
|
3120
3156
|
}
|
|
3121
3157
|
|
|
3122
|
-
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
3123
|
-
height: calc(100% - 45px) !important;
|
|
3124
|
-
}
|
|
3125
|
-
|
|
3126
3158
|
.e-listbox-wrapper,
|
|
3127
3159
|
.e-listbox-container:not(.e-listboxtool-container):not(.e-sortableclone),
|
|
3128
3160
|
.e-listboxtool-container.e-listbox-container .e-ul {
|
|
@@ -3142,6 +3174,11 @@ ejs-listbox {
|
|
|
3142
3174
|
font-size: 12px;
|
|
3143
3175
|
}
|
|
3144
3176
|
|
|
3177
|
+
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3178
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
3179
|
+
height: calc(100% - 47px);
|
|
3180
|
+
}
|
|
3181
|
+
|
|
3145
3182
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
3146
3183
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3147
3184
|
height: calc(100% - 93px);
|
|
@@ -3377,4 +3414,24 @@ ejs-listbox {
|
|
|
3377
3414
|
.e-listbox-container.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
|
|
3378
3415
|
padding-left: 10px;
|
|
3379
3416
|
padding-right: 16px;
|
|
3380
|
-
}
|
|
3417
|
+
}
|
|
3418
|
+
|
|
3419
|
+
/* stylelint-disable-line no-empty-source */
|
|
3420
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
3421
|
+
@keyframes material-spinner-rotate {
|
|
3422
|
+
0% {
|
|
3423
|
+
transform: rotate(0);
|
|
3424
|
+
}
|
|
3425
|
+
100% {
|
|
3426
|
+
transform: rotate(360deg);
|
|
3427
|
+
}
|
|
3428
|
+
}
|
|
3429
|
+
@keyframes fabric-spinner-rotate {
|
|
3430
|
+
0% {
|
|
3431
|
+
transform: rotate(0);
|
|
3432
|
+
}
|
|
3433
|
+
100% {
|
|
3434
|
+
transform: rotate(360deg);
|
|
3435
|
+
}
|
|
3436
|
+
}
|
|
3437
|
+
/* stylelint-disable-line no-empty-source */
|
package/styles/fluent-dark.scss
CHANGED