Prevent horizontal scrolling when the responsive sidebar is open, pushing the main column off to the right. See #25858.
Built from https://develop.svn.wordpress.org/trunk@26423 git-svn-id: http://core.svn.wordpress.org/trunk@26323 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5a3717d526
commit
bc4a8f6494
|
@ -12227,6 +12227,12 @@ li#wp-admin-bar-menu-toggle {
|
|||
display: block;
|
||||
}
|
||||
|
||||
/* Disable horizontal scroll when responsive menu is open
|
||||
since we push the main content off to the right. */
|
||||
#wpwrap.wp-responsive-open {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
html.wp-toolbar {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -12227,6 +12227,12 @@ li#wp-admin-bar-menu-toggle {
|
|||
display: block;
|
||||
}
|
||||
|
||||
/* Disable horizontal scroll when responsive menu is open
|
||||
since we push the main content off to the right. */
|
||||
#wpwrap.wp-responsive-open {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
html.wp-toolbar {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue