Changeset 51240 for trunk/src/wp-includes/block-editor.php
- Timestamp:
- 06/25/2021 03:31:21 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/block-editor.php
r51237 r51240 471 471 global $editor_styles; 472 472 473 $styles = array( 474 array( 475 'css' => 'body { font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif }', 476 '__unstableType' => 'core', 477 ), 478 ); 473 if ( ! WP_Theme_JSON_Resolver::theme_has_support() ) { 474 $styles = array( 475 array( 476 'css' => 'body { font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif }', 477 '__unstableType' => 'core', 478 ), 479 ); 480 } else { 481 $styles = array(); 482 } 483 479 484 if ( $editor_styles && current_theme_supports( 'editor-styles' ) ) { 480 485 foreach ( $editor_styles as $style ) {
Note: See TracChangeset
for help on using the changeset viewer.