@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
|
@@ -112,7 +112,8 @@
|
|
|
112
112
|
position: relative;
|
|
113
113
|
}
|
|
114
114
|
|
|
115
|
-
.e-popup.e-ddl .e-dropdownbase.e-nodata
|
|
115
|
+
.e-popup.e-ddl .e-dropdownbase.e-nodata,
|
|
116
|
+
.e-popup.e-mention .e-dropdownbase.e-nodata {
|
|
116
117
|
color: #111827;
|
|
117
118
|
cursor: default;
|
|
118
119
|
font-family: "Inter";
|
|
@@ -121,6 +122,45 @@
|
|
|
121
122
|
text-align: center;
|
|
122
123
|
}
|
|
123
124
|
|
|
125
|
+
.e-mention.e-popup {
|
|
126
|
+
background: #fff;
|
|
127
|
+
border: 0;
|
|
128
|
+
box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
129
|
+
margin-top: 2px;
|
|
130
|
+
position: absolute;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
134
|
+
display: inline;
|
|
135
|
+
font-weight: bold;
|
|
136
|
+
vertical-align: baseline;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.e-mention .e-mention-chip,
|
|
140
|
+
.e-mention .e-mention-chip:hover {
|
|
141
|
+
background: #f3f4f6;
|
|
142
|
+
border-radius: 2px;
|
|
143
|
+
border: none;
|
|
144
|
+
color: #4f46e5;
|
|
145
|
+
cursor: default;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.e-mention .e-mention-chip::selection {
|
|
149
|
+
color: #fff;
|
|
150
|
+
background: #4f46e5;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.e-mention.e-editable-element {
|
|
154
|
+
border: 2px solid #e5e7eb;
|
|
155
|
+
height: auto;
|
|
156
|
+
min-height: 120px;
|
|
157
|
+
width: 100%;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.e-form-mirror-div {
|
|
161
|
+
white-space: pre-wrap;
|
|
162
|
+
}
|
|
163
|
+
|
|
124
164
|
.e-bigger.e-ddl .e-dropdownbase.e-nodata,
|
|
125
165
|
.e-bigger .e-ddl .e-dropdownbase.e-nodata {
|
|
126
166
|
font-size: 16px;
|
|
@@ -254,6 +294,7 @@
|
|
|
254
294
|
border-color: #e5e7eb;
|
|
255
295
|
}
|
|
256
296
|
.e-dropdownbase .e-list-item {
|
|
297
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
257
298
|
-webkit-tap-highlight-color: transparent;
|
|
258
299
|
background-color: #fff;
|
|
259
300
|
border-bottom: 0;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
//default
|
|
1
|
+
//default
|
|
2
2
|
$ddl-input-font-size: 14px !default;
|
|
3
3
|
$ddl-input-border: $border-size $border-type !default;
|
|
4
4
|
$ddl-input-font-family: inherit !default;
|
|
@@ -24,6 +24,7 @@ $ddl-default-border-color: $grey-44 !default;
|
|
|
24
24
|
$ddl-back-icon-margin: -2px 10px 0 -54px !default;
|
|
25
25
|
$ddl-back-icon-padding: 0 !default;
|
|
26
26
|
$ddl-filter-margin: 0 !default;
|
|
27
|
+
|
|
27
28
|
// small size
|
|
28
29
|
$ddl-small-list-font-size: 13px !default;
|
|
29
30
|
|
|
@@ -23,6 +23,7 @@ $ddl-default-border-color: $grey-cc !default;
|
|
|
23
23
|
$ddl-back-icon-margin: -2px 10px 0 -54px !default;
|
|
24
24
|
$ddl-back-icon-padding: 0 !default;
|
|
25
25
|
$ddl-filter-margin: 0 !default;
|
|
26
|
+
|
|
26
27
|
// small size
|
|
27
28
|
$ddl-small-list-font-size: 13px !default;
|
|
28
29
|
|
|
@@ -32,7 +33,7 @@ $ddl-bigger-small-list-font-size: 14px !default;
|
|
|
32
33
|
@include export-module('dropdownlist-bootstrap') {
|
|
33
34
|
#{&}.e-popup.e-ddl {
|
|
34
35
|
border-radius: 4px;
|
|
35
|
-
box-shadow:
|
|
36
|
+
box-shadow: 0 6px 12px $ddl-list-box-shadow-color;
|
|
36
37
|
margin-top: 3px;
|
|
37
38
|
@at-root {
|
|
38
39
|
#{if(&, '&', '*')} .e-input-group {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
$ddl-input-font-size: 14px !default;
|
|
2
|
+
|
|
2
3
|
// $ddl-input-border: $border-size $border-type !default;
|
|
3
4
|
$ddl-input-font-family: inherit !default;
|
|
4
5
|
$ddl-zero-value: 0 !default;
|
|
@@ -25,6 +26,7 @@ $ddl-icon-color: rgba($black, .5) !default;
|
|
|
25
26
|
$ddl-icon-hover-color: rgba($black, .4) !default;
|
|
26
27
|
$ddl-readonly-bg-color: $gray-200 !default;
|
|
27
28
|
$ddl-filter-margin: 0 !default;
|
|
29
|
+
|
|
28
30
|
// small size
|
|
29
31
|
$ddl-small-list-font-size: 13px !default;
|
|
30
32
|
|
|
@@ -34,7 +36,7 @@ $ddl-bigger-small-list-font-size: 14px !default;
|
|
|
34
36
|
@include export-module('dropdownlist-bootstrap4') {
|
|
35
37
|
#{&}.e-popup.e-ddl {
|
|
36
38
|
border-radius: 4px;
|
|
37
|
-
box-shadow:
|
|
39
|
+
box-shadow: none;
|
|
38
40
|
margin-top: 3px;
|
|
39
41
|
@at-root {
|
|
40
42
|
#{if(&, '&', '*')} .e-input-group {
|
|
@@ -17,6 +17,7 @@ $ddl-back-icon-padding: 0 8px !default;
|
|
|
17
17
|
$ddl-popup-shadow: $shadow-lg !default;
|
|
18
18
|
$ddl-readonly-bg-color: $content-bg-color-alt2 !default;
|
|
19
19
|
$ddl-filter-margin: 0 !default;
|
|
20
|
+
|
|
20
21
|
// Small Size
|
|
21
22
|
$ddl-small-list-font-size: $text-xs !default;
|
|
22
23
|
|
|
@@ -38,7 +39,7 @@ $ddl-filter-box-shadow: 0 1.5px 5px -2px $ddl-filter-box-shadow-color !default;
|
|
|
38
39
|
@include export-module('dropdownlist-bootstrap5') {
|
|
39
40
|
#{&}.e-popup.e-ddl {
|
|
40
41
|
border-radius: 4px;
|
|
41
|
-
box-shadow:
|
|
42
|
+
box-shadow: none;
|
|
42
43
|
margin-top: 3px;
|
|
43
44
|
@at-root {
|
|
44
45
|
#{if(&, '&', '*')} .e-input-group {
|
|
@@ -126,7 +127,7 @@ $ddl-filter-box-shadow: 0 1.5px 5px -2px $ddl-filter-box-shadow-color !default;
|
|
|
126
127
|
|
|
127
128
|
.e-input-group.e-ddl .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
128
129
|
.e-input-group.e-control-wrapper.e-ddl .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
129
|
-
.e-float-input.e-ddl input[readonly]
|
|
130
|
+
.e-float-input.e-ddl input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
130
131
|
.e-float-input.e-control-wrapper.e-ddl input[readonly] ~ span.e-input-group-icon.e-ddl-icon {
|
|
131
132
|
background: transparent;
|
|
132
133
|
color: $ddl-list-icon-color;
|
|
@@ -139,7 +140,6 @@ $ddl-filter-box-shadow: 0 1.5px 5px -2px $ddl-filter-box-shadow-color !default;
|
|
|
139
140
|
background: $content-bg-color-alt2;
|
|
140
141
|
}
|
|
141
142
|
|
|
142
|
-
|
|
143
143
|
.e-input-group:not(.e-disabled) .e-control#{&}.e-dropdownlist ~ .e-ddl-icon,
|
|
144
144
|
.e-input-group.e-disabled.e-ddl .e-control#{&}.e-dropdownlist ~ .e-input-group-icon,
|
|
145
145
|
.e-control#{&}.e-dropdownlist .e-input-group.e-disabled.e-ddl .e-input-group-icon,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
//default
|
|
1
|
+
//default
|
|
2
2
|
$ddl-input-font-size: 14px !default;
|
|
3
3
|
$ddl-input-border: $border-size $border-type !default;
|
|
4
4
|
$ddl-input-font-family: inherit !default;
|
|
@@ -24,6 +24,7 @@ $ddl-filter-background-color: $neutral-white !default;
|
|
|
24
24
|
$ddl-back-icon-margin: -2px 10px 0 -54px !default;
|
|
25
25
|
$ddl-back-icon-padding: 0 !default;
|
|
26
26
|
$ddl-filter-margin: 0 !default;
|
|
27
|
+
|
|
27
28
|
//small size
|
|
28
29
|
$ddl-small-list-font-size: 13px !default;
|
|
29
30
|
|
|
@@ -23,8 +23,10 @@ $ddl-filter-background-color: $neutral-white !default;
|
|
|
23
23
|
$ddl-back-icon-margin: -2px 10px 0 -54px !default;
|
|
24
24
|
$ddl-back-icon-padding: 0 !default;
|
|
25
25
|
$ddl-filter-margin: 0 !default;
|
|
26
|
+
|
|
26
27
|
//small size
|
|
27
28
|
$ddl-small-list-font-size: 13px !default;
|
|
29
|
+
|
|
28
30
|
// touch size
|
|
29
31
|
$ddl-bigger-small-list-font-size: 14px !default;
|
|
30
32
|
|
|
@@ -18,6 +18,7 @@ $ddl-popup-shadow: $shadow-lg !default;
|
|
|
18
18
|
$ddl-readonly-bg-color: $content-bg-color !default;
|
|
19
19
|
$ddl-filter-parent-border: 1px solid $flyout-border !default;
|
|
20
20
|
$ddl-filter-margin: 0 !default;
|
|
21
|
+
|
|
21
22
|
// Small Size
|
|
22
23
|
$ddl-small-list-font-size: $text-xs !default;
|
|
23
24
|
|
|
@@ -39,7 +40,7 @@ $ddl-filter-box-shadow: none !default;
|
|
|
39
40
|
@include export-module('dropdownlist-bootstrap5') {
|
|
40
41
|
#{&}.e-popup.e-ddl {
|
|
41
42
|
border-radius: 4px;
|
|
42
|
-
box-shadow:
|
|
43
|
+
box-shadow: none;
|
|
43
44
|
margin-top: 1px;
|
|
44
45
|
@at-root {
|
|
45
46
|
#{if(&, '&', '*')} .e-input-group {
|
|
@@ -17,6 +17,7 @@ $ddl-back-icon-padding: 0 8px !default;
|
|
|
17
17
|
$ddl-popup-shadow: $shadow-lg !default;
|
|
18
18
|
$ddl-readonly-bg-color: $content-bg-color-alt2 !default;
|
|
19
19
|
$ddl-filter-margin: 0 !default;
|
|
20
|
+
|
|
20
21
|
// Small Size
|
|
21
22
|
$ddl-small-list-font-size: $text-xs !default;
|
|
22
23
|
|
|
@@ -38,7 +39,7 @@ $ddl-filter-box-shadow: 0 1.5px 5px -2px $ddl-filter-box-shadow-color !default;
|
|
|
38
39
|
@include export-module('dropdownlist-bootstrap5') {
|
|
39
40
|
#{&}.e-popup.e-ddl {
|
|
40
41
|
border-radius: 4px;
|
|
41
|
-
box-shadow:
|
|
42
|
+
box-shadow: none;
|
|
42
43
|
margin-top: 3px;
|
|
43
44
|
@at-root {
|
|
44
45
|
#{if(&, '&', '*')} .e-input-group {
|
|
@@ -126,7 +127,7 @@ $ddl-filter-box-shadow: 0 1.5px 5px -2px $ddl-filter-box-shadow-color !default;
|
|
|
126
127
|
|
|
127
128
|
.e-input-group.e-ddl .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
128
129
|
.e-input-group.e-control-wrapper.e-ddl .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
129
|
-
.e-float-input.e-ddl input[readonly]
|
|
130
|
+
.e-float-input.e-ddl input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
130
131
|
.e-float-input.e-control-wrapper.e-ddl input[readonly] ~ span.e-input-group-icon.e-ddl-icon {
|
|
131
132
|
background: transparent;
|
|
132
133
|
color: $ddl-list-icon-color;
|
|
@@ -139,7 +140,6 @@ $ddl-filter-box-shadow: 0 1.5px 5px -2px $ddl-filter-box-shadow-color !default;
|
|
|
139
140
|
background: $content-bg-color-alt2;
|
|
140
141
|
}
|
|
141
142
|
|
|
142
|
-
|
|
143
143
|
.e-input-group:not(.e-disabled) .e-control#{&}.e-dropdownlist ~ .e-ddl-icon,
|
|
144
144
|
.e-input-group.e-disabled.e-ddl .e-control#{&}.e-dropdownlist ~ .e-input-group-icon,
|
|
145
145
|
.e-control#{&}.e-dropdownlist .e-input-group.e-disabled.e-ddl .e-input-group-icon,
|
|
@@ -23,8 +23,10 @@ $ddl-filter-background-color: $bg-base-0 !default;
|
|
|
23
23
|
$ddl-back-icon-margin: -2px 10px 0 -54px !default;
|
|
24
24
|
$ddl-back-icon-padding: 0 !default;
|
|
25
25
|
$ddl-filter-margin: 0 !default;
|
|
26
|
+
|
|
26
27
|
//small size
|
|
27
28
|
$ddl-small-list-font-size: 13px !default;
|
|
29
|
+
|
|
28
30
|
// touch size
|
|
29
31
|
$ddl-bigger-small-list-font-size: 14px !default;
|
|
30
32
|
|
|
@@ -41,40 +43,49 @@ $ddl-bigger-small-list-font-size: 14px !default;
|
|
|
41
43
|
#{if(&, '&', '*')}.e-popup {
|
|
42
44
|
border: 0;
|
|
43
45
|
box-shadow: 0 0 5px 0 $ddl-list-box-shadow-color;
|
|
44
|
-
margin-top: 1px
|
|
46
|
+
margin-top: 1px;
|
|
47
|
+
#{if(&, '&', '*')} .e-content.e-nodata {
|
|
45
48
|
background-color: $bg-base-0;
|
|
46
|
-
}
|
|
49
|
+
}
|
|
50
|
+
#{if(&, '&', '*')} .e-dropdownbase {
|
|
47
51
|
#{if(&, '&', '*')} .e-list-item {
|
|
48
52
|
#{if(&, '&', '*')} .e-highlight {
|
|
49
53
|
color: $header-font;
|
|
50
54
|
}
|
|
51
55
|
}
|
|
52
|
-
}
|
|
56
|
+
}
|
|
57
|
+
#{if(&, '&', '*')} .e-input-group {
|
|
53
58
|
display: flex;
|
|
54
59
|
width: auto;
|
|
55
60
|
@at-root {
|
|
56
61
|
#{if(&, '&', '*')} input {
|
|
57
62
|
line-height: 15px;
|
|
58
63
|
}
|
|
59
|
-
}
|
|
64
|
+
}
|
|
65
|
+
#{if(&, '&', '*')} .e-clear-icon {
|
|
60
66
|
border-radius: 20px;
|
|
61
67
|
height: 20px;
|
|
62
68
|
margin: 5px;
|
|
63
69
|
min-width: 20px;
|
|
64
|
-
}
|
|
70
|
+
}
|
|
71
|
+
#{if(&, '&', '*')} .e-clear-icon {
|
|
65
72
|
#{if(&, '&', '*')}::before {
|
|
66
73
|
font-size: 10px;
|
|
74
|
+
}
|
|
67
75
|
}
|
|
68
76
|
}
|
|
69
|
-
|
|
77
|
+
#{if(&, '&', '*')} .e-filter-parent {
|
|
70
78
|
border-left-width: 0;
|
|
71
|
-
border-right-width: 0
|
|
79
|
+
border-right-width: 0;
|
|
80
|
+
#{if(&, '&', '*')} .e-input-group.e-control-wrapper:hover:active {
|
|
72
81
|
border-color: $border-fg;
|
|
73
82
|
}
|
|
74
|
-
}
|
|
83
|
+
}
|
|
84
|
+
.e-bigger #{if(&, '&', '*')} {
|
|
75
85
|
#{if(&, '&', '*')}.e-ddl-device.e-ddl-device-filter {
|
|
76
86
|
margin-top: 0;
|
|
77
|
-
}
|
|
87
|
+
}
|
|
88
|
+
#{if(&, '&', '*')} .e-list-item,
|
|
78
89
|
#{if(&, '&', '*')} .e-list-group-item,
|
|
79
90
|
#{if(&, '&', '*')} .e-fixed-head {
|
|
80
91
|
font-size: 15px;
|
|
@@ -98,7 +109,7 @@ $ddl-bigger-small-list-font-size: 14px !default;
|
|
|
98
109
|
height: 46px;
|
|
99
110
|
}
|
|
100
111
|
}
|
|
101
|
-
|
|
112
|
+
}
|
|
102
113
|
|
|
103
114
|
.e-bigger.e-small #{if(&, '&', '*')} {
|
|
104
115
|
#{if(&, '&', '*')} .e-list-item,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
//default
|
|
1
|
+
//default
|
|
2
2
|
$ddl-input-font-size: 14px !default;
|
|
3
3
|
$ddl-input-border: $border-size $border-type !default;
|
|
4
4
|
$ddl-input-font-family: inherit !default;
|
|
@@ -24,8 +24,10 @@ $ddl-filter-background-color: $bg-base-0 !default;
|
|
|
24
24
|
$ddl-back-icon-margin: -2px 10px 0 -54px !default;
|
|
25
25
|
$ddl-back-icon-padding: 0 !default;
|
|
26
26
|
$ddl-filter-margin: 0 !default;
|
|
27
|
+
|
|
27
28
|
//small size
|
|
28
29
|
$ddl-small-list-font-size: 13px !default;
|
|
30
|
+
|
|
29
31
|
// touch size
|
|
30
32
|
$ddl-bigger-small-list-font-size: 14px !default;
|
|
31
33
|
|
|
@@ -43,40 +45,49 @@ $ddl-bigger-small-list-font-size: 14px !default;
|
|
|
43
45
|
#{if(&, '&', '*')}.e-popup {
|
|
44
46
|
border: 0;
|
|
45
47
|
box-shadow: 0 0 5px 0 $ddl-list-box-shadow-color;
|
|
46
|
-
margin-top: 1px
|
|
48
|
+
margin-top: 1px;
|
|
49
|
+
#{if(&, '&', '*')} .e-content.e-nodata {
|
|
47
50
|
background-color: $bg-base-0;
|
|
48
|
-
}
|
|
51
|
+
}
|
|
52
|
+
#{if(&, '&', '*')} .e-dropdownbase {
|
|
49
53
|
#{if(&, '&', '*')} .e-list-item {
|
|
50
54
|
#{if(&, '&', '*')} .e-highlight {
|
|
51
55
|
color: $header-font;
|
|
52
56
|
}
|
|
53
57
|
}
|
|
54
|
-
}
|
|
58
|
+
}
|
|
59
|
+
#{if(&, '&', '*')} .e-input-group {
|
|
55
60
|
display: flex;
|
|
56
61
|
width: auto;
|
|
57
62
|
@at-root {
|
|
58
63
|
#{if(&, '&', '*')} input {
|
|
59
64
|
line-height: 15px;
|
|
60
65
|
}
|
|
61
|
-
}
|
|
66
|
+
}
|
|
67
|
+
#{if(&, '&', '*')} .e-clear-icon {
|
|
62
68
|
border-radius: 20px;
|
|
63
69
|
height: 20px;
|
|
64
70
|
margin: 5px;
|
|
65
71
|
min-width: 20px;
|
|
66
|
-
}
|
|
72
|
+
}
|
|
73
|
+
#{if(&, '&', '*')} .e-clear-icon {
|
|
67
74
|
#{if(&, '&', '*')}::before {
|
|
68
75
|
font-size: 10px;
|
|
76
|
+
}
|
|
69
77
|
}
|
|
70
78
|
}
|
|
71
|
-
|
|
79
|
+
#{if(&, '&', '*')} .e-filter-parent {
|
|
72
80
|
border-left-width: 0;
|
|
73
|
-
border-right-width: 0
|
|
81
|
+
border-right-width: 0;
|
|
82
|
+
#{if(&, '&', '*')} .e-input-group.e-control-wrapper:hover:active {
|
|
74
83
|
border-color: $border-fg;
|
|
75
84
|
}
|
|
76
|
-
}
|
|
85
|
+
}
|
|
86
|
+
.e-bigger #{if(&, '&', '*')} {
|
|
77
87
|
#{if(&, '&', '*')}.e-ddl-device.e-ddl-device-filter {
|
|
78
88
|
margin-top: 0;
|
|
79
|
-
}
|
|
89
|
+
}
|
|
90
|
+
#{if(&, '&', '*')} .e-list-item,
|
|
80
91
|
#{if(&, '&', '*')} .e-list-group-item,
|
|
81
92
|
#{if(&, '&', '*')} .e-fixed-head {
|
|
82
93
|
font-size: 15px;
|
|
@@ -100,7 +111,7 @@ $ddl-bigger-small-list-font-size: 14px !default;
|
|
|
100
111
|
height: 30px;
|
|
101
112
|
}
|
|
102
113
|
}
|
|
103
|
-
|
|
114
|
+
}
|
|
104
115
|
|
|
105
116
|
.e-bigger.e-small #{if(&, '&', '*')} {
|
|
106
117
|
#{if(&, '&', '*')} .e-list-item,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
@include export-module('dropdownlist-layout') {
|
|
2
2
|
.e-bigger .e-input-group.e-ddl {
|
|
3
3
|
#{if(&, '&', '*')} .e-input-filter,
|
|
4
4
|
#{if(&, '&', '*')} .e-input-filter:focus {
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
background-color: $ddl-filter-background-color;
|
|
69
69
|
}
|
|
70
70
|
|
|
71
|
-
|
|
71
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
72
72
|
.e-ddl input.e-input::-webkit-contacts-auto-fill-button {
|
|
73
73
|
display: none;
|
|
74
74
|
pointer-events: none;
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
right: 0;
|
|
77
77
|
visibility: hidden;
|
|
78
78
|
}
|
|
79
|
-
|
|
79
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
80
80
|
|
|
81
81
|
.e-filter-parent {
|
|
82
82
|
border: $ddl-filter-border;
|
|
@@ -98,9 +98,9 @@
|
|
|
98
98
|
#{if(&, '&', '*')} .e-input-group.e-input-focus::before,
|
|
99
99
|
#{if(&, '&', '*')} .e-input-group.e-input-focus::after {
|
|
100
100
|
width: 0;
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
104
|
|
|
105
105
|
.e-ddl#{&}.e-popup {
|
|
106
106
|
background: $ddl-popup-background-color;
|
|
@@ -140,7 +140,7 @@
|
|
|
140
140
|
}
|
|
141
141
|
}
|
|
142
142
|
|
|
143
|
-
|
|
143
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
144
144
|
.e-ddl.e-input-group .e-ddl-hidden,
|
|
145
145
|
.e-ddl.e-float-input .e-ddl-hidden {
|
|
146
146
|
-webkit-appearance: initial;
|
|
@@ -222,7 +222,7 @@
|
|
|
222
222
|
display: block;
|
|
223
223
|
}
|
|
224
224
|
|
|
225
|
-
// Small Size
|
|
225
|
+
// Small Size
|
|
226
226
|
|
|
227
227
|
.e-small .e-ddl#{&}.e-popup,
|
|
228
228
|
.e-input-group.e-ddl.e-small {
|
|
@@ -294,4 +294,3 @@
|
|
|
294
294
|
min-height: 40px;
|
|
295
295
|
}
|
|
296
296
|
}
|
|
297
|
-
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
//default
|
|
1
|
+
//default
|
|
2
2
|
$ddl-input-font-size: 14px !default;
|
|
3
3
|
$ddl-zero-value: 0 !default;
|
|
4
4
|
$ddl-default-border-color: transparent !default;
|
|
@@ -23,6 +23,7 @@ $ddl-clear-icon-margin-right: 66px !default;
|
|
|
23
23
|
$ddl-back-icon-margin: 0 10px 0 -52px !default;
|
|
24
24
|
$ddl-back-icon-padding: 0 8px !default;
|
|
25
25
|
$ddl-filter-margin: 0 !default;
|
|
26
|
+
|
|
26
27
|
// Small Size
|
|
27
28
|
|
|
28
29
|
$ddl-small-list-font-size: 12px !default;
|
|
@@ -139,5 +140,4 @@ $ddl-bigger-small-list-font-size: 13px !default;
|
|
|
139
140
|
#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small.e-input-focus .e-input-filter {
|
|
140
141
|
padding: 5px 5px 5px 12px;
|
|
141
142
|
}
|
|
142
|
-
|
|
143
143
|
}
|
|
@@ -23,6 +23,7 @@ $ddl-back-icon-margin: 0 10px 0 -52px !default;
|
|
|
23
23
|
$ddl-back-icon-padding: 0 8px !default;
|
|
24
24
|
$ddl-popup-shadow: 0 5px 5px -3px rgba($grey-light-font, .2), 0 8px 10px 1px rgba($grey-light-font, .14), 0 3px 14px 2px rgba($grey-light-font, .12) !default;
|
|
25
25
|
$ddl-filter-margin: 0 !default;
|
|
26
|
+
|
|
26
27
|
// Small Size
|
|
27
28
|
$ddl-small-list-font-size: 12px !default;
|
|
28
29
|
|
|
@@ -17,6 +17,7 @@ $ddl-back-icon-padding: 0 8px !default;
|
|
|
17
17
|
$ddl-popup-shadow: $shadow-lg !default;
|
|
18
18
|
$ddl-readonly-bg-color: $content-bg-color-alt2 !default;
|
|
19
19
|
$ddl-filter-margin: 0 !default;
|
|
20
|
+
|
|
20
21
|
// Small Size
|
|
21
22
|
$ddl-small-list-font-size: $text-xs !default;
|
|
22
23
|
|
|
@@ -38,7 +39,7 @@ $ddl-filter-box-shadow: 0 1.5px 5px -2px $ddl-filter-box-shadow-color !default;
|
|
|
38
39
|
@include export-module('dropdownlist-bootstrap5') {
|
|
39
40
|
#{&}.e-popup.e-ddl {
|
|
40
41
|
border-radius: 4px;
|
|
41
|
-
box-shadow:
|
|
42
|
+
box-shadow: none;
|
|
42
43
|
margin-top: 3px;
|
|
43
44
|
@at-root {
|
|
44
45
|
#{if(&, '&', '*')} .e-input-group {
|
|
@@ -126,7 +127,7 @@ $ddl-filter-box-shadow: 0 1.5px 5px -2px $ddl-filter-box-shadow-color !default;
|
|
|
126
127
|
|
|
127
128
|
.e-input-group.e-ddl .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
128
129
|
.e-input-group.e-control-wrapper.e-ddl .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
129
|
-
.e-float-input.e-ddl input[readonly]
|
|
130
|
+
.e-float-input.e-ddl input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
130
131
|
.e-float-input.e-control-wrapper.e-ddl input[readonly] ~ span.e-input-group-icon.e-ddl-icon {
|
|
131
132
|
background: transparent;
|
|
132
133
|
color: $ddl-list-icon-color;
|
|
@@ -139,7 +140,6 @@ $ddl-filter-box-shadow: 0 1.5px 5px -2px $ddl-filter-box-shadow-color !default;
|
|
|
139
140
|
background: $content-bg-color-alt2;
|
|
140
141
|
}
|
|
141
142
|
|
|
142
|
-
|
|
143
143
|
.e-input-group:not(.e-disabled) .e-control#{&}.e-dropdownlist ~ .e-ddl-icon,
|
|
144
144
|
.e-input-group.e-disabled.e-ddl .e-control#{&}.e-dropdownlist ~ .e-input-group-icon,
|
|
145
145
|
.e-control#{&}.e-dropdownlist .e-input-group.e-disabled.e-ddl .e-input-group-icon,
|
|
@@ -17,6 +17,7 @@ $ddl-popup-shadow: $shadow-lg !default;
|
|
|
17
17
|
$ddl-bigger-list-font-size: $text-base !default;
|
|
18
18
|
$ddl-bigger-group-list-font-size: $text-sm !default;
|
|
19
19
|
$ddl-filter-margin: 0 !default;
|
|
20
|
+
|
|
20
21
|
// Small Size
|
|
21
22
|
$ddl-small-list-font-size: $text-xs !default;
|
|
22
23
|
$ddl-small-group-list-font-size: $text-xxs !default;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
@include export-module('dropdownlist-theme') {
|
|
2
2
|
#{&}.e-popup {
|
|
3
3
|
border-color: $ddl-default-border-color;
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
-
.e-float-input.e-input-group.e-ddl.e-control.e-icon-anim
|
|
7
|
-
.e-float-input.e-input-focus.e-input-group.e-ddl.e-control.e-keyboard
|
|
6
|
+
.e-float-input.e-input-group.e-ddl.e-control.e-icon-anim > .e-float-text,
|
|
7
|
+
.e-float-input.e-input-focus.e-input-group.e-ddl.e-control.e-keyboard > .e-float-text {
|
|
8
8
|
color: $ddl-active-font-color;
|
|
9
9
|
}
|
|
10
10
|
}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1
3
|
@keyframes material-spinner-rotate {
|
|
2
4
|
0% {
|
|
3
5
|
transform: rotate(0);
|
|
@@ -194,6 +196,7 @@
|
|
|
194
196
|
background-color: #6e6e6e;
|
|
195
197
|
}
|
|
196
198
|
|
|
199
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
197
200
|
.e-ddl input.e-input::-webkit-contacts-auto-fill-button {
|
|
198
201
|
display: none;
|
|
199
202
|
pointer-events: none;
|
|
@@ -202,6 +205,7 @@
|
|
|
202
205
|
visibility: hidden;
|
|
203
206
|
}
|
|
204
207
|
|
|
208
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
205
209
|
.e-filter-parent {
|
|
206
210
|
border: #414141;
|
|
207
211
|
border-top-width: 0;
|
|
@@ -245,6 +249,7 @@
|
|
|
245
249
|
cursor: default;
|
|
246
250
|
}
|
|
247
251
|
|
|
252
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
248
253
|
.e-ddl.e-input-group .e-ddl-hidden,
|
|
249
254
|
.e-ddl.e-float-input .e-ddl-hidden {
|
|
250
255
|
-webkit-appearance: initial;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1
3
|
@keyframes material-spinner-rotate {
|
|
2
4
|
0% {
|
|
3
5
|
transform: rotate(0);
|
|
@@ -194,6 +196,7 @@
|
|
|
194
196
|
background-color: #fff;
|
|
195
197
|
}
|
|
196
198
|
|
|
199
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
197
200
|
.e-ddl input.e-input::-webkit-contacts-auto-fill-button {
|
|
198
201
|
display: none;
|
|
199
202
|
pointer-events: none;
|
|
@@ -202,6 +205,7 @@
|
|
|
202
205
|
visibility: hidden;
|
|
203
206
|
}
|
|
204
207
|
|
|
208
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
205
209
|
.e-filter-parent {
|
|
206
210
|
border: none;
|
|
207
211
|
border-top-width: 0;
|
|
@@ -245,6 +249,7 @@
|
|
|
245
249
|
cursor: default;
|
|
246
250
|
}
|
|
247
251
|
|
|
252
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
248
253
|
.e-ddl.e-input-group .e-ddl-hidden,
|
|
249
254
|
.e-ddl.e-float-input .e-ddl-hidden {
|
|
250
255
|
-webkit-appearance: initial;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1
3
|
@keyframes material-spinner-rotate {
|
|
2
4
|
0% {
|
|
3
5
|
transform: rotate(0);
|
|
@@ -238,6 +240,7 @@
|
|
|
238
240
|
background-color: #fff;
|
|
239
241
|
}
|
|
240
242
|
|
|
243
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
241
244
|
.e-ddl input.e-input::-webkit-contacts-auto-fill-button {
|
|
242
245
|
display: none;
|
|
243
246
|
pointer-events: none;
|
|
@@ -246,6 +249,7 @@
|
|
|
246
249
|
visibility: hidden;
|
|
247
250
|
}
|
|
248
251
|
|
|
252
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
249
253
|
.e-filter-parent {
|
|
250
254
|
border: rgba(0, 0, 0, 0.12);
|
|
251
255
|
border-top-width: 0;
|
|
@@ -285,6 +289,7 @@
|
|
|
285
289
|
cursor: default;
|
|
286
290
|
}
|
|
287
291
|
|
|
292
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
288
293
|
.e-ddl.e-input-group .e-ddl-hidden,
|
|
289
294
|
.e-ddl.e-float-input .e-ddl-hidden {
|
|
290
295
|
-webkit-appearance: initial;
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
/* stylelint-disable-line no-empty-source */
|
|
3
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1
4
|
@keyframes material-spinner-rotate {
|
|
2
5
|
0% {
|
|
3
6
|
transform: rotate(0);
|
|
@@ -253,6 +256,7 @@
|
|
|
253
256
|
background-color: #212529;
|
|
254
257
|
}
|
|
255
258
|
|
|
259
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
256
260
|
.e-ddl input.e-input::-webkit-contacts-auto-fill-button {
|
|
257
261
|
display: none;
|
|
258
262
|
pointer-events: none;
|
|
@@ -261,6 +265,7 @@
|
|
|
261
265
|
visibility: hidden;
|
|
262
266
|
}
|
|
263
267
|
|
|
268
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
264
269
|
.e-filter-parent {
|
|
265
270
|
border: 0;
|
|
266
271
|
border-top-width: 0;
|
|
@@ -300,6 +305,7 @@
|
|
|
300
305
|
cursor: default;
|
|
301
306
|
}
|
|
302
307
|
|
|
308
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
303
309
|
.e-ddl.e-input-group .e-ddl-hidden,
|
|
304
310
|
.e-ddl.e-float-input .e-ddl-hidden {
|
|
305
311
|
-webkit-appearance: initial;
|