Bump H3 headings to H2 on the Network Admin > Sites > Edit Site screens.

The navigation tabs appear in an `<h3>` heading immediately following the main `<h1>` and need to have a proper hierarchy.
Also, fix the tabs focus style and introduce a new `.nav-tab-small` CSS class.

Fixes #34079.

git-svn-id: https://develop.svn.wordpress.org/trunk@34913 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrea Fercia 2015-10-07 17:34:56 +00:00
parent 599fb50e09
commit 8483316de5
5 changed files with 23 additions and 17 deletions

View File

@ -1960,15 +1960,20 @@ html.wp-toolbar {
border-bottom: none;
background: #e4e4e4;
color: #555;
font-size: 12px;
line-height: 16px;
display: inline-block;
padding: 4px 14px 6px;
text-decoration: none;
margin: -4px 4px -1px 0;
}
.nav-tab:hover {
.nav-tab,
.nav-tab-small .nav-tab {
display: inline-block;
margin: -4px 4px -1px 0;
padding: 5px 14px;
font-size: 12px;
line-height: 16px;
text-decoration: none;
}
.nav-tab:hover,
.nav-tab:focus {
background-color: #fff;
color: #464646;
}
@ -1978,7 +1983,8 @@ html.wp-toolbar {
}
.nav-tab-active,
.nav-tab-active:hover {
.nav-tab-active:hover,
.nav-tab-active:focus {
border-bottom: 1px solid #f1f1f1;
background: #f1f1f1;
color: #000;
@ -1995,7 +2001,7 @@ h3.nav-tab-wrapper {
h1 .nav-tab,
h2 .nav-tab {
padding: 6px 10px;
font-weight: bold;
font-weight: 600;
font-size: 15px;
line-height: 24px;
}

View File

@ -138,7 +138,7 @@ require( ABSPATH . 'wp-admin/admin-header.php' );
<div class="wrap">
<h1 id="edit-site"><?php echo $title; ?></h1>
<p class="edit-site-actions"><a href="<?php echo esc_url( get_home_url( $id, '/' ) ); ?>"><?php _e( 'Visit' ); ?></a> | <a href="<?php echo esc_url( get_admin_url( $id ) ); ?>"><?php _e( 'Dashboard' ); ?></a></p>
<h3 class="nav-tab-wrapper">
<h2 class="nav-tab-wrapper nav-tab-small">
<?php
$tabs = array(
'site-info' => array( 'label' => __( 'Info' ), 'url' => 'site-info.php' ),
@ -151,7 +151,7 @@ foreach ( $tabs as $tab_id => $tab ) {
echo '<a href="' . $tab['url'] . '?id=' . $id .'" class="nav-tab' . $class . '">' . esc_html( $tab['label'] ) . '</a>';
}
?>
</h3>
</h2>
<?php
if ( ! empty( $messages ) ) {
foreach ( $messages as $msg ) {

View File

@ -95,7 +95,7 @@ require( ABSPATH . 'wp-admin/admin-header.php' );
<div class="wrap">
<h1 id="edit-site"><?php echo $title; ?></h1>
<p class="edit-site-actions"><a href="<?php echo esc_url( get_home_url( $id, '/' ) ); ?>"><?php _e( 'Visit' ); ?></a> | <a href="<?php echo esc_url( get_admin_url( $id ) ); ?>"><?php _e( 'Dashboard' ); ?></a></p>
<h3 class="nav-tab-wrapper">
<h2 class="nav-tab-wrapper nav-tab-small">
<?php
$tabs = array(
'site-info' => array( 'label' => __( 'Info' ), 'url' => 'site-info.php' ),
@ -108,7 +108,7 @@ foreach ( $tabs as $tab_id => $tab ) {
echo '<a href="' . $tab['url'] . '?id=' . $id .'" class="nav-tab' . $class . '">' . esc_html( $tab['label'] ) . '</a>';
}
?>
</h3>
</h2>
<?php
if ( ! empty( $messages ) ) {
foreach ( $messages as $msg )

View File

@ -149,7 +149,7 @@ require( ABSPATH . 'wp-admin/admin-header.php' ); ?>
<div class="wrap">
<h1 id="edit-site"><?php echo $title; ?></h1>
<p class="edit-site-actions"><a href="<?php echo esc_url( get_home_url( $id, '/' ) ); ?>"><?php _e( 'Visit' ); ?></a> | <a href="<?php echo esc_url( get_admin_url( $id ) ); ?>"><?php _e( 'Dashboard' ); ?></a></p>
<h3 class="nav-tab-wrapper">
<h2 class="nav-tab-wrapper nav-tab-small">
<?php
$tabs = array(
'site-info' => array( 'label' => __( 'Info' ), 'url' => 'site-info.php' ),
@ -162,7 +162,7 @@ foreach ( $tabs as $tab_id => $tab ) {
echo '<a href="' . $tab['url'] . '?id=' . $id .'" class="nav-tab' . $class . '">' . esc_html( $tab['label'] ) . '</a>';
}
?>
</h3><?php
</h2><?php
if ( isset( $_GET['enabled'] ) ) {
$enabled = absint( $_GET['enabled'] );

View File

@ -204,7 +204,7 @@ var current_site_id = <?php echo $id; ?>;
<div class="wrap">
<h1 id="edit-site"><?php echo $title; ?></h1>
<p class="edit-site-actions"><a href="<?php echo esc_url( get_home_url( $id, '/' ) ); ?>"><?php _e( 'Visit' ); ?></a> | <a href="<?php echo esc_url( get_admin_url( $id ) ); ?>"><?php _e( 'Dashboard' ); ?></a></p>
<h3 class="nav-tab-wrapper">
<h2 class="nav-tab-wrapper nav-tab-small">
<?php
$tabs = array(
'site-info' => array( 'label' => __( 'Info' ), 'url' => 'site-info.php' ),
@ -217,7 +217,7 @@ foreach ( $tabs as $tab_id => $tab ) {
echo '<a href="' . $tab['url'] . '?id=' . $id .'" class="nav-tab' . $class . '">' . esc_html( $tab['label'] ) . '</a>';
}
?>
</h3><?php
</h2><?php
if ( isset($_GET['update']) ) :
switch($_GET['update']) {