Skip to content

Commit 3ba64d8

Browse files
committedMar 24, 2025·
fix(material/sort): set cursor on entire clickable area (#30696)
Sets the `cursor` on the entire sort header, rather than the inner container, since the whole element is clickable. Fixes #30690. (cherry picked from commit 2d7da0a)
1 parent dc75d87 commit 3ba64d8

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed
 

‎src/material/sort/sort-header.scss

+8-5
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,16 @@
22
@use '../core/tokens/token-utils';
33
@use '../core/focus-indicators/private';
44

5+
.mat-sort-header {
6+
cursor: pointer;
7+
}
8+
9+
.mat-sort-header-disabled {
10+
cursor: default;
11+
}
12+
513
.mat-sort-header-container {
614
display: flex;
7-
cursor: pointer;
815
align-items: center;
916
letter-spacing: normal;
1017

@@ -19,10 +26,6 @@
1926
border-bottom: solid 1px currentColor;
2027
}
2128

22-
.mat-sort-header-disabled & {
23-
cursor: default;
24-
}
25-
2629
// For the sort-header element, default inset/offset values are necessary to ensure that
2730
// the focus indicator is sufficiently contrastive and renders appropriately.
2831
&::before {

0 commit comments

Comments
 (0)
Please sign in to comment.