diff options
author | Matthew Caron <matt@mattcaron.net> | 2014-02-14 16:09:19 -0500 |
---|---|---|
committer | Matthew Caron <matt@mattcaron.net> | 2014-02-14 16:09:51 -0500 |
commit | 2887fb1f4816546c11a5c9994a293bf78f98081e (patch) | |
tree | 3443ff464d86ffebd3396edd814f9f40f0d3915e /apps/files_sharing | |
parent | 41f0ad2d1397af147fa9068c1236b53b5b8a05bd (diff) | |
download | nextcloud-server-2887fb1f4816546c11a5c9994a293bf78f98081e.tar.gz nextcloud-server-2887fb1f4816546c11a5c9994a293bf78f98081e.zip |
Fit shared videos to viewer, just like images. Issue #1648
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/css/public.css | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/files_sharing/css/public.css b/apps/files_sharing/css/public.css index 21f0c82b829..2d569fd77da 100644 --- a/apps/files_sharing/css/public.css +++ b/apps/files_sharing/css/public.css @@ -71,11 +71,18 @@ p.info a { max-width:100%; } +#imgframe video { + max-height:100%; + max-width:100%; +} + /* some margin for the file type icon */ #imgframe .publicpreview { margin-top: 10%; } + + thead { padding-left: 0 !important; /* fixes multiselect bar offset on shared page */ } |