Prevent horizontal scrolling when the responsive sidebar is open, pushing the main column off to the right. See #25858.

git-svn-id: https://develop.svn.wordpress.org/trunk@26423 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Thomas 2013-11-26 22:43:39 +00:00
parent 8a8f55024a
commit d797d9955e
1 changed files with 6 additions and 0 deletions

View File

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