Affix the audio view toolbar to the bottom as opposed to the top of the view. Otherwise it's not accessible when the view is the first item in the content. Said views keep a newline underneath, so there's space for it to appear there instead. fixes #27548, see #27320.

git-svn-id: https://develop.svn.wordpress.org/trunk@27792 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Helen Hou-Sandi 2014-03-27 20:09:38 +00:00
parent 7494a5acc5
commit 1959b1379b

View File

@ -271,7 +271,12 @@ audio {
/* Audio player is short; therefore let's put the toolbar above */
.wpview-type-audio .toolbar {
top: -41px;
top: auto;
bottom: -34px;
}
.wpview-type-audio .toolbar div {
margin-top: 0;
}
.wpview-type-audio .toolbar div:first-child {