@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.
@@ -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) {
@@ -106,7 +106,7 @@
106
106
  }
107
107
  }
108
108
 
109
- &:disabled {
109
+ &:is(:disabled, [aria-disabled="true"]) {
110
110
  opacity: variables.$db-opacity-md;
111
111
  }
112
112
 
@@ -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
  }