mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Block Editor: Remove extra quotes from the default font stack for editor styles.
Follow-up to [50155]. Props dd32, Joen, kafleg. Fixes #46169. git-svn-id: https://develop.svn.wordpress.org/trunk@50295 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
a55a9183bc
commit
d271a206db
@ -193,9 +193,8 @@ $styles = array(
|
||||
),
|
||||
);
|
||||
|
||||
$locale_font_family = '-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif';
|
||||
$styles[] = array(
|
||||
'css' => "body { font-family: '$locale_font_family' }",
|
||||
$styles[] = array(
|
||||
'css' => 'body { font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif }',
|
||||
);
|
||||
|
||||
if ( $editor_styles && current_theme_supports( 'editor-styles' ) ) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user