@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/fluent.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: #201f1e;
|
|
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: #fff;
|
|
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: #f3f2f1;
|
|
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 #edebe9;
|
|
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: #edebe9;
|
|
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: #fff;
|
|
197
238
|
border-bottom: 0;
|
|
@@ -382,6 +423,9 @@
|
|
|
382
423
|
color: #605e5c;
|
|
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: #fff;
|
|
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: #201f1e;
|
|
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: #201f1e;
|
|
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: #201f1e;
|
|
2351
2409
|
color: #201f1e;
|
|
@@ -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: #605e5c;
|
|
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: #605e5c;
|
|
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: #605e5c;
|
|
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: #605e5c;
|
|
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.scss
CHANGED
|
@@ -91,7 +91,8 @@
|
|
|
91
91
|
position: relative;
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
-
.e-popup.e-ddl .e-dropdownbase.e-nodata
|
|
94
|
+
.e-popup.e-ddl .e-dropdownbase.e-nodata,
|
|
95
|
+
.e-popup.e-mention .e-dropdownbase.e-nodata {
|
|
95
96
|
color: #000;
|
|
96
97
|
cursor: default;
|
|
97
98
|
font-family: inherit;
|
|
@@ -100,6 +101,45 @@
|
|
|
100
101
|
text-align: center;
|
|
101
102
|
}
|
|
102
103
|
|
|
104
|
+
.e-mention.e-popup {
|
|
105
|
+
background: #400074;
|
|
106
|
+
border: 0;
|
|
107
|
+
box-shadow: 0 2px 3px 1px 0 0 5px 0 rgba(0, 0, 0, 0.4);
|
|
108
|
+
margin-top: 2px;
|
|
109
|
+
position: absolute;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
113
|
+
display: inline;
|
|
114
|
+
font-weight: bold;
|
|
115
|
+
vertical-align: baseline;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.e-mention .e-mention-chip,
|
|
119
|
+
.e-mention .e-mention-chip:hover {
|
|
120
|
+
background: transparent;
|
|
121
|
+
border-radius: 0;
|
|
122
|
+
border: 1px solid #757575;
|
|
123
|
+
color: #400074;
|
|
124
|
+
cursor: default;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.e-mention .e-mention-chip::selection {
|
|
128
|
+
color: #000;
|
|
129
|
+
background: #400074;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.e-mention.e-editable-element {
|
|
133
|
+
border: 2px solid #757575;
|
|
134
|
+
height: auto;
|
|
135
|
+
min-height: 120px;
|
|
136
|
+
width: 100%;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.e-form-mirror-div {
|
|
140
|
+
white-space: pre-wrap;
|
|
141
|
+
}
|
|
142
|
+
|
|
103
143
|
.e-rtl .e-dropdownbase.e-dd-group .e-list-item {
|
|
104
144
|
padding-right: 20px;
|
|
105
145
|
}
|
|
@@ -162,6 +202,7 @@
|
|
|
162
202
|
border-color: #757575;
|
|
163
203
|
}
|
|
164
204
|
.e-dropdownbase .e-list-item {
|
|
205
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
165
206
|
-webkit-tap-highlight-color: transparent;
|
|
166
207
|
background-color: #fff;
|
|
167
208
|
border-bottom: 2px;
|
|
@@ -348,6 +389,8 @@
|
|
|
348
389
|
color: #000;
|
|
349
390
|
}
|
|
350
391
|
|
|
392
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
393
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
351
394
|
@keyframes material-spinner-rotate {
|
|
352
395
|
0% {
|
|
353
396
|
transform: rotate(0);
|
|
@@ -504,6 +547,7 @@
|
|
|
504
547
|
background-color: #fff;
|
|
505
548
|
}
|
|
506
549
|
|
|
550
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
507
551
|
.e-ddl input.e-input::-webkit-contacts-auto-fill-button {
|
|
508
552
|
display: none;
|
|
509
553
|
pointer-events: none;
|
|
@@ -512,6 +556,7 @@
|
|
|
512
556
|
visibility: hidden;
|
|
513
557
|
}
|
|
514
558
|
|
|
559
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
515
560
|
.e-filter-parent {
|
|
516
561
|
border: 1px solid #000;
|
|
517
562
|
border-top-width: 0;
|
|
@@ -555,6 +600,7 @@
|
|
|
555
600
|
cursor: default;
|
|
556
601
|
}
|
|
557
602
|
|
|
603
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
558
604
|
.e-ddl.e-input-group .e-ddl-hidden,
|
|
559
605
|
.e-ddl.e-float-input .e-ddl-hidden {
|
|
560
606
|
-webkit-appearance: initial;
|
|
@@ -697,6 +743,8 @@ ejs-dropdownlist {
|
|
|
697
743
|
color: #000;
|
|
698
744
|
}
|
|
699
745
|
|
|
746
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
747
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
700
748
|
@keyframes material-spinner-rotate {
|
|
701
749
|
0% {
|
|
702
750
|
transform: rotate(0);
|
|
@@ -713,6 +761,8 @@ ejs-dropdownlist {
|
|
|
713
761
|
transform: rotate(360deg);
|
|
714
762
|
}
|
|
715
763
|
}
|
|
764
|
+
/* stylelint-disable */
|
|
765
|
+
/* stylelint-disable */
|
|
716
766
|
.e-ddt .e-ddt-icon::before {
|
|
717
767
|
content: "\e966";
|
|
718
768
|
}
|
|
@@ -1107,6 +1157,9 @@ ejs-dropdownlist {
|
|
|
1107
1157
|
color: #000;
|
|
1108
1158
|
}
|
|
1109
1159
|
|
|
1160
|
+
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
1161
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1162
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1110
1163
|
@keyframes material-spinner-rotate {
|
|
1111
1164
|
0% {
|
|
1112
1165
|
transform: rotate(0);
|
|
@@ -1127,6 +1180,9 @@ ejs-dropdownlist {
|
|
|
1127
1180
|
color: #000;
|
|
1128
1181
|
top: 12px;
|
|
1129
1182
|
}
|
|
1183
|
+
.e-multiselect .e-multi-select-wrapper input {
|
|
1184
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1185
|
+
}
|
|
1130
1186
|
.e-multiselect .e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1131
1187
|
color: #4f4f4f;
|
|
1132
1188
|
font-family: inherit;
|
|
@@ -1536,7 +1592,7 @@ ejs-dropdownlist {
|
|
|
1536
1592
|
border: 0;
|
|
1537
1593
|
font-family: inherit;
|
|
1538
1594
|
font-size: 14px;
|
|
1539
|
-
font-weight:
|
|
1595
|
+
font-weight: normal;
|
|
1540
1596
|
height: 28px;
|
|
1541
1597
|
min-height: 28px;
|
|
1542
1598
|
outline: none;
|
|
@@ -1550,7 +1606,7 @@ ejs-dropdownlist {
|
|
|
1550
1606
|
color: inherit;
|
|
1551
1607
|
font-family: inherit;
|
|
1552
1608
|
font-size: 14px;
|
|
1553
|
-
font-weight:
|
|
1609
|
+
font-weight: normal;
|
|
1554
1610
|
height: 28px;
|
|
1555
1611
|
min-height: 28px;
|
|
1556
1612
|
outline: none;
|
|
@@ -1573,6 +1629,7 @@ ejs-dropdownlist {
|
|
|
1573
1629
|
min-height: 38px;
|
|
1574
1630
|
}
|
|
1575
1631
|
|
|
1632
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1576
1633
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
1577
1634
|
display: none;
|
|
1578
1635
|
}
|
|
@@ -2217,6 +2274,7 @@ ejs-multiselect {
|
|
|
2217
2274
|
box-sizing: border-box;
|
|
2218
2275
|
}
|
|
2219
2276
|
|
|
2277
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2220
2278
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
2221
2279
|
-webkit-text-fill-color: #fff;
|
|
2222
2280
|
color: #fff;
|
|
@@ -2333,19 +2391,19 @@ ejs-multiselect {
|
|
|
2333
2391
|
border: 1px solid transparent;
|
|
2334
2392
|
}
|
|
2335
2393
|
|
|
2336
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
2394
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2337
2395
|
color: #000;
|
|
2338
2396
|
}
|
|
2339
2397
|
|
|
2340
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
2398
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2341
2399
|
color: #000;
|
|
2342
2400
|
}
|
|
2343
2401
|
|
|
2344
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
2402
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2345
2403
|
color: #000;
|
|
2346
2404
|
}
|
|
2347
2405
|
|
|
2348
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
2406
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2349
2407
|
color: #000;
|
|
2350
2408
|
}
|
|
2351
2409
|
|
|
@@ -2443,6 +2501,7 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
|
|
|
2443
2501
|
content: "\e656";
|
|
2444
2502
|
}
|
|
2445
2503
|
|
|
2504
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2446
2505
|
.e-listbox-wrapper,
|
|
2447
2506
|
.e-listbox-container {
|
|
2448
2507
|
-webkit-overflow-scrolling: touch;
|
|
@@ -2461,7 +2520,7 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
|
|
|
2461
2520
|
}
|
|
2462
2521
|
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
2463
2522
|
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
2464
|
-
width: 87% !important;
|
|
2523
|
+
width: 87% !important; /* stylelint-disable-line declaration-no-important */
|
|
2465
2524
|
}
|
|
2466
2525
|
.e-listbox-wrapper:focus,
|
|
2467
2526
|
.e-listbox-container:focus {
|
|
@@ -2820,16 +2879,6 @@ ejs-listbox {
|
|
|
2820
2879
|
top: 30%;
|
|
2821
2880
|
}
|
|
2822
2881
|
|
|
2823
|
-
.e-listboxtool-container .e-left {
|
|
2824
|
-
-ms-flex-direction: row-reverse;
|
|
2825
|
-
flex-direction: row-reverse;
|
|
2826
|
-
}
|
|
2827
|
-
|
|
2828
|
-
.e-listboxtool-wrapper .e-left {
|
|
2829
|
-
-ms-flex-direction: column-reverse;
|
|
2830
|
-
flex-direction: column-reverse;
|
|
2831
|
-
}
|
|
2832
|
-
|
|
2833
2882
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
2834
2883
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
2835
2884
|
margin-right: 15px;
|
|
@@ -2843,7 +2892,7 @@ ejs-listbox {
|
|
|
2843
2892
|
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
2844
2893
|
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
2845
2894
|
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
2846
|
-
width: 83% !important;
|
|
2895
|
+
width: 83% !important; /* stylelint-disable-line declaration-no-important */
|
|
2847
2896
|
}
|
|
2848
2897
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
2849
2898
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
@@ -2932,30 +2981,16 @@ ejs-listbox {
|
|
|
2932
2981
|
.e-listbox-container.e-bigger .e-list-header .e-text {
|
|
2933
2982
|
font-size: 15px;
|
|
2934
2983
|
}
|
|
2935
|
-
.e-listbox-wrapper.e-filter-list .e-list-parent
|
|
2936
|
-
|
|
2937
|
-
}
|
|
2938
|
-
|
|
2939
|
-
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
2940
|
-
height: calc(100% - 51px) !important;
|
|
2941
|
-
}
|
|
2942
|
-
|
|
2943
|
-
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
2984
|
+
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2985
|
+
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
2944
2986
|
height: calc(100% - 45px);
|
|
2945
2987
|
}
|
|
2946
2988
|
|
|
2947
|
-
.e-
|
|
2948
|
-
|
|
2949
|
-
}
|
|
2950
|
-
|
|
2951
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
2989
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2990
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
2952
2991
|
height: calc(100% - 59px);
|
|
2953
2992
|
}
|
|
2954
2993
|
|
|
2955
|
-
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
2956
|
-
height: calc(100% - 59px) !important;
|
|
2957
|
-
}
|
|
2958
|
-
|
|
2959
2994
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
2960
2995
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
2961
2996
|
height: calc(100% - 104px);
|
|
@@ -2966,14 +3001,11 @@ ejs-listbox {
|
|
|
2966
3001
|
height: calc(100% - 45px);
|
|
2967
3002
|
}
|
|
2968
3003
|
|
|
2969
|
-
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent
|
|
3004
|
+
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3005
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
2970
3006
|
height: calc(100% - 55px);
|
|
2971
3007
|
}
|
|
2972
3008
|
|
|
2973
|
-
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
2974
|
-
height: calc(100% - 55px) !important;
|
|
2975
|
-
}
|
|
2976
|
-
|
|
2977
3009
|
.e-listbox-wrapper,
|
|
2978
3010
|
.e-listbox-container:not(.e-listboxtool-container):not(.e-sortableclone),
|
|
2979
3011
|
.e-listboxtool-container.e-listbox-container .e-ul {
|
|
@@ -2993,6 +3025,11 @@ ejs-listbox {
|
|
|
2993
3025
|
font-size: 14px;
|
|
2994
3026
|
}
|
|
2995
3027
|
|
|
3028
|
+
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3029
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
3030
|
+
height: calc(100% - 51px);
|
|
3031
|
+
}
|
|
3032
|
+
|
|
2996
3033
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
2997
3034
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
2998
3035
|
height: calc(100% - 87px);
|
|
@@ -3228,4 +3265,22 @@ ejs-listbox {
|
|
|
3228
3265
|
.e-listbox-container.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
|
|
3229
3266
|
padding-left: 3.3846em;
|
|
3230
3267
|
padding-right: 0.923em;
|
|
3268
|
+
}
|
|
3269
|
+
|
|
3270
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
3271
|
+
@keyframes material-spinner-rotate {
|
|
3272
|
+
0% {
|
|
3273
|
+
transform: rotate(0);
|
|
3274
|
+
}
|
|
3275
|
+
100% {
|
|
3276
|
+
transform: rotate(360deg);
|
|
3277
|
+
}
|
|
3278
|
+
}
|
|
3279
|
+
@keyframes fabric-spinner-rotate {
|
|
3280
|
+
0% {
|
|
3281
|
+
transform: rotate(0);
|
|
3282
|
+
}
|
|
3283
|
+
100% {
|
|
3284
|
+
transform: rotate(360deg);
|
|
3285
|
+
}
|
|
3231
3286
|
}
|