Theme Switcher: Don't hide action buttons on narrow screens.
see #31794. Built from https://develop.svn.wordpress.org/trunk@31912 git-svn-id: http://core.svn.wordpress.org/trunk@31891 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
2e314d764e
commit
2dfb835751
|
@ -1030,6 +1030,13 @@ body.cheatin p {
|
|||
display: none;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 780px) {
|
||||
.wp-customizer .theme:not(.active):hover .theme-actions,
|
||||
.wp-customizer .theme:not(.active):focus .theme-actions {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and ( max-width: 640px ) {
|
||||
#customize-controls {
|
||||
width: 100%;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1030,6 +1030,13 @@ body.cheatin p {
|
|||
display: none;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 780px) {
|
||||
.wp-customizer .theme:not(.active):hover .theme-actions,
|
||||
.wp-customizer .theme:not(.active):focus .theme-actions {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and ( max-width: 640px ) {
|
||||
#customize-controls {
|
||||
width: 100%;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.2-beta3-31911';
|
||||
$wp_version = '4.2-beta3-31912';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue