Theme Details: Hide admin toolbar on smaller screens.

props obenland.
fixes #31381.
Built from https://develop.svn.wordpress.org/trunk@31702


git-svn-id: http://core.svn.wordpress.org/trunk@31683 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2015-03-10 20:04:26 +00:00
parent 74dfb2680b
commit 286545cad6
5 changed files with 7 additions and 5 deletions

View File

@ -523,6 +523,7 @@
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-overflow-scrolling: touch;
}
.theme-overlay .theme-wrap:after {
@ -922,7 +923,7 @@ body.folded .theme-overlay .theme-wrap {
right: 0;
padding: 70px 20px 20px;
border: none;
z-index: 500; /* should overlap #wpadminbar, which is 500 on mobile. */
z-index: 100000; /* should overlap #wpadminbar. */
position: fixed;
}

View File

@ -523,6 +523,7 @@
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-overflow-scrolling: touch;
}
.theme-overlay .theme-wrap:after {
@ -922,7 +923,7 @@ body.folded .theme-overlay .theme-wrap {
left: 0;
padding: 70px 20px 20px;
border: none;
z-index: 500; /* should overlap #wpadminbar, which is 500 on mobile. */
z-index: 100000; /* should overlap #wpadminbar. */
position: fixed;
}

File diff suppressed because one or more lines are too long

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-alpha-31701';
$wp_version = '4.2-alpha-31702';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.