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.

Built from https://develop.svn.wordpress.org/trunk@27792


git-svn-id: http://core.svn.wordpress.org/trunk@27628 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Helen Hou-Sandí 2014-03-27 20:10:15 +00:00
parent 56b7043a90
commit 502dab46e5
1 changed files with 6 additions and 1 deletions

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 {