@db-ux/core-components 3.0.2 → 3.0.3
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/button/button.css +1 -1
- package/build/components/button/button.scss +1 -1
- package/build/components/popover/popover.css +1 -1
- package/build/components/tooltip/tooltip.css +1 -1
- package/build/styles/absolute.css +2 -2
- package/build/styles/index.css +2 -2
- package/build/styles/internal/_popover-component.scss +4 -1
- package/build/styles/relative.css +2 -2
- package/build/styles/rollup.css +2 -2
- package/build/styles/webpack.css +2 -2
- package/package.json +4 -4
|
@@ -259,7 +259,7 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
259
259
|
.db-button[data-variant=filled]:active:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]), .db-button[data-variant=filled]:active:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)) {
|
|
260
260
|
cursor: pointer;
|
|
261
261
|
}
|
|
262
|
-
.db-button:disabled {
|
|
262
|
+
.db-button:is(:disabled, [aria-disabled=true]) {
|
|
263
263
|
opacity: var(--db-opacity-md);
|
|
264
264
|
}
|
|
265
265
|
.db-button:has(> .db-button) {
|
|
@@ -339,7 +339,7 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
339
339
|
visibility: hidden;
|
|
340
340
|
z-index: 1337;
|
|
341
341
|
white-space: normal;
|
|
342
|
-
max-inline-size: var(--db-container-xs);
|
|
342
|
+
max-inline-size: min(var(--db-container-xs), 100vw - 2 * var(--db-spacing-fixed-md));
|
|
343
343
|
block-size: fit-content;
|
|
344
344
|
inline-size: fit-content;
|
|
345
345
|
}
|
|
@@ -409,7 +409,7 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
409
409
|
visibility: hidden;
|
|
410
410
|
z-index: 1337;
|
|
411
411
|
white-space: normal;
|
|
412
|
-
max-inline-size: var(--db-container-xs);
|
|
412
|
+
max-inline-size: min(var(--db-container-xs), 100vw - 2 * var(--db-spacing-fixed-md));
|
|
413
413
|
block-size: fit-content;
|
|
414
414
|
inline-size: fit-content;
|
|
415
415
|
}
|