Accessibility: bump headings one level up on the Add Plugins screen for a better headings hierarchy.
Fixes #33818. Built from https://develop.svn.wordpress.org/trunk@35009 git-svn-id: http://core.svn.wordpress.org/trunk@34974 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a5c1f545c4
commit
6ec8174ca1
|
@ -1436,11 +1436,11 @@ tr.active + tr.plugin-update-tr:not(.updated) .plugin-update .update-message {
|
|||
background-color: #fcf3ef;
|
||||
}
|
||||
|
||||
.plugin-install-php h3 {
|
||||
.plugin-install-php h2 {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.plugin-install-php h4 {
|
||||
.plugin-install-php h3 {
|
||||
margin: 2.5em 0 8px;
|
||||
}
|
||||
|
||||
|
@ -1517,7 +1517,7 @@ div.action-links,
|
|||
margin: 0; /* Override existing margins */
|
||||
}
|
||||
|
||||
.plugin-card h4 {
|
||||
.plugin-card h3 {
|
||||
margin: 0 0 12px;
|
||||
font-size: 18px;
|
||||
line-height: 1.3;
|
||||
|
|
|
@ -1436,11 +1436,11 @@ tr.active + tr.plugin-update-tr:not(.updated) .plugin-update .update-message {
|
|||
background-color: #fcf3ef;
|
||||
}
|
||||
|
||||
.plugin-install-php h3 {
|
||||
.plugin-install-php h2 {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.plugin-install-php h4 {
|
||||
.plugin-install-php h3 {
|
||||
margin: 2.5em 0 8px;
|
||||
}
|
||||
|
||||
|
@ -1517,7 +1517,7 @@ div.action-links,
|
|||
margin: 0; /* Override existing margins */
|
||||
}
|
||||
|
||||
.plugin-card h4 {
|
||||
.plugin-card h3 {
|
||||
margin: 0 0 12px;
|
||||
font-size: 18px;
|
||||
line-height: 1.3;
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -496,12 +496,12 @@ class WP_Plugin_Install_List_Table extends WP_List_Table {
|
|||
<div class="plugin-card plugin-card-<?php echo sanitize_html_class( $plugin['slug'] ); ?>">
|
||||
<div class="plugin-card-top">
|
||||
<div class="name column-name">
|
||||
<h4>
|
||||
<h3>
|
||||
<a href="<?php echo esc_url( $details_link ); ?>" class="thickbox">
|
||||
<?php echo $title; ?>
|
||||
<img src="<?php echo esc_attr( $plugin_icon_url ) ?>" class="plugin-icon" alt="">
|
||||
</a>
|
||||
</h4>
|
||||
</h3>
|
||||
</div>
|
||||
<div class="action-links">
|
||||
<?php
|
||||
|
|
|
@ -214,7 +214,7 @@ function install_dashboard() {
|
|||
|
||||
<?php display_plugins_table(); ?>
|
||||
|
||||
<h3><?php _e( 'Popular tags' ) ?></h3>
|
||||
<h2><?php _e( 'Popular tags' ) ?></h2>
|
||||
<p><?php _e( 'You may also browse based on the most popular tags in the Plugin Directory:' ) ?></p>
|
||||
<?php
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.4-alpha-35008';
|
||||
$wp_version = '4.4-alpha-35009';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue