From 3d2155eb66557e36ba87db652c5d02ab26486a40 Mon Sep 17 00:00:00 2001 From: Dylan Greene Date: Tue, 17 Nov 2015 16:15:33 -0500 Subject: [PATCH] Make fonts nicer on Macs Removed the `antialias` setting which tells Chrome to not use native font rendering and instead use something from the late 2010's that isn't subpixel-friendly and looks very blocky. This used to be required when OS X browsers didn't antialias by default because it made fonts look bolder than on Windows. This has since been fixed and we are advised to not use `-webkit-font-smooth`. https://developer.mozilla.org/en-US/docs/Web/CSS/font-smooth --- theme/stylesheets/website.less | 2 -- 1 file changed, 2 deletions(-) diff --git a/theme/stylesheets/website.less b/theme/stylesheets/website.less index d808a0bab..abd6ff341 100755 --- a/theme/stylesheets/website.less +++ b/theme/stylesheets/website.less @@ -22,7 +22,6 @@ -webkit-tap-highlight-color: transparent; -webkit-text-size-adjust: none; -webkit-touch-callout: none; - -webkit-font-smoothing: antialiased; } a { @@ -39,7 +38,6 @@ html { body { text-rendering: optimizeLegibility; - font-smoothing: antialiased; font-family: @font-family-base; font-size: @font-size-base; letter-spacing: .2px;