Skip to content

Commit 5138fe7

Browse files
committedJan 16, 2025
fix(material/checkbox): ensure focus indicator has the correct shape (#30332)
The specificity for the checkbox's focus indicator was very low which means that if the ripple styles are loaded later, it can be overwritten. Fixes #30326. (cherry picked from commit 28aa37a)
1 parent eae0730 commit 5138fe7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎src/material/checkbox/checkbox.scss

+3-2
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,9 @@
107107
}
108108

109109
// Checkbox components have to set `border-radius: 50%` in order to support density scaling
110-
// which will clip a square focus indicator so we have to turn it into a circle.
111-
.mat-mdc-checkbox-ripple::before {
110+
// which will clip a square focus indicator so we have to turn it into a circle. Needs extra
111+
// specificity in case the ripple styles are loaded later which can override the shape.
112+
.mat-mdc-checkbox .mat-mdc-checkbox-ripple::before {
112113
border-radius: 50%;
113114
}
114115

0 commit comments

Comments
 (0)