diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-02-17 20:59:29 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-02-17 20:59:29 +0100 |
commit | 5a80339b5196f971cd13cb08da8a8fe4f4d35374 (patch) | |
tree | aca291cccf3fe7415e29c536ede38a945d582734 | |
parent | 798dc2c39ab66f34b7409a475423a492f6c0a102 (diff) | |
parent | aa1a50f5b339aaf924bd8ceeb56d919a717aee9a (diff) | |
download | nextcloud-server-5a80339b5196f971cd13cb08da8a8fe4f4d35374.tar.gz nextcloud-server-5a80339b5196f971cd13cb08da8a8fe4f4d35374.zip |
Merge pull request #7211 from mattcaron/master
Fit shared videos to viewer, just like images. Issue #1648
-rw-r--r-- | apps/files_sharing/css/public.css | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/files_sharing/css/public.css b/apps/files_sharing/css/public.css index 21f0c82b829..5246a4b2fec 100644 --- a/apps/files_sharing/css/public.css +++ b/apps/files_sharing/css/public.css @@ -66,7 +66,8 @@ p.info a { margin:0 auto; } -#imgframe img { +#imgframe img, +#imgframe video { max-height:100%; max-width:100%; } @@ -76,6 +77,8 @@ p.info a { margin-top: 10%; } + + thead { padding-left: 0 !important; /* fixes multiselect bar offset on shared page */ } |