Skip to content

Commit

Permalink
Merge pull request #668 from nextcloud/stable10-video-container-size
Browse files Browse the repository at this point in the history
[stable10] up the minimum size of the public share video a bit, use 16/9 ratio
  • Loading branch information
MorrisJobke authored Aug 1, 2016
2 parents ab18c72 + 0d5b8f3 commit a60fd5b
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions apps/files_sharing/css/public.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit a60fd5b

Please sign in to comment.