diff --git a/.env b/.env
index 955eecd127..6f9d4807c7 100644
a
|
b
|
|
10 | 10 | ## |
11 | 11 | |
12 | 12 | # The site will be available at http://localhost:LOCAL_PORT |
13 | | LOCAL_PORT=8889 |
| 13 | LOCAL_PORT=8899 |
14 | 14 | |
15 | 15 | # Where to run WordPress from. Valid options are 'src' and 'build'. |
16 | | LOCAL_DIR=src |
| 16 | LOCAL_DIR=build |
17 | 17 | |
18 | 18 | # The PHP version to use. Valid options are 'latest', and '{version}-fpm'. |
19 | 19 | LOCAL_PHP=latest |
diff --git a/src/wp-admin/edit-form-blocks.php b/src/wp-admin/edit-form-blocks.php
index 03f80700ba..bcc2a26260 100644
a
|
b
|
$styles = array( |
191 | 191 | ); |
192 | 192 | |
193 | 193 | /* translators: Use this to specify the CSS font family for the default font. */ |
194 | | $locale_font_family = esc_html_x( 'Noto Serif', 'CSS Font Family for Editor Font' ); |
| 194 | $locale_font_family = '-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif'; |
195 | 195 | $styles[] = array( |
196 | 196 | 'css' => "body { font-family: '$locale_font_family' }", |
197 | 197 | ); |
diff --git a/src/wp-includes/script-loader.php b/src/wp-includes/script-loader.php
index 4d4ade0d01..af11725dda 100644
a
|
b
|
function wp_default_styles( $styles ) { |
1464 | 1464 | |
1465 | 1465 | // Packages styles. |
1466 | 1466 | $fonts_url = ''; |
1467 | | |
1468 | | /* |
1469 | | * translators: Use this to specify the proper Google Font name and variants |
1470 | | * to load that is supported by your language. Do not translate. |
1471 | | * Set to 'off' to disable loading. |
1472 | | */ |
1473 | | $font_family = _x( 'Noto Serif:400,400i,700,700i', 'Google Font Name and Variants' ); |
1474 | | if ( 'off' !== $font_family ) { |
1475 | | $fonts_url = 'https://fonts.googleapis.com/css?family=' . urlencode( $font_family ); |
1476 | | } |
1477 | 1467 | $styles->add( 'wp-editor-font', $fonts_url ); |
1478 | 1468 | |
1479 | 1469 | $styles->add( 'wp-block-library-theme', "/wp-includes/css/dist/block-library/theme$suffix.css" ); |