diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-07-22 12:01:49 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-07-23 18:36:44 +0200 |
commit | c478234f6a0a510797e8308df1410c38093f1c7c (patch) | |
tree | 2f70536a5d62abc9e063bde74eb4a920e575ba91 /core | |
parent | 107ace42b806a57dec816413252a7db9cde3512d (diff) | |
download | nextcloud-server-c478234f6a0a510797e8308df1410c38093f1c7c.tar.gz nextcloud-server-c478234f6a0a510797e8308df1410c38093f1c7c.zip |
fix general reset CSS issue which caused gradient background to cut off
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 ec13f5bffc5..d0242e69eb5 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%; overflow:auto; } +html, body { min-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; } |