Widgets: Prevent MediaElement.js player from overflowing sidebar in Audio widget.

Props bradyvercher.
See #39686.
Fixes #42244.


git-svn-id: https://develop.svn.wordpress.org/trunk@41886 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Weston Ruter 2017-10-16 23:01:55 +00:00
parent 87410d2692
commit ee678ee1f5
1 changed files with 6 additions and 0 deletions

View File

@ -1,5 +1,6 @@
.mejs-container {
clear: both;
max-width: 100%;
}
.mejs-container * {
@ -13,6 +14,11 @@
background: #222;
}
.mejs-time {
font-weight: normal;
word-wrap: normal;
}
.mejs-controls a.mejs-horizontal-volume-slider {
display: table;
}