Merge pull request #3032 from awesomerobot/master

adding max-height for embedded video
This commit is contained in:
Régis Hanol 2014-12-08 21:48:19 +01:00
commit 63d4932549
2 changed files with 5 additions and 0 deletions

View File

@ -277,6 +277,7 @@
cursor: default; cursor: default;
video { video {
max-width: 100%; max-width: 100%;
max-height: 500px;
height: auto; height: auto;
} }
audio { audio {

View File

@ -510,6 +510,10 @@ iframe {
max-width: 100%; max-width: 100%;
} }
video {
max-height: 500px;
}
@keyframes fadein { @keyframes fadein {
from {opacity: 0;} from {opacity: 0;}
to {opacity: 1;} to {opacity: 1;}