Changeset 58834 for trunk/src/wp-includes/class-wp-theme-json.php
- Timestamp:
- 07/31/2024 02:39:46 AM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-theme-json.php
r58797 r58834 227 227 * @since 6.5.0 Added `aspect-ratio` property. 228 228 * @since 6.6.0 Added `background-[image|position|repeat|size]` properties. 229 * @since 6.7.0 Added `background-attachment` property. 229 230 * 230 231 * @var array … … 238 239 'background-repeat' => array( 'background', 'backgroundRepeat' ), 239 240 'background-size' => array( 'background', 'backgroundSize' ), 241 'background-attachment' => array( 'background', 'backgroundAttachment' ), 240 242 'border-radius' => array( 'border', 'radius' ), 241 243 'border-top-left-radius' => array( 'border', 'radius', 'topLeft' ), … … 521 523 const VALID_STYLES = array( 522 524 'background' => array( 523 'backgroundImage' => null, 524 'backgroundPosition' => null, 525 'backgroundRepeat' => null, 526 'backgroundSize' => null, 525 'backgroundImage' => null, 526 'backgroundPosition' => null, 527 'backgroundRepeat' => null, 528 'backgroundSize' => null, 529 'backgroundAttachment' => null, 527 530 ), 528 531 'border' => array(
Note: See TracChangeset
for help on using the changeset viewer.