Skip to content

Commit

Permalink
fix(material/list): fix action-list focus state for high contrast fir…
Browse files Browse the repository at this point in the history
…efox (#23584)

Fixes the focus state on the action-list for firefox in high-contrast
mode. In firefox, the outline only renders on the top, right and left –
not the bottom. This fixes the bottom of the outline being cut-off by
setting the z-index of the focused list item to 1.

fixes #23583
  • Loading branch information
zarend committed Sep 16, 2021
1 parent f8dc177 commit ef4fc56
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/material/list/list.scss
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,7 @@ mat-action-list {
mat-action-list .mat-list-item {
&:hover, &:focus {
outline: dotted 1px;
z-index: 1;
}
}

Expand Down

0 comments on commit ef4fc56

Please sign in to comment.