Changeset 54357
- Timestamp:
- 09/29/2022 06:03:42 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/style-engine/class-wp-style-engine.php
r54156 r54357 15 15 * The Style Engine aims to provide a consistent API for rendering styling for blocks across both client-side and server-side applications. 16 16 * 17 17 18 * This class is for internal Core usage and is not supposed to be used by extenders (plugins and/or themes). 18 19 * This is a low-level API that may need to do breaking changes. Please, use wp_style_engine_get_styles instead. … … 21 22 * @since 6.1.0 22 23 */ 23 class WP_Style_Engine {24 class WP_Style_Engine { 24 25 /** 25 26 * Style definitions that contain the instructions to … … 108 109 ), 109 110 'top' => array( 110 'value_func' => 'static::get_individual_property_css_declarations',111 'value_func' => , 111 112 'path' => array( 'border', 'top' ), 112 113 'css_vars' => array( … … 115 116 ), 116 117 'right' => array( 117 'value_func' => 'static::get_individual_property_css_declarations',118 'value_func' => , 118 119 'path' => array( 'border', 'right' ), 119 120 'css_vars' => array( … … 122 123 ), 123 124 'bottom' => array( 124 'value_func' => 'static::get_individual_property_css_declarations',125 'value_func' => , 125 126 'path' => array( 'border', 'bottom' ), 126 127 'css_vars' => array( … … 129 130 ), 130 131 'left' => array( 131 'value_func' => 'static::get_individual_property_css_declarations',132 'value_func' => , 132 133 'path' => array( 'border', 'left' ), 133 134 'css_vars' => array(
Note: See TracChangeset
for help on using the changeset viewer.