Remove 'Insert Multiple Images' from the about page as it is now completely invisible in the UI. Requiring shift-click but not mentioning it is a bad omen. props helenyhou. fixes #22455.
git-svn-id: http://core.svn.wordpress.org/trunk@23126 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
43051df6c7
commit
db649fbc8d
|
@ -36,21 +36,17 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
|
||||||
<div class="changelog">
|
<div class="changelog">
|
||||||
<h3><?php _e( 'New Media Manager' ); ?></h3>
|
<h3><?php _e( 'New Media Manager' ); ?></h3>
|
||||||
|
|
||||||
<div class="feature-section three-col">
|
<div class="feature-section col two-col">
|
||||||
<img alt="" src="<?php echo esc_url( admin_url( 'images/screenshots/about-media.png' ) ); ?>" class="image-100" />
|
<img alt="" src="<?php echo esc_url( admin_url( 'images/screenshots/about-media.png' ) ); ?>" class="image-100" />
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<h4><?php _e( 'Beautiful Interface' ); ?></h4>
|
<h4><?php _e( 'Beautiful Interface' ); ?></h4>
|
||||||
<p><?php _e( 'Adding media has been streamlined with an all-new experience, making it a breeze to upload files and place them into your posts.' ); ?></p>
|
<p><?php _e( 'Adding media has been streamlined with an all-new experience, making it a breeze to upload files and place them into your posts.' ); ?></p>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div class="last-feature">
|
||||||
<h4><?php _e( 'Picturesque Galleries' ); ?></h4>
|
<h4><?php _e( 'Picturesque Galleries' ); ?></h4>
|
||||||
<p><?php _e( 'Creating image galleries is faster with drag and drop reordering, inline caption editing, and simplified controls for layout.' ); ?></p>
|
<p><?php _e( 'Creating image galleries is faster with drag and drop reordering, inline caption editing, and simplified controls for layout.' ); ?></p>
|
||||||
</div>
|
</div>
|
||||||
<div class="last-feature">
|
|
||||||
<h4><?php _e( 'Insert Multiple Images' ); ?></h4>
|
|
||||||
<p><?php _e( 'Have a need for speed? You can now insert multiple images at once and then compose your words around them.' ); ?></p>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -92,7 +88,7 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
|
||||||
<div class="changelog">
|
<div class="changelog">
|
||||||
<h3><?php _e( 'Under the Hood' ); ?></h3>
|
<h3><?php _e( 'Under the Hood' ); ?></h3>
|
||||||
|
|
||||||
<div class="feature-section three-col">
|
<div class="feature-section col three-col">
|
||||||
<div>
|
<div>
|
||||||
<h4><?php _e( 'Meta Query Additions' ); ?></h4>
|
<h4><?php _e( 'Meta Query Additions' ); ?></h4>
|
||||||
<p><?php _e( 'The <code>WP_Comment_Query</code> and <code>WP_User_Query</code> classes now support meta queries just like <code>WP_Query.</code> Meta queries now support querying for objects without a particular meta key.' ); ?></p>
|
<p><?php _e( 'The <code>WP_Comment_Query</code> and <code>WP_User_Query</code> classes now support meta queries just like <code>WP_Query.</code> Meta queries now support querying for objects without a particular meta key.' ); ?></p>
|
||||||
|
@ -107,7 +103,7 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="feature-section three-col">
|
<div class="feature-section col three-col">
|
||||||
<div>
|
<div>
|
||||||
<h4><?php _e( 'Multisite Improvements' ); ?></h4>
|
<h4><?php _e( 'Multisite Improvements' ); ?></h4>
|
||||||
<p><?php _e( '<code>switch_to_blog()</code> is now significantly faster and more reliable.' ); ?></p>
|
<p><?php _e( '<code>switch_to_blog()</code> is now significantly faster and more reliable.' ); ?></p>
|
||||||
|
|
|
@ -5337,24 +5337,30 @@ h2 .nav-tab {
|
||||||
margin-left: 1em;
|
margin-left: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.about-wrap .feature-section.three-col {
|
.about-wrap .feature-section.col {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.about-wrap .feature-section.col h4 {
|
||||||
|
margin: 0 0 0.6em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about-wrap .feature-section.col .last-feature {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about-wrap .feature-section.two-col div {
|
||||||
|
width: 47%;
|
||||||
|
margin-right: 4.999999999%;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
.about-wrap .feature-section.three-col div {
|
.about-wrap .feature-section.three-col div {
|
||||||
width: 30%;
|
width: 30%;
|
||||||
margin-right: 4.999999999%;
|
margin-right: 4.999999999%;
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.about-wrap .feature-section.three-col h4 {
|
|
||||||
margin: 0 0 0.6em 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.about-wrap .feature-section.three-col .last-feature {
|
|
||||||
margin-right: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.about-wrap .three-col-images {
|
.about-wrap .three-col-images {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue