Home
Documentation
Downloads
Demo
Tracker
Development
Translation
Moodle.net
Search
projects
/
moodle.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6749b07
)
MDL-57187 filter_mediaplugin: fix audio tag height in chrome
author
Jake Dallimore
<jake@moodle.com>
Wed, 21 Dec 2016 05:46:42 +0000
(13:46 +0800)
committer
Jake Dallimore
<jake@moodle.com>
Wed, 21 Dec 2016 05:46:42 +0000
(13:46 +0800)
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.
filter/mediaplugin/styles.css
patch
|
blob
|
blame
|
history
diff --git
a/filter/mediaplugin/styles.css
b/filter/mediaplugin/styles.css
index
3c0a1a8
..
fe08afa
100644
(file)
--- a/
filter/mediaplugin/styles.css
+++ b/
filter/mediaplugin/styles.css
@@
-14,6
+14,7
@@
width: 100vw;
max-width: 100%;
height: auto;
+ min-height: 32px;
}
.mediaplugin > div {