Skip to content

Commit 2eb6424

Browse files
committedFeb 18, 2025·
fix(material/paginator): disabled buttons not visible in high contrast mode (#30505)
#29379 changed the selector for disabled buttons from `[disabled]` to `[aria-disabled]`, however it didn't apply the same change to the high contrast styles which led to them being invisible in dark mode. I've also improved the experience by styling the buttons as disabled in high contrast mode. Fixes #30504. (cherry picked from commit f2cf229)
1 parent 16593f1 commit 2eb6424

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎src/material/paginator/paginator.scss

+5-5
Original file line numberDiff line numberDiff line change
@@ -131,17 +131,17 @@ $button-icon-size: 28px;
131131

132132
@include cdk.high-contrast {
133133
// The disabled button icon has to be set explicitly since the selector is too specific.
134-
.mat-mdc-icon-button[disabled] .mat-mdc-paginator-icon,
134+
.mat-mdc-icon-button[aria-disabled] .mat-mdc-paginator-icon,
135135
.mat-mdc-paginator-icon {
136136
fill: currentColor;
137-
138-
// On Chromium browsers the `currentColor` blends in with the
139-
// background for SVGs so we have to fall back to `CanvasText`.
140-
fill: CanvasText;
141137
}
142138

143139
.mat-mdc-paginator-range-actions .mat-mdc-icon-button {
144140
outline: solid 1px;
141+
142+
&[aria-disabled] {
143+
color: GrayText;
144+
}
145145
}
146146
}
147147

0 commit comments

Comments
 (0)
Please sign in to comment.