@syncfusion/ej2-dropdowns 20.2.50 → 20.3.48
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 +18 -24
- 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 +1424 -51
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +1450 -55
- 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 +2 -2
- package/src/combo-box/combo-box.js +0 -3
- package/src/drop-down-base/drop-down-base.d.ts +2 -0
- package/src/drop-down-base/drop-down-base.js +8 -2
- package/src/drop-down-list/drop-down-list.d.ts +1 -0
- package/src/drop-down-list/drop-down-list.js +23 -22
- 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 +452 -0
- package/src/mention/mention.js +1383 -0
- package/src/multi-select/checkbox-selection.js +1 -4
- package/src/multi-select/multi-select.d.ts +1 -0
- package/src/multi-select/multi-select.js +20 -11
- 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
|
@@ -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 */
|
package/styles/bootstrap5.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: #212529;
|
|
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: #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: #e9ecef;
|
|
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 #dee2e6;
|
|
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: #dee2e6;
|
|
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: #fff;
|
|
180
221
|
border-bottom: 0;
|
|
@@ -366,6 +407,9 @@
|
|
|
366
407
|
color: #212529;
|
|
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: #fff;
|
|
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: #212529;
|
|
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 */
|
package/styles/bootstrap5.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
/* stylelint-disable-line no-empty-source */
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
//default
|
|
1
|
+
//default
|
|
2
2
|
//enddefault
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
//default
|
|
1
|
+
//default
|
|
2
2
|
//enddefault
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
//default
|
|
2
2
|
|
|
3
|
-
.e-input-group.e-ddl .e-control.e-combobox
|
|
3
|
+
.e-input-group.e-ddl .e-control.e-combobox ~ .e-ddl-icon {
|
|
4
4
|
font-size: 8px;
|
|
5
5
|
}
|
|
6
6
|
|
|
7
|
-
.e-bigger .e-input-group.e-ddl .e-control.e-combobox
|
|
7
|
+
.e-bigger .e-input-group.e-ddl .e-control.e-combobox ~ .e-ddl-icon {
|
|
8
8
|
font-size: 10px;
|
|
9
9
|
}
|
|
10
10
|
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
//default
|
|
1
|
+
//default
|
|
2
2
|
//enddefault
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
//default
|
|
1
|
+
//default
|
|
2
2
|
//enddefault
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
//default
|
|
1
|
+
//default
|
|
2
2
|
//enddefault
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
//default
|
|
1
|
+
//default
|
|
2
2
|
//enddefault
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
//default
|
|
1
|
+
//default
|
|
2
2
|
//enddefault
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
//default
|
|
1
|
+
//default
|
|
2
2
|
//enddefault
|