iOS bug fixes (fixes #213)

This commit is contained in:
Sam Potts
2016-05-14 08:56:59 +10:00
parent 448c070898
commit d2e9c61fd7
8 changed files with 49 additions and 15 deletions

View File

@ -363,6 +363,7 @@
// Large play button (video only)
.plyr__play-large {
display: none;
position: absolute;
top: 50%;
left: 50%;
@ -388,6 +389,9 @@
outline: 1px dotted transparentize($plyr-video-control-color, .5);
}
}
.plyr .plyr__play-large {
display: inline-block;
}
.plyr--audio .plyr__play-large {
display: none;
}
@ -479,8 +483,8 @@
// --------------------------------------------------------------
// <progress> element
.plyr__progress {
display: none;
position: relative;
display: inline-block;
flex: 1;
input[type="range"] {
@ -503,6 +507,9 @@
left: 0;
}
}
.plyr .plyr__progress {
display: inline-block;
}
.plyr__progress--buffer,
.plyr__progress--played,
@ -635,8 +642,10 @@
// Volume
// --------------------------------------------------------------
.plyr .plyr__volume {
.plyr__volume {
display: none;
}
.plyr .plyr__volume {
flex: 1;
position: relative;