@db-ux/core-components 4.2.4 → 4.2.5
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 +6 -0
- package/build/components/custom-select/custom-select.css +1 -1
- package/build/components/input/input.css +1 -1
- package/build/components/select/select.css +1 -1
- package/build/components/textarea/textarea.css +1 -1
- package/build/styles/absolute.css +3 -3
- package/build/styles/index.css +3 -3
- package/build/styles/internal/_form-components.scss +2 -1
- package/build/styles/relative.css +3 -3
- package/build/styles/rollup.css +3 -3
- package/build/styles/webpack.css +3 -3
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @db-ux/core-components
|
|
2
2
|
|
|
3
|
+
## 4.2.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix: placeholder for DBSelect with variant floating is moved down - [see commit 9e1e48c](https://github.com/db-ux-design-system/core-web/commit/9e1e48c3ee10e72c52df58b65f4562be007d3447)
|
|
8
|
+
|
|
3
9
|
## 4.2.4
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -852,7 +852,7 @@ dialog:not([data-backdrop=none])[data-backdrop=weak]::backdrop, dialog:not([data
|
|
|
852
852
|
font-style: italic;
|
|
853
853
|
}
|
|
854
854
|
.db-custom-select[data-variant=floating] [id$=-placeholder] {
|
|
855
|
-
inset-block-start: calc(
|
|
855
|
+
inset-block-start: calc(var(--db-sizing-md) / 2 - 0.5em + var(--db-spacing-fixed-3xs));
|
|
856
856
|
}
|
|
857
857
|
.db-custom-select[data-variant=floating] summary::placeholder,
|
|
858
858
|
.db-custom-select[data-variant=floating] [id$=-placeholder] {
|
|
@@ -626,7 +626,7 @@ input[type=radio]:checked) > label {
|
|
|
626
626
|
font-style: italic;
|
|
627
627
|
}
|
|
628
628
|
.db-input[data-variant=floating] [id$=-placeholder] {
|
|
629
|
-
inset-block-start: calc(
|
|
629
|
+
inset-block-start: calc(var(--db-sizing-md) / 2 - 0.5em + var(--db-spacing-fixed-3xs));
|
|
630
630
|
}
|
|
631
631
|
.db-input[data-variant=floating] input::placeholder,
|
|
632
632
|
.db-input[data-variant=floating] [id$=-placeholder] {
|
|
@@ -651,7 +651,7 @@ input[type=radio]:checked) > label {
|
|
|
651
651
|
font-style: italic;
|
|
652
652
|
}
|
|
653
653
|
.db-select[data-variant=floating] [id$=-placeholder] {
|
|
654
|
-
inset-block-start: calc(
|
|
654
|
+
inset-block-start: calc(var(--db-sizing-md) / 2 - 0.5em + var(--db-spacing-fixed-3xs));
|
|
655
655
|
}
|
|
656
656
|
.db-select[data-variant=floating] select::placeholder,
|
|
657
657
|
.db-select[data-variant=floating] [id$=-placeholder] {
|
|
@@ -423,7 +423,7 @@ input[type=radio]:checked) > label {
|
|
|
423
423
|
font-style: italic;
|
|
424
424
|
}
|
|
425
425
|
.db-textarea[data-variant=floating] [id$=-placeholder] {
|
|
426
|
-
inset-block-start: calc(
|
|
426
|
+
inset-block-start: calc(var(--db-sizing-md) / 2 - 0.5em + var(--db-spacing-fixed-3xs));
|
|
427
427
|
}
|
|
428
428
|
.db-textarea[data-variant=floating] textarea::placeholder,
|
|
429
429
|
.db-textarea[data-variant=floating] [id$=-placeholder] {
|