Skip to content

Commit 46c7c42

Browse files
authored
Fixed overly bold icons in Firefox Mac
Firefox on the Mac renders the icons in an overly bold style '-webkit-font-smoothing: antialiased;' is included in this file to address the issue on most webkit browsers but it doesn't help with firefox on the Mac. adding -moz-osx-font-smoothing: grayscale; performs the equivalent function for firefox.
1 parent 55c58a6 commit 46c7c42

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/web/css/source/lib/_icons.less

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -344,6 +344,7 @@
344344
@_icon-font-vertical-align
345345
) {
346346
-webkit-font-smoothing: antialiased;
347+
-moz-osx-font-smoothing: grayscale;
347348
._lib-icon-font-size(@_icon-font-size, @_icon-font-line-height);
348349
.lib-css(color, @_icon-font-color);
349350
.lib-css(content, @_icon-font-content);

0 commit comments

Comments
 (0)