mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
Plugins: on the Install page, move the name of each plugin into the <h4>
to accommodate screen readers.
Props afercia, ChrisMKindred. Fixes #32400. Built from https://develop.svn.wordpress.org/trunk@34760 git-svn-id: http://core.svn.wordpress.org/trunk@34725 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
ddc1670e90
commit
da1c938a5c
@ -1618,11 +1618,6 @@ div.action-links,
|
|||||||
margin: 0 0 20px 20px;
|
margin: 0 0 20px 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.plugin-icon img {
|
|
||||||
width: 128px;
|
|
||||||
height: 128px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.no-plugin-results {
|
.no-plugin-results {
|
||||||
color: #999;
|
color: #999;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
|
@ -1618,11 +1618,6 @@ div.action-links,
|
|||||||
margin: 0 20px 20px 0;
|
margin: 0 20px 20px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.plugin-icon img {
|
|
||||||
width: 128px;
|
|
||||||
height: 128px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.no-plugin-results {
|
.no-plugin-results {
|
||||||
color: #999;
|
color: #999;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
|
2
wp-admin/css/wp-admin-rtl.min.css
vendored
2
wp-admin/css/wp-admin-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
2
wp-admin/css/wp-admin.min.css
vendored
2
wp-admin/css/wp-admin.min.css
vendored
File diff suppressed because one or more lines are too long
@ -492,9 +492,13 @@ 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 plugin-card-<?php echo sanitize_html_class( $plugin['slug'] ); ?>">
|
||||||
<div class="plugin-card-top">
|
<div class="plugin-card-top">
|
||||||
<a href="<?php echo esc_url( $details_link ); ?>" class="thickbox plugin-icon"><img src="<?php echo esc_attr( $plugin_icon_url ) ?>" /></a>
|
|
||||||
<div class="name column-name">
|
<div class="name column-name">
|
||||||
<h4><a href="<?php echo esc_url( $details_link ); ?>" class="thickbox"><?php echo $title; ?></a></h4>
|
<h4>
|
||||||
|
<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>
|
||||||
</div>
|
</div>
|
||||||
<div class="action-links">
|
<div class="action-links">
|
||||||
<?php
|
<?php
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.4-alpha-34759';
|
$wp_version = '4.4-alpha-34760';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
Reference in New Issue
Block a user