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:
Dominik Schilling 2015-03-27 21:53:27 +00:00
parent 2e314d764e
commit 2dfb835751
5 changed files with 17 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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.