- Timestamp:
- 11/11/2022 05:54:23 PM (2 years ago)
- Location:
- branches/6.1
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/6.1
-
branches/6.1/src/wp-includes/block-supports/typography.php
r54647 r54825 453 453 * 454 454 * @since 6.1.0 455 * @since 6.1.1 Adjusted rules for min and max font sizes. 455 456 * 456 457 * @param array $preset { … … 490 491 $default_minimum_viewport_width = '768px'; 491 492 $default_minimum_font_size_factor = 0.75; 492 $default_maximum_font_size_factor = 1.5;493 493 $default_scale_factor = 1; 494 494 $default_minimum_font_size_limit = '14px'; … … 509 509 $preferred_size = wp_get_typography_value_and_unit( $preset['size'] ); 510 510 511 // Protect against unsupported units.511 // Protects against unsupported units. 512 512 if ( empty( $preferred_size['unit'] ) ) { 513 513 return $preset['size']; 514 514 } 515 515 516 // If no fluid max font size is available, create one using max font size factor. 517 if ( ! $maximum_font_size_raw ) { 518 $maximum_font_size_raw = round( $preferred_size['value'] * $default_maximum_font_size_factor, 3 ) . $preferred_size['unit']; 519 } 520 521 // If no fluid min font size is available, create one using min font size factor. 522 if ( ! $minimum_font_size_raw ) { 523 $minimum_font_size_raw = round( $preferred_size['value'] * $default_minimum_font_size_factor, 3 ) . $preferred_size['unit']; 524 } 525 526 // Normalizes the minimum font size limit according to the incoming unit, so we can perform checks using it. 516 /* 517 * Normalizes the minimum font size limit according to the incoming unit, 518 * in order to perform comparative checks. 519 */ 527 520 $minimum_font_size_limit = wp_get_typography_value_and_unit( 528 521 $default_minimum_font_size_limit, … … 532 525 ); 533 526 534 if ( ! empty( $minimum_font_size_limit ) ) { 527 // Don't enforce minimum font size if a font size has explicitly set a min and max value. 528 if ( ! empty( $minimum_font_size_limit ) && ( ! $minimum_font_size_raw && ! $maximum_font_size_raw ) ) { 535 529 /* 536 530 * If a minimum size was not passed to this function 537 531 * and the user-defined font size is lower than $minimum_font_size_limit, 538 * then use the user-defined font size as the minimum font-size.532 * do not calculate a fluid value. 539 533 */ 540 if ( ! isset( $fluid_font_size_settings['min'] ) && $preferred_size['value'] < $minimum_font_size_limit['value'] ) { 541 $minimum_font_size_raw = implode( '', $preferred_size ); 534 if ( $preferred_size['value'] <= $minimum_font_size_limit['value'] ) { 535 return $preset['size']; 536 } 537 } 538 539 // If no fluid max font size is available use the incoming value. 540 if ( ! $maximum_font_size_raw ) { 541 $maximum_font_size_raw = $preferred_size['value'] . $preferred_size['unit']; 542 } 543 544 /* 545 * If no minimumFontSize is provided, create one using 546 * the given font size multiplied by the min font size scale factor. 547 */ 548 if ( ! $minimum_font_size_raw ) { 549 $calculated_minimum_font_size = round( 550 $preferred_size['value'] * $default_minimum_font_size_factor, 551 3 552 ); 553 554 // Only use calculated min font size if it's > $minimum_font_size_limit value. 555 if ( ! empty( $minimum_font_size_limit ) && $calculated_minimum_font_size <= $minimum_font_size_limit['value'] ) { 556 $minimum_font_size_raw = $minimum_font_size_limit['value'] . $minimum_font_size_limit['unit']; 542 557 } else { 543 $minimum_font_size_parsed = wp_get_typography_value_and_unit( 544 $minimum_font_size_raw, 545 array( 546 'coerce_to' => $preferred_size['unit'], 547 ) 548 ); 549 550 /* 551 * If the passed or calculated minimum font size is lower than $minimum_font_size_limit 552 * use $minimum_font_size_limit instead. 553 */ 554 if ( ! empty( $minimum_font_size_parsed ) && $minimum_font_size_parsed['value'] < $minimum_font_size_limit['value'] ) { 555 $minimum_font_size_raw = implode( '', $minimum_font_size_limit ); 556 } 558 $minimum_font_size_raw = $calculated_minimum_font_size . $preferred_size['unit']; 557 559 } 558 560 }
Note: See TracChangeset
for help on using the changeset viewer.