@supersoniks/concorde 3.1.67 → 3.1.69
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/build-infos.json +1 -1
- package/concorde-core.bundle.js +5 -5
- package/concorde-core.es.js +225 -225
- package/dist/concorde-core.bundle.js +5 -5
- package/dist/concorde-core.es.js +225 -225
- package/package.json +1 -1
- package/src/core/components/ui/form/select/select.ts +3 -3
package/package.json
CHANGED
|
@@ -58,14 +58,14 @@ export class Select extends FormElement(Subscriber(LitElement)) {
|
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
@supports selector(:has(*)) {
|
|
61
|
-
:host([
|
|
61
|
+
:host(:not([disabled]):not([align="center"]))
|
|
62
62
|
.form-element:not(:has(option:only-child)) {
|
|
63
63
|
padding-right: max(1.5em, calc(1.5 * var(--sc-input-px)));
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
66
|
/*Firefox etc.*/
|
|
67
67
|
@supports not selector(:has(*)) {
|
|
68
|
-
:host([
|
|
68
|
+
:host(:not([disabled]):not([align="center"])) .form-element {
|
|
69
69
|
padding-right: max(1.5em, calc(1.5 * var(--sc-input-px)));
|
|
70
70
|
}
|
|
71
71
|
}
|
|
@@ -86,7 +86,7 @@ export class Select extends FormElement(Subscriber(LitElement)) {
|
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
option {
|
|
89
|
-
padding: 0.1rem var(--sc-input-px);
|
|
89
|
+
padding: 0.1rem var(--sc-input-px, 0);
|
|
90
90
|
color: var(--sc-base-content, #000);
|
|
91
91
|
background: var(--sc-base, #fff);
|
|
92
92
|
}
|