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:
parent
74dfb2680b
commit
286545cad6
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue