mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-10 21:00:59 +01:00
Customize: Make the menu edit button look like a link.
The button was introduced in [37901] to allow users switching to the selected menu for further edits. A link makes it more clear that the user is taken away from the current view. This also adds an aria label and makes the button label more verbose, 'Edit Menu'. Merge of [38189] to the 4.6 branch. Props afercia. Props helen for review. See #36795. Built from https://develop.svn.wordpress.org/branches/4.6@38190 git-svn-id: http://core.svn.wordpress.org/branches/4.6@38131 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b4cc5d511b
commit
1a6b25088a
@ -16,8 +16,21 @@
|
|||||||
color: #555;
|
color: #555;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* The `edit-menu` button uses also the `button-link` class. */
|
||||||
.customize-control-nav_menu_location .edit-menu {
|
.customize-control-nav_menu_location .edit-menu {
|
||||||
margin-top: 1px;
|
margin-right: 6px;
|
||||||
|
vertical-align: middle;
|
||||||
|
color: #0073aa;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.customize-control-nav_menu_location .edit-menu:hover,
|
||||||
|
.customize-control-nav_menu_location .edit-menu:active {
|
||||||
|
color: #00a0d2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.customize-control-nav_menu_location .edit-menu:focus {
|
||||||
|
color: #124964;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-customizer .menu-item-bar .menu-item-handle,
|
.wp-customizer .menu-item-bar .menu-item-handle,
|
||||||
|
2
wp-admin/css/customize-nav-menus-rtl.min.css
vendored
2
wp-admin/css/customize-nav-menus-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@ -16,8 +16,21 @@
|
|||||||
color: #555;
|
color: #555;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* The `edit-menu` button uses also the `button-link` class. */
|
||||||
.customize-control-nav_menu_location .edit-menu {
|
.customize-control-nav_menu_location .edit-menu {
|
||||||
margin-top: 1px;
|
margin-left: 6px;
|
||||||
|
vertical-align: middle;
|
||||||
|
color: #0073aa;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.customize-control-nav_menu_location .edit-menu:hover,
|
||||||
|
.customize-control-nav_menu_location .edit-menu:active {
|
||||||
|
color: #00a0d2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.customize-control-nav_menu_location .edit-menu:focus {
|
||||||
|
color: #124964;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-customizer .menu-item-bar .menu-item-handle,
|
.wp-customizer .menu-item-bar .menu-item-handle,
|
||||||
|
2
wp-admin/css/customize-nav-menus.min.css
vendored
2
wp-admin/css/customize-nav-menus.min.css
vendored
File diff suppressed because one or more lines are too long
@ -77,7 +77,7 @@ class WP_Customize_Nav_Menu_Location_Control extends WP_Customize_Control {
|
|||||||
?>
|
?>
|
||||||
</select>
|
</select>
|
||||||
</label>
|
</label>
|
||||||
<button type="button" class="button edit-menu<?php if ( ! $this->value() ) { echo ' hidden'; } ?>"><?php _e( 'Edit' ); ?></button>
|
<button type="button" class="button-link edit-menu<?php if ( ! $this->value() ) { echo ' hidden'; } ?>" aria-label="<?php esc_attr_e( 'Edit selected menu' ); ?>"><?php _e( 'Edit Menu' ); ?></button>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.6-RC1-38188';
|
$wp_version = '4.6-RC1-38190';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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