summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-10-08 13:01:01 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2015-10-08 13:01:01 +0200
commite5bbec79a603d4580d263ce51b9a89321627a248 (patch)
tree26d60264863dddfa5b98d3736f09b5c6818e3794 /core
parent33cf1c3c92f6d9b4fcf2375a894e2922b948c6e3 (diff)
parentccfd052e81545099fe7d3527c5f906a56e4f7542 (diff)
downloadnextcloud-server-e5bbec79a603d4580d263ce51b9a89321627a248.tar.gz
nextcloud-server-e5bbec79a603d4580d263ce51b9a89321627a248.zip
Merge pull request #19611 from owncloud/fix-public-scroll
Fix scrollbars in public template
Diffstat (limited to 'core')
-rw-r--r--core/css/styles.css9
1 files changed, 4 insertions, 5 deletions
diff --git a/core/css/styles.css b/core/css/styles.css
index df533aab318..3d68a591522 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -404,8 +404,7 @@ input[type="submit"].enabled {
width: 100%;
}
#content .hascontrols {
- position: relative;
- top: 45px;
+ margin-top: 45px;
}
#content-wrapper {
position: absolute;
@@ -425,9 +424,9 @@ input[type="submit"].enabled {
.emptycontent {
font-size: 16px;
color: #888;
- position: absolute;
text-align: center;
- top: 30%;
+ margin-top: 100px; /* ie8 */
+ margin-top: 30vh;
width: 100%;
}
#emptycontent h2,
@@ -1164,7 +1163,7 @@ div.crumb:active {
/* public footer */
#body-public footer {
- margin-top: 65px;
+ position: relative;
text-align: center;
}