diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2016-07-28 11:49:08 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2016-07-29 10:47:00 +0200 |
commit | 748745d381b05491f4679223204cbce122f5f937 (patch) | |
tree | e6b21466f91f5a49d220d7cbcc9be4cc46060d78 | |
parent | d6c680051cd1d0a661c9a2b0201d4ab48005a077 (diff) | |
download | nextcloud-server-748745d381b05491f4679223204cbce122f5f937.tar.gz nextcloud-server-748745d381b05491f4679223204cbce122f5f937.zip |
up the minimum size of the public share video a bit, use 16/9 ratio, fix #603
-rw-r--r-- | apps/files_sharing/css/public.css | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/apps/files_sharing/css/public.css b/apps/files_sharing/css/public.css index c998501dad6..4c5f847f9ff 100644 --- a/apps/files_sharing/css/public.css +++ b/apps/files_sharing/css/public.css @@ -30,10 +30,15 @@ margin:0 auto; } + #imgframe img, #imgframe video { - max-height:100%; - max-width:100%; + max-height: 100% !important; + max-width: 100% !important; +} +#imgframe video { + width: 854px; + height: 480px; } #imgframe .text-preview { |