Merge pull request #7211 from mattcaron/master

Fit shared videos to viewer, just like images. Issue #1648
This commit is contained in:
Vincent Petry 2014-02-17 20:59:29 +01:00
commit 5a80339b51
1 changed files with 4 additions and 1 deletions

View File

@ -66,7 +66,8 @@ p.info a {
margin:0 auto; margin:0 auto;
} }
#imgframe img { #imgframe img,
#imgframe video {
max-height:100%; max-height:100%;
max-width:100%; max-width:100%;
} }
@ -76,6 +77,8 @@ p.info a {
margin-top: 10%; margin-top: 10%;
} }
thead { thead {
padding-left: 0 !important; /* fixes multiselect bar offset on shared page */ padding-left: 0 !important; /* fixes multiselect bar offset on shared page */
} }