Help/About: Left-align 6.2 about page subheading.
This changeset removes the `aligncenter` class from `h2` and `is-subheading` items in the WordPress 6.2 About Page, for more consistent alignment. Also, future minor releases will add more left-aligned paragraphs under the "Maintenance Releases" section. Props shagors, sabernhardt, mukesh27, amin7, costdev, pavanpatil1, audrasjb. Fixes #57387. Built from https://develop.svn.wordpress.org/trunk@55716 git-svn-id: http://core.svn.wordpress.org/trunk@55228 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5f1d229cbf
commit
8547f7b820
|
@ -44,7 +44,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
|||
|
||||
<div class="about__section">
|
||||
<div class="column">
|
||||
<h2 class="aligncenter">
|
||||
<h2>
|
||||
<?php
|
||||
printf(
|
||||
/* translators: %s: Version number. */
|
||||
|
@ -53,7 +53,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
|||
);
|
||||
?>
|
||||
</h2>
|
||||
<p class="is-subheading aligncenter">
|
||||
<p class="is-subheading">
|
||||
<?php
|
||||
printf(
|
||||
/* translators: 1: Count of enhancements, 2: Count of bug fixes. */
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.3-alpha-55715';
|
||||
$wp_version = '6.3-alpha-55716';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue