diff options
author | Tom Needham <needham.thomas@gmail.com> | 2012-08-04 23:30:28 +0000 |
---|---|---|
committer | Tom Needham <needham.thomas@gmail.com> | 2012-08-04 23:30:28 +0000 |
commit | 538e72fe61fe4a9e5b5cc9f3927b749c69f715a1 (patch) | |
tree | 776401733440c0aeaaf37c3f6ee00eb7b997fe74 /core | |
parent | 97853a1ae57a945c5951781af333f7c4139aeec4 (diff) | |
download | nextcloud-server-538e72fe61fe4a9e5b5cc9f3927b749c69f715a1.tar.gz nextcloud-server-538e72fe61fe4a9e5b5cc9f3927b749c69f715a1.zip |
Fix scrollbar issue. Fixes oc-1414
Diffstat (limited to 'core')
-rw-r--r-- | core/css/styles.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 52d6373d4e9..7e79a66fb49 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -3,7 +3,7 @@ See the COPYING-README file. */ html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, nav, section { margin:0; padding:0; border:0; outline:0; font-weight:inherit; font-size:100%; font-family:inherit; vertical-align:baseline; cursor:default; } -html, body { height: 100%; } +html, body { height: 100%; overflow: auto; } article, aside, dialog, figure, footer, header, hgroup, nav, section { display:block; } body { line-height:1.5; } table { border-collapse:separate; border-spacing:0; white-space:nowrap; } |