From 89e63dfc80e52ffaa9c094db5c84a5907e2a5a0d Mon Sep 17 00:00:00 2001 From: laurelfulford Date: Mon, 17 Dec 2018 03:13:39 +0000 Subject: [PATCH] Twenty Seventeen: Update `font-family` for Simplified Chinese (zh_CN). Fix the `font-family` used for Simplified Chinese (zh_CN) in the block editor CSS. Props vaishalipanchal, ze3kr. Fixes #45408. Built from https://develop.svn.wordpress.org/branches/5.0@44235 git-svn-id: http://core.svn.wordpress.org/branches/5.0@44065 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- .../themes/twentyseventeen/assets/css/editor-blocks.css | 7 +++++-- wp-includes/version.php | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/wp-content/themes/twentyseventeen/assets/css/editor-blocks.css b/wp-content/themes/twentyseventeen/assets/css/editor-blocks.css index b8b66a68af..97e4d9a046 100644 --- a/wp-content/themes/twentyseventeen/assets/css/editor-blocks.css +++ b/wp-content/themes/twentyseventeen/assets/css/editor-blocks.css @@ -155,11 +155,14 @@ html[lang="ur"] .edit-post-visual-editor h6 { /* Typography for Chinese Font */ -html[lang^="zh-"] .edit-post-visual-editor .editor-block-list__block, -html[lang="zh-CN"] .edit-post-visual-editor .editor-block-list__block { +html[lang^="zh-"] .edit-post-visual-editor .editor-block-list__block { font-family: "PingFang TC", "Helvetica Neue", Helvetica, STHeitiTC-Light, Arial, sans-serif; } +html[lang="zh-CN"] .edit-post-visual-editor .editor-block-list__block { + font-family: "PingFang SC", "Helvetica Neue", Helvetica, STHeitiSC-Light, Arial, sans-serif; +} + html[lang^="zh-"] .edit-post-visual-editor h1, html[lang^="zh-"] .edit-post-visual-editor h2, html[lang^="zh-"] .edit-post-visual-editor h3, diff --git a/wp-includes/version.php b/wp-includes/version.php index bf6f0798f2..4f293edaa2 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0.2-alpha-44232'; +$wp_version = '5.0.2-alpha-44235'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.