PressThis: enable scrollbars in Firefox, remove overflow-x: hidden from the html element. Part props Michael-Arestad. Fixes #31455.

Built from https://develop.svn.wordpress.org/trunk@31565


git-svn-id: http://core.svn.wordpress.org/trunk@31546 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Ozz
2015-02-27 01:55:26 +00:00
parent 6d03323746
commit dd79f77b26
7 changed files with 15 additions and 21 deletions

View File

@@ -1109,16 +1109,13 @@ input[type="search"].categories-search,
/**
* Main
*/
html,
body {
overflow-x: hidden;
html {
overflow: auto;
}
@media (min-width: 901px) {
html,
body {
height: 100%;
}
body {
overflow-x: hidden;
height: 100%;
}
html {

File diff suppressed because one or more lines are too long

View File

@@ -1109,16 +1109,13 @@ input[type="search"].categories-search,
/**
* Main
*/
html,
body {
overflow-x: hidden;
html {
overflow: auto;
}
@media (min-width: 901px) {
html,
body {
height: 100%;
}
body {
overflow-x: hidden;
height: 100%;
}
html {

File diff suppressed because one or more lines are too long