We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e9bff5 commit a418d82Copy full SHA for a418d82
src/material/core/focus-indicators/_private.scss
@@ -86,6 +86,14 @@ $default-border-radius: 4px;
86
$config: map.merge($default-config, $config);
87
88
@include _customize-focus-indicators($config);
89
+
90
+ // MDC sets `overflow: hidden` on these elements in order to truncate the text. This conflicts
91
+ // with how we structure and style the strong focus indicators so we need to override it.
92
+ .mdc-evolution-chip__cell--primary,
93
+ .mdc-evolution-chip__action--primary,
94
+ .mat-mdc-chip-action-label {
95
+ overflow: visible;
96
+ }
97
}
98
99
@mixin strong-focus-indicators-color($theme-or-color) {
0 commit comments