We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b120f8c commit 2c5341dCopy full SHA for 2c5341d
src/lib/sort/sort-header.scss
@@ -31,6 +31,13 @@ $mat-sort-header-arrow-hint-opacity: 0.38;
31
outline: 0;
32
font: inherit;
33
color: currentColor;
34
+
35
+ // The `outline: 0` from above works on all browsers, however Firefox also
36
+ // adds a special `focus-inner` which we have to disable explicitly. See:
37
+ // https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#Firefox
38
+ &::-moz-focus-inner {
39
+ border: 0;
40
+ }
41
}
42
43
.mat-sort-header-arrow {
0 commit comments