Skip to content

Commit b52eb6f

Browse files
authored
Revert "fix(material/list): fix duplicate focus with chromevox on action-list items (#23361)"
This reverts commit 8182b35.
1 parent 84d90c6 commit b52eb6f

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

src/material/list/list-item.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
<span class="mat-list-item-content">
2-
<span class="mat-list-item-ripple" mat-ripple
1+
<div class="mat-list-item-content">
2+
<div class="mat-list-item-ripple" mat-ripple
33
[matRippleTrigger]="_getHostElement()"
44
[matRippleDisabled]="_isRippleDisabled()">
5-
</span>
5+
</div>
66

77
<ng-content select="[mat-list-avatar], [mat-list-icon], [matListAvatar], [matListIcon]">
88
</ng-content>
99

10-
<span class="mat-list-text"><ng-content select="[mat-line], [matLine]"></ng-content></span>
10+
<div class="mat-list-text"><ng-content select="[mat-line], [matLine]"></ng-content></div>
1111

1212
<ng-content></ng-content>
13-
</span>
13+
</div>

src/material/list/list.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ $item-inset-divider-offset: 72px;
6666
}
6767

6868
.mat-list-item-ripple {
69-
display: block;
7069
@include layout-common.fill;
7170

7271
// Disable pointer events for the ripple container because the container will overlay the

0 commit comments

Comments
 (0)