Skip to content

Commit 659812f

Browse files
committed
Deploy version 1.2.5
1 parent 51ef119 commit 659812f

File tree

4 files changed

+173
-129
lines changed

4 files changed

+173
-129
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-html5video",
3-
"version": "1.2.4",
3+
"version": "1.2.5",
44
"homepage": "https://github.com/mderrick/react-html5video",
55
"authors": [
66

dist/ReactHtml5Video.css

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,9 @@
270270
.video-controls {
271271
height: 34px;
272272
background-color: rgba(0,0,0,0.8);
273+
display: -webkit-box;
274+
display: -webkit-flex;
275+
display: -ms-flexbox;
273276
display: flex;
274277
}
275278

@@ -285,7 +288,8 @@
285288
padding: 10px;
286289
height: 100%;
287290
font-size: 14px;
288-
box-sizing: border-box;
291+
-webkit-box-sizing: border-box;
292+
box-sizing: border-box;
289293
}
290294

291295
.video__control--focused,
@@ -294,7 +298,10 @@
294298
outline: thin dotted;
295299
}
296300
.video-seek {
297-
flex-grow: 1;
301+
-webkit-box-flex: 1;
302+
-webkit-flex-grow: 1;
303+
-ms-flex-positive: 1;
304+
flex-grow: 1;
298305
height: 100%;
299306
position: relative;
300307
padding: 0 10px;

0 commit comments

Comments
 (0)