mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
Fix flickering of the admin menu on over-scrolling.
Props joemcgill, mindrun. Fixes #30900. Built from https://develop.svn.wordpress.org/trunk@32089 git-svn-id: http://core.svn.wordpress.org/trunk@32068 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
755d44736a
commit
ab8441ccc1
@ -7,10 +7,10 @@
|
||||
}
|
||||
|
||||
#adminmenuback {
|
||||
position: absolute;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
z-index: -1;
|
||||
bottom: -120px;
|
||||
z-index: 9980; /* just beneath #adminmenuwrap */
|
||||
}
|
||||
|
||||
#adminmenu {
|
||||
@ -933,4 +933,3 @@ li#wp-admin-bar-menu-toggle {
|
||||
top: 46px;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -7,10 +7,10 @@
|
||||
}
|
||||
|
||||
#adminmenuback {
|
||||
position: absolute;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
z-index: -1;
|
||||
bottom: -120px;
|
||||
z-index: 9980; /* just beneath #adminmenuwrap */
|
||||
}
|
||||
|
||||
#adminmenu {
|
||||
@ -933,4 +933,3 @@ li#wp-admin-bar-menu-toggle {
|
||||
top: 46px;
|
||||
}
|
||||
}
|
||||
|
||||
|
2
wp-admin/css/wp-admin-rtl.min.css
vendored
2
wp-admin/css/wp-admin-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
2
wp-admin/css/wp-admin.min.css
vendored
2
wp-admin/css/wp-admin.min.css
vendored
File diff suppressed because one or more lines are too long
@ -4,7 +4,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.2-beta4-32088';
|
||||
$wp_version = '4.2-beta4-32089';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user