From 71ca53855badd1adfd0f7a89676968535f1c1f6c Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Wed, 7 Jan 2015 14:28:40 +0000 Subject: [PATCH] Add Microsoft Yahei and Malgun Gothic font fallbacks. For Chinese and Korean characters, on the advice of @steamb23. --- resources/report/css/typography.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/resources/report/css/typography.css b/resources/report/css/typography.css index 2a8362fb..d37f200d 100644 --- a/resources/report/css/typography.css +++ b/resources/report/css/typography.css @@ -117,7 +117,10 @@ /* Typography */ html { - font:11pt/1.429 Roboto, Noto, sans-serif; + /* Microsoft Yahei is for Chinese characters, and Malgun Gothic for Korean + characters. If Noto isn't present, they're better than the sans-serif + defaults. */ + font:11pt/1.429 Roboto, Noto, 'Microsoft Yahei', 'Malgun Gothic', sans-serif; color: rgba(0, 0, 0, 0.87); font-weight: 400; text-rendering: optimizeLegibility;