Buttons: Fix a few `.button-link` glitches after [40052].

Removes some stray underlines. Explicitly set the button text to be left aligned.

Props Cheffheid, f.staude, Presskopp.

See #34242.
Fixes #35126, #38712.


git-svn-id: https://develop.svn.wordpress.org/trunk@40059 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrea Fercia 2017-02-14 18:41:25 +00:00
parent 1879140548
commit dccf1535a4
4 changed files with 6 additions and 21 deletions

View File

@ -2046,7 +2046,11 @@ html.wp-toolbar {
float: right;
width: 36px;
height: 36px;
margin: 0;
padding: 0;
border: 0;
background: none;
cursor: pointer;
}
.js .postbox .handlediv {

View File

@ -1462,24 +1462,11 @@ body.cheatin p {
/* Reordering */
.reorder-toggle {
color: #0073aa;
float: right;
padding: 5px 8px;
text-decoration: none;
cursor: pointer;
outline: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.reorder-toggle:hover {
color: #00a0d2;
}
.reorder-toggle:focus {
outline: 1px dotted;
}
.reorder,
@ -1491,13 +1478,6 @@ body.cheatin p {
.reorder-done,
.reordering .reorder {
display: none;
color: #0073aa;
}
.reorder-toggle:hover .reorder-done,
.reorder-toggle:active .reorder-done,
.reorder-toggle:focus .reorder-done {
color: #00a0d2;
}
.widget-reorder-nav span,

View File

@ -1038,7 +1038,7 @@ function do_meta_boxes( $screen, $context, $object ) {
unset( $box[ 'args' ][ '__widget_basename' ] );
}
echo '<button type="button" class="handlediv button-link" aria-expanded="true">';
echo '<button type="button" class="handlediv" aria-expanded="true">';
echo '<span class="screen-reader-text">' . sprintf( __( 'Toggle panel: %s' ), $widget_title ) . '</span>';
echo '<span class="toggle-indicator" aria-hidden="true"></span>';
echo '</button>';

View File

@ -209,6 +209,7 @@ TABLE OF CONTENTS:
background: none;
outline: none;
cursor: pointer;
text-align: left;
/* Mimics the default link style in common.css */
color: #0073aa;
text-decoration: underline;