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:
Matt Thomas 2013-11-26 22:44:10 +00:00
parent 5a3717d526
commit bc4a8f6494
4 changed files with 14 additions and 2 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;
}

File diff suppressed because one or more lines are too long

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

File diff suppressed because one or more lines are too long