-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Open
Labels
P2The issue is important to a large percentage of users, with a workaroundThe issue is important to a large percentage of users, with a workaroundarea: material/dialog
Description
Is this a regression?
- Yes, this behavior used to work in the previous versionTo pick up a draggable item, press the space bar. While dragging, use the arrow keys to move the item. Press space again to drop the item in its new position, or press escape to cancel.
The previous version in which this bug was not present was
No response
Description
As per Material 3 guidelines, container-color
should use value surface-container-high
token, but it's using value surface
token.
We can override it by using dialog-overrides
mixin like below:
@include mat.dialog-overrides((
container-color: var(--mat-sys-surface-container-high),
));
But, it should be the default behaviour as per Material 3 specs.
Reproduction
Not needed
Expected Behavior
As per Material 3 guidelines, container-color
should use value surface-container-high
token.
Actual Behavior
Dialog's container-color
is using value surface
token.
Environment
- Angular: 19
- CDK/Material: 19
- Browser(s): Chrome
- Operating System (e.g. Windows, macOS, Ubuntu): Windows
nikjankov, pmpak and ranemloc
Metadata
Metadata
Assignees
Labels
P2The issue is important to a large percentage of users, with a workaroundThe issue is important to a large percentage of users, with a workaroundarea: material/dialog
Activity
fix(material/dialog): dialog's container-color does not follow Materi…