mirror of
git://develop.git.wordpress.org/
synced 2025-03-20 12:00:03 +01:00
Block Styles: Fix ordering of stylesheets when a style variation is applied.
Adjusts the dependency order to ensure stylesheets are output in the correct order. Syncs the PHP changes from https://github.com/WordPress/gutenberg/pull/63918. Props talldanwp, aaronrobertshaw, andrewserong, aristath, mukesh27, ramonopoly, ytfeldrawkcab. Fixes #61748. git-svn-id: https://develop.svn.wordpress.org/trunk@58850 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
471a6195d0
commit
d842ee4598
@ -196,7 +196,7 @@ function wp_render_block_style_variation_support_styles( $parsed_block ) {
|
||||
return $parsed_block;
|
||||
}
|
||||
|
||||
wp_register_style( 'block-style-variation-styles', false, array( 'global-styles', 'wp-block-library' ) );
|
||||
wp_register_style( 'block-style-variation-styles', false, array( 'wp-block-library', 'global-styles' ) );
|
||||
wp_add_inline_style( 'block-style-variation-styles', $variation_styles );
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user