diff options
author | Jeremiah Senkpiel <fishrock123@rocketmail.com> | 2015-02-12 10:55:55 -0500 |
---|---|---|
committer | Chris Dickinson <christopher.s.dickinson@gmail.com> | 2015-02-12 12:11:36 -0800 |
commit | 122a1758d1e9757b29d4abe36920dd99728a1c3c (patch) | |
tree | a2343c52a409377576616bf1c6506ce2d1637b64 /doc/api_assets | |
parent | 982b143ab38452cffafdeff6d21ff1321ee984dd (diff) | |
download | node-new-122a1758d1e9757b29d4abe36920dd99728a1c3c.tar.gz |
doc: better font-smoothing for firefox
does the same thing for firefox as 'antialiased' does for webkit.
PR-URL: https://github.com/iojs/io.js/pull/820
Reviewed-By: Chris Dickinson <christopher.s.dickinson@gmail.com>
Diffstat (limited to 'doc/api_assets')
-rw-r--r-- | doc/api_assets/style.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api_assets/style.css b/doc/api_assets/style.css index c88351e735..446bbb2790 100644 --- a/doc/api_assets/style.css +++ b/doc/api_assets/style.css @@ -1,6 +1,7 @@ /*--------------------- Layout and Typography ----------------------------*/ html { -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; -webkit-font-variant-ligatures: none; font-variant-ligatures: none; } @@ -465,4 +466,3 @@ td > *:last-child { display: none; } } - |