Skip to content

Commit 2aff3c8

Browse files
authored
fix(material/core): expose strong focus indicator structural styles (#32808)
Exposes the structural styles for strong focus indicators so users can use them in their own components. Fixes #32773.
1 parent 3521e20 commit 2aff3c8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/material/_index.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
@forward './core/core' show core, app-background, elevation-classes;
3838
@forward './core/ripple/ripple' show ripple;
3939
@forward './core/focus-indicators/private' show strong-focus-indicators,
40-
strong-focus-indicators-color, strong-focus-indicators-theme;
40+
strong-focus-indicators-color, strong-focus-indicators-theme, strong-focus-indicators-structure;
4141
@forward './core/style/elevation' show elevation, overridable-elevation, elevation-transition;
4242

4343
// Theme bundles

src/material/core/focus-indicators/_private.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ $default-border-color: transparent;
1111
$default-border-radius: 4px;
1212

1313
// Mixin that renders the focus indicator structural styles.
14-
@mixin structural-styling() {
14+
@mixin strong-focus-indicators-structure() {
1515
.mat-focus-indicator {
1616
position: relative;
1717

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
@use './private';
22

3-
@include private.structural-styling();
3+
@include private.strong-focus-indicators-structure();

0 commit comments

Comments
 (0)