summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2016-07-29 15:36:30 +0200
committerGitHub <noreply@github.com>2016-07-29 15:36:30 +0200
commit696ff90cbee2489bc9befdcea8332f6390deebbc (patch)
treeb539f196ab8b9cea5b645c05ad140b81014b8a58 /apps/files_sharing
parent55665f0d4d6e7b1b3df585fd7a987e38c21f4733 (diff)
parent748745d381b05491f4679223204cbce122f5f937 (diff)
downloadnextcloud-server-696ff90cbee2489bc9befdcea8332f6390deebbc.tar.gz
nextcloud-server-696ff90cbee2489bc9befdcea8332f6390deebbc.zip
Merge pull request #625 from nextcloud/video-container-size
up the minimum size of the public share video a bit, use 16/9 ratio
Diffstat (limited to 'apps/files_sharing')
-rw-r--r--apps/files_sharing/css/public.css9
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 {