diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-02-22 14:13:42 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-02-22 14:13:42 +0100 |
commit | 3a0c4d11d9bc7bb28063c341341cac410d7aa920 (patch) | |
tree | dc60e9147537092e3c0e051422f76e5f74b9fd38 /apps | |
parent | 43a4990f09f7e4d9d4529691c8f7918adcc87ea5 (diff) | |
parent | 642190f333c8d202abd097ef7c9b21e2fd7b51a4 (diff) | |
download | nextcloud-server-3a0c4d11d9bc7bb28063c341341cac410d7aa920.tar.gz nextcloud-server-3a0c4d11d9bc7bb28063c341341cac410d7aa920.zip |
Merge pull request #22561 from owncloud/ie-publicpagefooter
Fix public page footer position in IE
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/css/public.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/files_sharing/css/public.css b/apps/files_sharing/css/public.css index 87222673972..d09947dab26 100644 --- a/apps/files_sharing/css/public.css +++ b/apps/files_sharing/css/public.css @@ -3,6 +3,11 @@ min-height: calc(100vh - 120px); } +/* force layout to make sure the content element's height matches its contents' height */ +.ie #content { + display: inline-block; +} + #preview { background: #fff; text-align: center; |