Twenty Nineteen: Fix classic block icons not displaying with non-latin fonts.

Props kjellr, allancole.
See #45424.


Built from https://develop.svn.wordpress.org/branches/5.0@43962


git-svn-id: http://core.svn.wordpress.org/branches/5.0@43794 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Gary Pendergast 2018-12-04 04:12:45 +00:00
parent ad9b38816c
commit f8ff8642b7
3 changed files with 11 additions and 1 deletions

View File

@ -756,3 +756,8 @@ ul.wp-block-archives li ul,
line-height: 1.6;
color: #767676;
}
/* Make sure our non-latin font overrides don't overwrite the iconfont used in the classic editor toolbar */
.wp-block[data-type="core/freeform"] .mce-btn i {
font-family: dashicons !important;
}

View File

@ -736,3 +736,8 @@ ul.wp-block-archives,
}
}
}
/* Make sure our non-latin font overrides don't overwrite the iconfont used in the classic editor toolbar */
.wp-block[data-type="core/freeform"] .mce-btn i {
font-family: dashicons !important;
}

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.0-RC2-43961';
$wp_version = '5.0-RC2-43962';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.