@db-ux/core-components 2.0.7 → 2.0.9
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/components/checkbox/checkbox.css +29 -12
- package/build/components/custom-select/custom-select.css +71 -100
- package/build/components/custom-select/custom-select.scss +0 -1
- package/build/components/custom-select-list/custom-select-list.css +0 -153
- package/build/components/custom-select-list/custom-select-list.scss +0 -3
- package/build/components/custom-select-list-item/custom-select-list-item.css +1 -1
- package/build/components/input/input.css +71 -21
- package/build/components/select/select.css +71 -21
- package/build/components/tab-item/tab-item.css +1 -1
- package/build/components/textarea/textarea.css +63 -19
- package/build/styles/absolute.css +12 -12
- package/build/styles/index.css +12 -12
- package/build/styles/internal/_form-components.scss +8 -3
- package/build/styles/relative.css +12 -12
- package/build/styles/rollup.css +12 -12
- package/build/styles/webpack.css +12 -12
- package/package.json +3 -3
|
@@ -57,7 +57,8 @@ $db-min-inline-size: var(
|
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
%helper-message {
|
|
60
|
-
.db-infotext
|
|
60
|
+
> db-infotext > .db-infotext,
|
|
61
|
+
> .db-infotext {
|
|
61
62
|
margin-block-start: variables.$db-spacing-fixed-2xs;
|
|
62
63
|
|
|
63
64
|
&:is([data-semantic="successful"], [data-semantic="critical"]) {
|
|
@@ -156,7 +157,8 @@ $db-min-inline-size: var(
|
|
|
156
157
|
}
|
|
157
158
|
|
|
158
159
|
@mixin get-validity-message($key: "valid") {
|
|
159
|
-
.db-infotext
|
|
160
|
+
> db-infotext > .db-infotext,
|
|
161
|
+
> .db-infotext {
|
|
160
162
|
@if ($key == "valid") {
|
|
161
163
|
&[data-semantic="successful"] {
|
|
162
164
|
display: flex;
|
|
@@ -317,7 +319,10 @@ $input-valid-types:
|
|
|
317
319
|
@include set-required-label($selector);
|
|
318
320
|
|
|
319
321
|
@include get-validity($selector) {
|
|
320
|
-
&:has(
|
|
322
|
+
&:has(
|
|
323
|
+
> .db-infotext[data-semantic="successful"],
|
|
324
|
+
> db-infotext > .db-infotext[data-semantic="successful"]
|
|
325
|
+
) {
|
|
321
326
|
@include get-validity-color($selector, "valid");
|
|
322
327
|
}
|
|
323
328
|
}
|