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
This commit is contained in:
parent
c4bbb20bd9
commit
89e63dfc80
|
@ -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,
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue