diff --git a/src/wp-admin/about.php b/src/wp-admin/about.php
index acaaa2a009..c14c1bfc50 100644
|
a
|
b
|
require_once ABSPATH . 'wp-admin/admin-header.php';
|
| 20 | 20 | |
| 21 | 21 | <div class="about__header"> |
| 22 | 22 | <div class="about__header-title"> |
| 23 | | <h1> |
| | 23 | <p> |
| 24 | 24 | <?php _e( 'WordPress' ); ?> |
| 25 | 25 | <span><?php echo $display_version; ?></span> |
| 26 | | </h1> |
| | 26 | </p> |
| 27 | 27 | </div> |
| 28 | 28 | |
| 29 | 29 | <div class="about__header-text"> |
| … |
… |
require_once ABSPATH . 'wp-admin/admin-header.php';
|
| 41 | 41 | </div> |
| 42 | 42 | |
| 43 | 43 | <div class="about__section is-feature has-accent-background-color"> |
| 44 | | <p><?php _e( 'Say hello to more and better.' ); ?></p> |
| | 44 | <h1><?php _e( 'Say hello to more and better.' ); ?></h1> |
| | 45 | |
| 45 | 46 | <p><?php _e( 'More ways to make your pages come alive. With easier ways to get it all done and looking better than ever—and boosts in speed you can feel.' ); ?></p> |
| 46 | 47 | </div> |
| 47 | 48 | |
| … |
… |
require_once ABSPATH . 'wp-admin/admin-header.php';
|
| 105 | 106 | <li><?php _e( 'Tips are gone. In their place, a Welcome Guide window you can bring up when you need it—and only when you need it—again and again.' ); ?></li> |
| 106 | 107 | <li><?php _e( 'Know at a glance whether you’re in a block’s Edit or Navigation mode. Or, if you have restricted vision, your screen reader will tell you which mode you’re in.' ); ?></li> |
| 107 | 108 | </ul> |
| 108 | | <p><em><?php _e( 'Of course, if you want to work with the very latest tools and features, install the <a href="https://wordpress.org/plugins/gutenberg/">Gutenberg plugin</a>. You’ll get to be the first to use new and exciting features in the block editor, before anyone else has seen them!' ); ?></em></p> |
| | 109 | <p><?php _e( 'Of course, if you want to work with the very latest tools and features, install the <a href="https://wordpress.org/plugins/gutenberg/">Gutenberg plugin</a>. You’ll get to be the first to use new and exciting features in the block editor, before anyone else has seen them!' ); ?></p> |
| 109 | 110 | </div> |
| 110 | 111 | <div class="column is-edge-to-edge"> |
| 111 | 112 | <div class="about__image aligncenter"> |
diff --git a/src/wp-admin/credits.php b/src/wp-admin/credits.php
index 60b1ebb004..9ed12661c3 100644
|
a
|
b
|
$credits = wp_credits();
|
| 22 | 22 | |
| 23 | 23 | <div class="about__header"> |
| 24 | 24 | <div class="about__header-title"> |
| 25 | | <h1> |
| | 25 | <p> |
| 26 | 26 | <?php _e( 'WordPress' ); ?> |
| 27 | 27 | <span><?php echo $display_version; ?></span> |
| 28 | | </h1> |
| | 28 | </p> |
| 29 | 29 | </div> |
| 30 | 30 | |
| 31 | 31 | <div class="about__header-text"> |
| … |
… |
$credits = wp_credits();
|
| 44 | 44 | |
| 45 | 45 | <div class="about__section"> |
| 46 | 46 | <div class="column"> |
| 47 | | <h2><?php _e( 'WordPress is created by a worldwide team of passionate individuals.' ); ?></h2> |
| | 47 | <h1><?php _e( 'WordPress is created by a worldwide team of passionate individuals.' ); ?></h1> |
| 48 | 48 | |
| 49 | 49 | <p> |
| 50 | 50 | <?php |
diff --git a/src/wp-admin/css/about.css b/src/wp-admin/css/about.css
index 51e49261d6..2d37148cdf 100644
|
a
|
b
|
|
| 303 | 303 | } |
| 304 | 304 | |
| 305 | 305 | .about__container h1 { |
| 306 | | font-size: 5em; |
| | 306 | font-size: 4em; |
| 307 | 307 | line-height: 1; |
| 308 | 308 | } |
| 309 | 309 | |
| … |
… |
|
| 448 | 448 | -ms-grid-row-span: 2; |
| 449 | 449 | grid-row: 1/span 2; |
| 450 | 450 | padding: 32px; |
| 451 | | -webkit-writing-mode: vertical-rl; |
| 452 | | -ms-writing-mode: tb-rl; |
| 453 | | writing-mode: vertical-rl; |
| 454 | | transform: rotate(180deg); |
| 455 | 451 | } |
| 456 | 452 | |
| 457 | 453 | /* Needs to be inline-block to use vertical-align, needs specificity to override flex. */ |
| 458 | 454 | .about__header .about__header-title { |
| 459 | | display: inline-block; |
| | 455 | display: flex; |
| 460 | 456 | vertical-align: top; |
| 461 | 457 | } |
| 462 | 458 | |
| … |
… |
|
| 467 | 463 | } |
| 468 | 464 | |
| 469 | 465 | .about__header-title h1 span { |
| 470 | | display: block; |
| | 466 | display: inline-block; |
| 471 | 467 | font-weight: 600; |
| 472 | 468 | font-size: 1.2em; |
| 473 | 469 | line-height: 1; |
diff --git a/src/wp-admin/freedoms.php b/src/wp-admin/freedoms.php
index c9bc298866..454a647c0d 100644
|
a
|
b
|
require_once ABSPATH . 'wp-admin/admin-header.php';
|
| 25 | 25 | |
| 26 | 26 | <div class="about__header"> |
| 27 | 27 | <div class="about__header-title"> |
| 28 | | <h1> |
| | 28 | <p> |
| 29 | 29 | <?php _e( 'WordPress' ); ?> |
| 30 | 30 | <span><?php echo $display_version; ?></span> |
| 31 | | </h1> |
| | 31 | </p> |
| 32 | 32 | </div> |
| 33 | 33 | |
| 34 | 34 | <div class="about__header-text"> |
| … |
… |
require_once ABSPATH . 'wp-admin/admin-header.php';
|
| 46 | 46 | </div> |
| 47 | 47 | |
| 48 | 48 | <div class="about__section has-subtle-background-color is-feature"> |
| 49 | | <h2><?php _e( 'Freedoms' ); ?></h2> |
| | 49 | <h1><?php _e( 'Freedoms' ); ?></h1> |
| 50 | 50 | |
| 51 | 51 | <p class="about-description"> |
| 52 | 52 | <?php |
diff --git a/src/wp-admin/privacy.php b/src/wp-admin/privacy.php
index 09248661bb..2ef4258e33 100644
|
a
|
b
|
require_once ABSPATH . 'wp-admin/admin-header.php';
|
| 19 | 19 | |
| 20 | 20 | <div class="about__header"> |
| 21 | 21 | <div class="about__header-title"> |
| 22 | | <h1> |
| | 22 | <p> |
| 23 | 23 | <?php _e( 'WordPress' ); ?> |
| 24 | 24 | <span><?php echo $display_version; ?></span> |
| 25 | | </h1> |
| | 25 | </p> |
| 26 | 26 | </div> |
| 27 | 27 | |
| 28 | 28 | <div class="about__header-text"> |
| … |
… |
require_once ABSPATH . 'wp-admin/admin-header.php';
|
| 41 | 41 | |
| 42 | 42 | <div class="about__section"> |
| 43 | 43 | <div class="column"> |
| 44 | | <h2><?php _e( 'Privacy' ); ?></h2> |
| | 44 | <h1><?php _e( 'Privacy' ); ?></h1> |
| 45 | 45 | |
| 46 | 46 | <p><?php _e( 'From time to time, your WordPress site may send data to WordPress.org — including, but not limited to — the version of WordPress you are using, and a list of installed plugins and themes.' ); ?></p> |
| 47 | 47 | |