MDL-57187 filter_mediaplugin: fix audio tag height in chrome

Chrome's html5 audio tags don't have a height and 'auto' renders them
with zero height, so added a min height to address this.
This commit is contained in:
Jake Dallimore 2016-12-21 13:46:42 +08:00
parent 6749b071d9
commit c19c53161a

View File

@ -14,6 +14,7 @@
width: 100vw;
max-width: 100%;
height: auto;
min-height: 32px;
}
.mediaplugin > div {