@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/bootstrap4.css
CHANGED
|
@@ -95,7 +95,8 @@
|
|
|
95
95
|
position: relative;
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
-
.e-popup.e-ddl .e-dropdownbase.e-nodata
|
|
98
|
+
.e-popup.e-ddl .e-dropdownbase.e-nodata,
|
|
99
|
+
.e-popup.e-mention .e-dropdownbase.e-nodata {
|
|
99
100
|
color: #212529;
|
|
100
101
|
cursor: default;
|
|
101
102
|
font-family: inherit;
|
|
@@ -104,6 +105,45 @@
|
|
|
104
105
|
text-align: center;
|
|
105
106
|
}
|
|
106
107
|
|
|
108
|
+
.e-mention.e-popup {
|
|
109
|
+
background: #fff;
|
|
110
|
+
border: 0;
|
|
111
|
+
box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
112
|
+
margin-top: 2px;
|
|
113
|
+
position: absolute;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
117
|
+
display: inline;
|
|
118
|
+
font-weight: bold;
|
|
119
|
+
vertical-align: baseline;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.e-mention .e-mention-chip,
|
|
123
|
+
.e-mention .e-mention-chip:hover {
|
|
124
|
+
background: #e9ecef;
|
|
125
|
+
border-radius: 2px;
|
|
126
|
+
border: none;
|
|
127
|
+
color: #007bff;
|
|
128
|
+
cursor: default;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.e-mention .e-mention-chip::selection {
|
|
132
|
+
color: #fff;
|
|
133
|
+
background: #007bff;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.e-mention.e-editable-element {
|
|
137
|
+
border: 2px solid rgba(0, 0, 0, 0.15);
|
|
138
|
+
height: auto;
|
|
139
|
+
min-height: 120px;
|
|
140
|
+
width: 100%;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.e-form-mirror-div {
|
|
144
|
+
white-space: pre-wrap;
|
|
145
|
+
}
|
|
146
|
+
|
|
107
147
|
.e-rtl .e-dropdownbase.e-dd-group .e-list-item {
|
|
108
148
|
padding-right: 30px;
|
|
109
149
|
}
|
|
@@ -166,6 +206,7 @@
|
|
|
166
206
|
border-color: rgba(0, 0, 0, 0.15);
|
|
167
207
|
}
|
|
168
208
|
.e-dropdownbase .e-list-item {
|
|
209
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
169
210
|
-webkit-tap-highlight-color: transparent;
|
|
170
211
|
background-color: #fff;
|
|
171
212
|
border-bottom: 1px;
|
|
@@ -352,6 +393,8 @@
|
|
|
352
393
|
color: #212529;
|
|
353
394
|
}
|
|
354
395
|
|
|
396
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
397
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
355
398
|
@keyframes material-spinner-rotate {
|
|
356
399
|
0% {
|
|
357
400
|
transform: rotate(0);
|
|
@@ -561,6 +604,7 @@
|
|
|
561
604
|
background-color: #fff;
|
|
562
605
|
}
|
|
563
606
|
|
|
607
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
564
608
|
.e-ddl input.e-input::-webkit-contacts-auto-fill-button {
|
|
565
609
|
display: none;
|
|
566
610
|
pointer-events: none;
|
|
@@ -569,6 +613,7 @@
|
|
|
569
613
|
visibility: hidden;
|
|
570
614
|
}
|
|
571
615
|
|
|
616
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
572
617
|
.e-filter-parent {
|
|
573
618
|
border: rgba(0, 0, 0, 0.12);
|
|
574
619
|
border-top-width: 0;
|
|
@@ -608,6 +653,7 @@
|
|
|
608
653
|
cursor: default;
|
|
609
654
|
}
|
|
610
655
|
|
|
656
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
611
657
|
.e-ddl.e-input-group .e-ddl-hidden,
|
|
612
658
|
.e-ddl.e-float-input .e-ddl-hidden {
|
|
613
659
|
-webkit-appearance: initial;
|
|
@@ -750,6 +796,8 @@ ejs-dropdownlist {
|
|
|
750
796
|
color: #fff;
|
|
751
797
|
}
|
|
752
798
|
|
|
799
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
800
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
753
801
|
@keyframes material-spinner-rotate {
|
|
754
802
|
0% {
|
|
755
803
|
transform: rotate(0);
|
|
@@ -766,6 +814,8 @@ ejs-dropdownlist {
|
|
|
766
814
|
transform: rotate(360deg);
|
|
767
815
|
}
|
|
768
816
|
}
|
|
817
|
+
/* stylelint-disable */
|
|
818
|
+
/* stylelint-disable */
|
|
769
819
|
.e-ddt .e-ddt-icon::before {
|
|
770
820
|
content: "\e744";
|
|
771
821
|
}
|
|
@@ -1189,6 +1239,7 @@ ejs-dropdownlist {
|
|
|
1189
1239
|
font-size: 10px;
|
|
1190
1240
|
}
|
|
1191
1241
|
|
|
1242
|
+
/* stylelint-disable-line no-empty-source */
|
|
1192
1243
|
.e-input-group.e-ddl .e-control.e-autocomplete ~ .e-ddl-icon {
|
|
1193
1244
|
font-size: 8px;
|
|
1194
1245
|
}
|
|
@@ -1197,6 +1248,9 @@ ejs-dropdownlist {
|
|
|
1197
1248
|
font-size: 10px;
|
|
1198
1249
|
}
|
|
1199
1250
|
|
|
1251
|
+
/* stylelint-disable-line no-empty-source */
|
|
1252
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1253
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1200
1254
|
@keyframes material-spinner-rotate {
|
|
1201
1255
|
0% {
|
|
1202
1256
|
transform: rotate(0);
|
|
@@ -1612,7 +1666,7 @@ ejs-dropdownlist {
|
|
|
1612
1666
|
border: 0;
|
|
1613
1667
|
font-family: inherit;
|
|
1614
1668
|
font-size: 14px;
|
|
1615
|
-
font-weight:
|
|
1669
|
+
font-weight: normal;
|
|
1616
1670
|
height: 29px;
|
|
1617
1671
|
min-height: 29px;
|
|
1618
1672
|
outline: none;
|
|
@@ -1626,7 +1680,7 @@ ejs-dropdownlist {
|
|
|
1626
1680
|
color: inherit;
|
|
1627
1681
|
font-family: inherit;
|
|
1628
1682
|
font-size: 14px;
|
|
1629
|
-
font-weight:
|
|
1683
|
+
font-weight: normal;
|
|
1630
1684
|
height: 29px;
|
|
1631
1685
|
min-height: 29px;
|
|
1632
1686
|
outline: none;
|
|
@@ -1650,6 +1704,7 @@ ejs-dropdownlist {
|
|
|
1650
1704
|
min-height: 36px;
|
|
1651
1705
|
}
|
|
1652
1706
|
|
|
1707
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1653
1708
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
1654
1709
|
display: none;
|
|
1655
1710
|
}
|
|
@@ -2302,6 +2357,7 @@ ejs-multiselect {
|
|
|
2302
2357
|
box-sizing: border-box;
|
|
2303
2358
|
}
|
|
2304
2359
|
|
|
2360
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2305
2361
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
2306
2362
|
-webkit-text-fill-color: #fff;
|
|
2307
2363
|
color: #fff;
|
|
@@ -2434,19 +2490,19 @@ ejs-multiselect {
|
|
|
2434
2490
|
border: 1px solid transparent;
|
|
2435
2491
|
}
|
|
2436
2492
|
|
|
2437
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
2493
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2438
2494
|
color: #6c757d;
|
|
2439
2495
|
}
|
|
2440
2496
|
|
|
2441
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
2497
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2442
2498
|
color: #6c757d;
|
|
2443
2499
|
}
|
|
2444
2500
|
|
|
2445
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
2501
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2446
2502
|
color: #6c757d;
|
|
2447
2503
|
}
|
|
2448
2504
|
|
|
2449
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
2505
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2450
2506
|
color: #6c757d;
|
|
2451
2507
|
}
|
|
2452
2508
|
|
|
@@ -2542,6 +2598,7 @@ ejs-multiselect {
|
|
|
2542
2598
|
content: "\e7ba";
|
|
2543
2599
|
}
|
|
2544
2600
|
|
|
2601
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2545
2602
|
.e-listbox-wrapper,
|
|
2546
2603
|
.e-listbox-container {
|
|
2547
2604
|
-webkit-overflow-scrolling: touch;
|
|
@@ -2560,7 +2617,7 @@ ejs-multiselect {
|
|
|
2560
2617
|
}
|
|
2561
2618
|
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
2562
2619
|
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
2563
|
-
width: 86% !important;
|
|
2620
|
+
width: 86% !important; /* stylelint-disable-line declaration-no-important */
|
|
2564
2621
|
}
|
|
2565
2622
|
.e-listbox-wrapper:focus,
|
|
2566
2623
|
.e-listbox-container:focus {
|
|
@@ -2919,16 +2976,6 @@ ejs-listbox {
|
|
|
2919
2976
|
top: 30%;
|
|
2920
2977
|
}
|
|
2921
2978
|
|
|
2922
|
-
.e-listboxtool-container .e-left {
|
|
2923
|
-
-ms-flex-direction: row-reverse;
|
|
2924
|
-
flex-direction: row-reverse;
|
|
2925
|
-
}
|
|
2926
|
-
|
|
2927
|
-
.e-listboxtool-wrapper .e-left {
|
|
2928
|
-
-ms-flex-direction: column-reverse;
|
|
2929
|
-
flex-direction: column-reverse;
|
|
2930
|
-
}
|
|
2931
|
-
|
|
2932
2979
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
2933
2980
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
2934
2981
|
margin-right: 15px;
|
|
@@ -2948,7 +2995,7 @@ ejs-listbox {
|
|
|
2948
2995
|
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
2949
2996
|
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
2950
2997
|
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
2951
|
-
width: 85% !important;
|
|
2998
|
+
width: 85% !important; /* stylelint-disable-line declaration-no-important */
|
|
2952
2999
|
}
|
|
2953
3000
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
2954
3001
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
@@ -3075,30 +3122,16 @@ ejs-listbox {
|
|
|
3075
3122
|
margin: 0 0 0 12px;
|
|
3076
3123
|
}
|
|
3077
3124
|
|
|
3078
|
-
.e-listbox-wrapper.e-filter-list .e-list-parent
|
|
3079
|
-
|
|
3080
|
-
}
|
|
3081
|
-
|
|
3082
|
-
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
3083
|
-
height: calc(100% - 39px) !important;
|
|
3084
|
-
}
|
|
3085
|
-
|
|
3086
|
-
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
3125
|
+
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3126
|
+
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
3087
3127
|
height: calc(100% - 32px);
|
|
3088
3128
|
}
|
|
3089
3129
|
|
|
3090
|
-
.e-
|
|
3091
|
-
|
|
3092
|
-
}
|
|
3093
|
-
|
|
3094
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
3130
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3131
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
3095
3132
|
height: calc(100% - 46px);
|
|
3096
3133
|
}
|
|
3097
3134
|
|
|
3098
|
-
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
3099
|
-
height: calc(100% - 46px) !important;
|
|
3100
|
-
}
|
|
3101
|
-
|
|
3102
3135
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
3103
3136
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3104
3137
|
height: calc(100% - 96px);
|
|
@@ -3109,14 +3142,11 @@ ejs-listbox {
|
|
|
3109
3142
|
height: calc(100% - 50px);
|
|
3110
3143
|
}
|
|
3111
3144
|
|
|
3112
|
-
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent
|
|
3145
|
+
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3146
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
3113
3147
|
height: calc(100% - 44px);
|
|
3114
3148
|
}
|
|
3115
3149
|
|
|
3116
|
-
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
3117
|
-
height: calc(100% - 44px) !important;
|
|
3118
|
-
}
|
|
3119
|
-
|
|
3120
3150
|
.e-listbox-wrapper,
|
|
3121
3151
|
.e-listbox-container:not(.e-listboxtool-container):not(.e-sortableclone),
|
|
3122
3152
|
.e-listboxtool-container.e-listbox-container .e-ul {
|
|
@@ -3136,6 +3166,11 @@ ejs-listbox {
|
|
|
3136
3166
|
font-size: 16px;
|
|
3137
3167
|
}
|
|
3138
3168
|
|
|
3169
|
+
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3170
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
3171
|
+
height: calc(100% - 39px);
|
|
3172
|
+
}
|
|
3173
|
+
|
|
3139
3174
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
3140
3175
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3141
3176
|
height: calc(100% - 79px);
|
|
@@ -3371,4 +3406,22 @@ ejs-listbox {
|
|
|
3371
3406
|
.e-listbox-container.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
|
|
3372
3407
|
padding-left: 3.9285em;
|
|
3373
3408
|
padding-right: 1.0714em;
|
|
3409
|
+
}
|
|
3410
|
+
|
|
3411
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
3412
|
+
@keyframes material-spinner-rotate {
|
|
3413
|
+
0% {
|
|
3414
|
+
transform: rotate(0);
|
|
3415
|
+
}
|
|
3416
|
+
100% {
|
|
3417
|
+
transform: rotate(360deg);
|
|
3418
|
+
}
|
|
3419
|
+
}
|
|
3420
|
+
@keyframes fabric-spinner-rotate {
|
|
3421
|
+
0% {
|
|
3422
|
+
transform: rotate(0);
|
|
3423
|
+
}
|
|
3424
|
+
100% {
|
|
3425
|
+
transform: rotate(360deg);
|
|
3426
|
+
}
|
|
3374
3427
|
}
|
package/styles/bootstrap4.scss
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: #fff;
|
|
108
109
|
cursor: default;
|
|
109
110
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
@@ -112,6 +113,45 @@
|
|
|
112
113
|
text-align: center;
|
|
113
114
|
}
|
|
114
115
|
|
|
116
|
+
.e-mention.e-popup {
|
|
117
|
+
background: #212529;
|
|
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: #343a40;
|
|
133
|
+
border-radius: 2px;
|
|
134
|
+
border: none;
|
|
135
|
+
color: #0d6efd;
|
|
136
|
+
cursor: default;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.e-mention .e-mention-chip::selection {
|
|
140
|
+
color: #fff;
|
|
141
|
+
background: #0d6efd;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.e-mention.e-editable-element {
|
|
145
|
+
border: 2px solid #444c54;
|
|
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-rtl .e-dropdownbase.e-dd-group .e-list-item {
|
|
116
156
|
padding-right: 12px;
|
|
117
157
|
}
|
|
@@ -175,6 +215,7 @@
|
|
|
175
215
|
border-color: #444c54;
|
|
176
216
|
}
|
|
177
217
|
.e-dropdownbase .e-list-item {
|
|
218
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
178
219
|
-webkit-tap-highlight-color: transparent;
|
|
179
220
|
background-color: #343a40;
|
|
180
221
|
border-bottom: 0;
|
|
@@ -366,6 +407,9 @@
|
|
|
366
407
|
color: #fff;
|
|
367
408
|
}
|
|
368
409
|
|
|
410
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
411
|
+
/* stylelint-disable-line no-empty-source */
|
|
412
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
369
413
|
@keyframes material-spinner-rotate {
|
|
370
414
|
0% {
|
|
371
415
|
transform: rotate(0);
|
|
@@ -582,6 +626,7 @@
|
|
|
582
626
|
background-color: #212529;
|
|
583
627
|
}
|
|
584
628
|
|
|
629
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
585
630
|
.e-ddl input.e-input::-webkit-contacts-auto-fill-button {
|
|
586
631
|
display: none;
|
|
587
632
|
pointer-events: none;
|
|
@@ -590,6 +635,7 @@
|
|
|
590
635
|
visibility: hidden;
|
|
591
636
|
}
|
|
592
637
|
|
|
638
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
593
639
|
.e-filter-parent {
|
|
594
640
|
border: 0;
|
|
595
641
|
border-top-width: 0;
|
|
@@ -629,6 +675,7 @@
|
|
|
629
675
|
cursor: default;
|
|
630
676
|
}
|
|
631
677
|
|
|
678
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
632
679
|
.e-ddl.e-input-group .e-ddl-hidden,
|
|
633
680
|
.e-ddl.e-float-input .e-ddl-hidden {
|
|
634
681
|
-webkit-appearance: initial;
|
|
@@ -771,6 +818,9 @@ ejs-dropdownlist {
|
|
|
771
818
|
color: #fff;
|
|
772
819
|
}
|
|
773
820
|
|
|
821
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
822
|
+
/* stylelint-disable-line no-empty-source */
|
|
823
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
774
824
|
@keyframes material-spinner-rotate {
|
|
775
825
|
0% {
|
|
776
826
|
transform: rotate(0);
|
|
@@ -788,6 +838,8 @@ ejs-dropdownlist {
|
|
|
788
838
|
}
|
|
789
839
|
}
|
|
790
840
|
/*! TreeView's bootstrap5 theme wise override definitions and variables */
|
|
841
|
+
/* stylelint-disable */
|
|
842
|
+
/* stylelint-disable */
|
|
791
843
|
.e-ddt .e-ddt-icon::before {
|
|
792
844
|
content: "\e734";
|
|
793
845
|
}
|
|
@@ -1226,6 +1278,10 @@ ejs-dropdownlist {
|
|
|
1226
1278
|
color: #fff;
|
|
1227
1279
|
}
|
|
1228
1280
|
|
|
1281
|
+
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
1282
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1283
|
+
/* stylelint-disable-line no-empty-source */
|
|
1284
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1229
1285
|
@keyframes material-spinner-rotate {
|
|
1230
1286
|
0% {
|
|
1231
1287
|
transform: rotate(0);
|
|
@@ -1607,7 +1663,7 @@ ejs-dropdownlist {
|
|
|
1607
1663
|
border: 0;
|
|
1608
1664
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
1609
1665
|
font-size: 14px;
|
|
1610
|
-
font-weight:
|
|
1666
|
+
font-weight: normal;
|
|
1611
1667
|
height: 30px;
|
|
1612
1668
|
min-height: 30px;
|
|
1613
1669
|
outline: none;
|
|
@@ -1621,7 +1677,7 @@ ejs-dropdownlist {
|
|
|
1621
1677
|
color: inherit;
|
|
1622
1678
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
1623
1679
|
font-size: 14px;
|
|
1624
|
-
font-weight:
|
|
1680
|
+
font-weight: normal;
|
|
1625
1681
|
height: 30px;
|
|
1626
1682
|
min-height: 30px;
|
|
1627
1683
|
outline: none;
|
|
@@ -1644,6 +1700,7 @@ ejs-dropdownlist {
|
|
|
1644
1700
|
min-height: 36px;
|
|
1645
1701
|
}
|
|
1646
1702
|
|
|
1703
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1647
1704
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
1648
1705
|
display: none;
|
|
1649
1706
|
}
|
|
@@ -2303,6 +2360,7 @@ ejs-multiselect {
|
|
|
2303
2360
|
box-sizing: border-box;
|
|
2304
2361
|
}
|
|
2305
2362
|
|
|
2363
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2306
2364
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
2307
2365
|
-webkit-text-fill-color: #fff;
|
|
2308
2366
|
color: #fff;
|
|
@@ -2429,19 +2487,19 @@ ejs-multiselect {
|
|
|
2429
2487
|
border: 0 solid transparent;
|
|
2430
2488
|
}
|
|
2431
2489
|
|
|
2432
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
2490
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2433
2491
|
color: #6c757d;
|
|
2434
2492
|
}
|
|
2435
2493
|
|
|
2436
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
2494
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2437
2495
|
color: #6c757d;
|
|
2438
2496
|
}
|
|
2439
2497
|
|
|
2440
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
2498
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2441
2499
|
color: #6c757d;
|
|
2442
2500
|
}
|
|
2443
2501
|
|
|
2444
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
2502
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2445
2503
|
color: #6c757d;
|
|
2446
2504
|
}
|
|
2447
2505
|
|
|
@@ -2522,6 +2580,7 @@ ejs-multiselect {
|
|
|
2522
2580
|
content: "\e744";
|
|
2523
2581
|
}
|
|
2524
2582
|
|
|
2583
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2525
2584
|
.e-listbox-wrapper,
|
|
2526
2585
|
.e-listbox-container {
|
|
2527
2586
|
-webkit-overflow-scrolling: touch;
|
|
@@ -2540,7 +2599,7 @@ ejs-multiselect {
|
|
|
2540
2599
|
}
|
|
2541
2600
|
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
2542
2601
|
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
2543
|
-
width: 84% !important;
|
|
2602
|
+
width: 84% !important; /* stylelint-disable-line declaration-no-important */
|
|
2544
2603
|
}
|
|
2545
2604
|
.e-listbox-wrapper:focus,
|
|
2546
2605
|
.e-listbox-container:focus {
|
|
@@ -2899,16 +2958,6 @@ ejs-listbox {
|
|
|
2899
2958
|
top: 30%;
|
|
2900
2959
|
}
|
|
2901
2960
|
|
|
2902
|
-
.e-listboxtool-container .e-left {
|
|
2903
|
-
-ms-flex-direction: row-reverse;
|
|
2904
|
-
flex-direction: row-reverse;
|
|
2905
|
-
}
|
|
2906
|
-
|
|
2907
|
-
.e-listboxtool-wrapper .e-left {
|
|
2908
|
-
-ms-flex-direction: column-reverse;
|
|
2909
|
-
flex-direction: column-reverse;
|
|
2910
|
-
}
|
|
2911
|
-
|
|
2912
2961
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
2913
2962
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
2914
2963
|
margin-right: 15px;
|
|
@@ -2922,7 +2971,7 @@ ejs-listbox {
|
|
|
2922
2971
|
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
2923
2972
|
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
2924
2973
|
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
2925
|
-
width: 80% !important;
|
|
2974
|
+
width: 80% !important; /* stylelint-disable-line declaration-no-important */
|
|
2926
2975
|
}
|
|
2927
2976
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
2928
2977
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
@@ -3011,28 +3060,14 @@ ejs-listbox {
|
|
|
3011
3060
|
.e-listbox-container.e-bigger .e-list-header .e-text {
|
|
3012
3061
|
font-size: 14px;
|
|
3013
3062
|
}
|
|
3014
|
-
.e-listbox-wrapper.e-filter-list .e-list-parent
|
|
3015
|
-
|
|
3016
|
-
}
|
|
3017
|
-
|
|
3018
|
-
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
3019
|
-
height: calc(100% - 50px) !important;
|
|
3020
|
-
}
|
|
3021
|
-
|
|
3022
|
-
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
3063
|
+
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3064
|
+
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
3023
3065
|
height: calc(100% - 45px);
|
|
3024
3066
|
}
|
|
3025
3067
|
|
|
3026
|
-
.e-
|
|
3027
|
-
|
|
3028
|
-
|
|
3029
|
-
|
|
3030
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
3031
|
-
height: calc(100% - 56px);
|
|
3032
|
-
}
|
|
3033
|
-
|
|
3034
|
-
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
3035
|
-
height: calc(100% - 56px) !important;
|
|
3068
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3069
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
3070
|
+
height: calc(100% - 55px);
|
|
3036
3071
|
}
|
|
3037
3072
|
|
|
3038
3073
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
@@ -3045,14 +3080,11 @@ ejs-listbox {
|
|
|
3045
3080
|
height: calc(100% - 40px);
|
|
3046
3081
|
}
|
|
3047
3082
|
|
|
3048
|
-
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent
|
|
3083
|
+
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3084
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
3049
3085
|
height: calc(100% - 45px);
|
|
3050
3086
|
}
|
|
3051
3087
|
|
|
3052
|
-
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
3053
|
-
height: calc(100% - 45px) !important;
|
|
3054
|
-
}
|
|
3055
|
-
|
|
3056
3088
|
.e-listbox-wrapper,
|
|
3057
3089
|
.e-listbox-container:not(.e-listboxtool-container):not(.e-sortableclone),
|
|
3058
3090
|
.e-listboxtool-container.e-listbox-container .e-ul {
|
|
@@ -3072,6 +3104,11 @@ ejs-listbox {
|
|
|
3072
3104
|
font-size: 12px;
|
|
3073
3105
|
}
|
|
3074
3106
|
|
|
3107
|
+
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3108
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
3109
|
+
height: calc(100% - 47px);
|
|
3110
|
+
}
|
|
3111
|
+
|
|
3075
3112
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
3076
3113
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3077
3114
|
height: calc(100% - 86px);
|
|
@@ -3302,4 +3339,24 @@ ejs-listbox {
|
|
|
3302
3339
|
.e-listbox-container.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
|
|
3303
3340
|
padding-left: 10px;
|
|
3304
3341
|
padding-right: 16px;
|
|
3305
|
-
}
|
|
3342
|
+
}
|
|
3343
|
+
|
|
3344
|
+
/* stylelint-disable-line no-empty-source */
|
|
3345
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
3346
|
+
@keyframes material-spinner-rotate {
|
|
3347
|
+
0% {
|
|
3348
|
+
transform: rotate(0);
|
|
3349
|
+
}
|
|
3350
|
+
100% {
|
|
3351
|
+
transform: rotate(360deg);
|
|
3352
|
+
}
|
|
3353
|
+
}
|
|
3354
|
+
@keyframes fabric-spinner-rotate {
|
|
3355
|
+
0% {
|
|
3356
|
+
transform: rotate(0);
|
|
3357
|
+
}
|
|
3358
|
+
100% {
|
|
3359
|
+
transform: rotate(360deg);
|
|
3360
|
+
}
|
|
3361
|
+
}
|
|
3362
|
+
/* stylelint-disable-line no-empty-source */
|