@db-ux/core-components 2.1.1 → 2.1.2
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/accordion/accordion.css +1 -0
- package/build/components/accordion-item/accordion-item.css +2 -1
- package/build/components/accordion-item/accordion-item.scss +1 -1
- package/build/components/badge/badge.css +1 -0
- package/build/components/brand/brand.css +1 -0
- package/build/components/button/button.css +2 -1
- package/build/components/button/button.scss +1 -1
- package/build/components/card/card.css +1 -0
- package/build/components/checkbox/checkbox.css +2 -1
- package/build/components/custom-select/custom-select.css +12 -12
- package/build/components/custom-select/custom-select.scss +2 -2
- package/build/components/custom-select-dropdown/custom-select-dropdown.css +1 -0
- package/build/components/custom-select-form-field/custom-select-form-field.css +1 -0
- package/build/components/custom-select-list/custom-select-list.css +1 -0
- package/build/components/custom-select-list-item/custom-select-list-item.css +1 -0
- package/build/components/divider/divider.css +1 -0
- package/build/components/drawer/drawer.css +4 -4
- package/build/components/header/header.css +1 -0
- package/build/components/icon/icon.css +1 -0
- package/build/components/infotext/infotext.css +1 -0
- package/build/components/input/input.css +5 -4
- package/build/components/link/link.css +2 -1
- package/build/components/navigation/navigation.css +1 -0
- package/build/components/navigation-item/navigation-item.css +2 -1
- package/build/components/navigation-item/navigation-item.scss +1 -1
- package/build/components/notification/notification.css +2 -1
- package/build/components/page/page.css +1 -0
- package/build/components/popover/popover.css +1 -0
- package/build/components/radio/radio.css +2 -1
- package/build/components/section/section.css +1 -0
- package/build/components/select/select.css +5 -4
- package/build/components/stack/stack-web-component.css +1 -0
- package/build/components/stack/stack.css +1 -0
- package/build/components/switch/switch.css +2 -1
- package/build/components/tab-item/tab-item.css +2 -1
- package/build/components/tab-item/tab-item.scss +1 -1
- package/build/components/tab-list/tab-list.css +1 -0
- package/build/components/tab-panel/tab-panel.css +1 -0
- package/build/components/tabs/tabs.css +1 -0
- package/build/components/tag/tag.css +2 -1
- package/build/components/tag/tag.scss +1 -1
- package/build/components/textarea/textarea.css +5 -4
- package/build/components/tooltip/tooltip.css +1 -0
- package/build/styles/absolute.css +7 -7
- package/build/styles/dialog-init.css +1 -1
- package/build/styles/dialog-init.scss +12 -7
- package/build/styles/index.css +7 -7
- package/build/styles/internal/_component.scss +0 -3
- package/build/styles/internal/_form-components.scss +5 -5
- package/build/styles/internal/_link-components.scss +1 -1
- package/build/styles/relative.css +7 -7
- package/build/styles/rollup.css +7 -7
- package/build/styles/webpack.css +7 -7
- package/package.json +3 -3
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
paddings/gaps in an application e.g. the <main> should have a responsive padding. */
|
|
5
5
|
/* Elevation */
|
|
6
6
|
/* Border */
|
|
7
|
+
/* Opacity */
|
|
7
8
|
/* Transitions */
|
|
8
9
|
.db-textarea[data-hide-label=true] > label, .db-visually-hidden,
|
|
9
10
|
[data-visually-hidden=true] {
|
|
@@ -372,7 +373,7 @@ input[type=radio]:checked) > label {
|
|
|
372
373
|
--db-label-visible-above: 0;
|
|
373
374
|
}
|
|
374
375
|
.db-textarea[data-variant=floating] > label {
|
|
375
|
-
opacity:
|
|
376
|
+
opacity: var(--db-opacity-xl);
|
|
376
377
|
position: absolute;
|
|
377
378
|
z-index: 2;
|
|
378
379
|
inset-block-start: calc((var(--db-sizing-md) - var(--db-icon-font-size)) / 2);
|
|
@@ -411,7 +412,7 @@ textarea:is(input, textarea):not(:placeholder-shown),
|
|
|
411
412
|
> select option:checked:not([hidden]),
|
|
412
413
|
input[type=checkbox]:checked,
|
|
413
414
|
input[type=radio]:checked) [id$=-placeholder] {
|
|
414
|
-
opacity:
|
|
415
|
+
opacity: var(--db-opacity-xl);
|
|
415
416
|
font-family: var(--db-font-family-sans);
|
|
416
417
|
font-style: italic;
|
|
417
418
|
}
|
|
@@ -623,7 +624,7 @@ input[type=radio]:checked) [id$=-placeholder] {
|
|
|
623
624
|
}
|
|
624
625
|
.db-textarea textarea::placeholder,
|
|
625
626
|
.db-textarea [id$=-placeholder] {
|
|
626
|
-
opacity:
|
|
627
|
+
opacity: var(--db-opacity-xl);
|
|
627
628
|
font-family: var(--db-font-family-sans);
|
|
628
629
|
font-style: italic;
|
|
629
630
|
}
|
|
@@ -669,7 +670,7 @@ input[type=radio]:checked) [id$=-placeholder] {
|
|
|
669
670
|
.db-textarea:has(textarea:disabled,
|
|
670
671
|
textarea[data-disabled=true],
|
|
671
672
|
textarea[aria-disabled=true]) {
|
|
672
|
-
opacity:
|
|
673
|
+
opacity: var(--db-opacity-md);
|
|
673
674
|
pointer-events: none;
|
|
674
675
|
}
|
|
675
676
|
.db-textarea::after, .db-textarea::before {
|