Make WordPress Core


Ignore:
Timestamp:
02/12/2021 07:53:28 AM (4 years ago)
Author:
SergeyBiryukov
Message:

Block Editor: Remove extra quotes from the default font stack for editor styles.

Follow-up to [50155].

Props dd32, Joen, kafleg.
Fixes #46169.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/edit-form-blocks.php

    r50155 r50295  
    194194);
    195195
    196 $locale_font_family = '-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif';
    197 $styles[]           = array(
    198     'css' => "body { font-family: '$locale_font_family' }",
     196$styles[] = array(
     197    'css' => 'body { font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif }',
    199198);
    200199
Note: See TracChangeset for help on using the changeset viewer.