Twenty Fourteen: Correct video play button position.

A change to the MediaElement.js caused Twenty Fourteen's custom video play button to display in the top corner, rather than centered. This update returns it to its correct position. 

Props mmaumio, celloexpressions.
Fixes #44664.


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


git-svn-id: http://core.svn.wordpress.org/trunk@44210 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
laurelfulford 2019-01-02 01:47:51 +00:00
parent 16e6b4fab4
commit 1d2efe8fa7
3 changed files with 3 additions and 5 deletions

View File

@ -628,7 +628,6 @@ img {
box-shadow: 1px 1px 1px rgba(0,0,0,.8);
color: #000;
height: 36px;
margin-left: -24px;
width: 48px;
}
@ -637,7 +636,7 @@ img {
content: '\f452';
display: inline-block;
font: normal 32px/1.125 Genericons;
position: absolute;
position: relative;
top: 1px;
left: 10px;
}

View File

@ -1405,7 +1405,6 @@ a.post-thumbnail:hover {
box-shadow: 1px 1px 1px rgba(0,0,0,.8);
color: #000;
height: 36px;
margin: -28px 0 0 -24px; /* Keep centered on video (container includes visible controls bar) */
width: 48px;
}
@ -1415,7 +1414,7 @@ a.post-thumbnail:hover {
content: '\f452';
display: inline-block;
font: normal 32px/1.125 Genericons;
position: absolute;
position: relative;
top: 1px;
left: 10px;
}

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.1-alpha-44379';
$wp_version = '5.1-alpha-44380';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.