Customizer: Add visual feedback to reorder buttons.
Props coreymcollins, melchoyce. Fixes #35041. Built from https://develop.svn.wordpress.org/trunk@36641 git-svn-id: http://core.svn.wordpress.org/trunk@36608 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
54ab5fa68c
commit
410ed6d615
|
@ -1284,6 +1284,7 @@ body.cheatin p {
|
|||
|
||||
/* Reordering */
|
||||
.reorder-toggle {
|
||||
color: #0073aa;
|
||||
float: left;
|
||||
padding: 5px 8px;
|
||||
text-decoration: none;
|
||||
|
@ -1295,6 +1296,10 @@ body.cheatin p {
|
|||
user-select: none;
|
||||
}
|
||||
|
||||
.reorder-toggle:hover {
|
||||
color: #00a0d2;
|
||||
}
|
||||
|
||||
.reorder-toggle:focus {
|
||||
outline: 1px dotted;
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1284,6 +1284,7 @@ body.cheatin p {
|
|||
|
||||
/* Reordering */
|
||||
.reorder-toggle {
|
||||
color: #0073aa;
|
||||
float: right;
|
||||
padding: 5px 8px;
|
||||
text-decoration: none;
|
||||
|
@ -1295,6 +1296,10 @@ body.cheatin p {
|
|||
user-select: none;
|
||||
}
|
||||
|
||||
.reorder-toggle:hover {
|
||||
color: #00a0d2;
|
||||
}
|
||||
|
||||
.reorder-toggle:focus {
|
||||
outline: 1px dotted;
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.5-alpha-36640';
|
||||
$wp_version = '4.5-alpha-36641';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue