Skip to content

Commit

Permalink
fix(player): Added missing condition to captions button to remove cla…
Browse files Browse the repository at this point in the history
…ss; fixed issues with WebPack and unit tests
  • Loading branch information
rafa8626 committed Jul 19, 2019
1 parent 5f2cccd commit 5c01eb2
Show file tree
Hide file tree
Showing 10 changed files with 3,298 additions and 2,979 deletions.
9 changes: 4 additions & 5 deletions dist/openplayer.css
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@
position: absolute;
text-align: center;
-webkit-transform: translateX(0%);
-ms-transform: translateX(0%);
-ms-transform: translateX(0%);
transform: translateX(0%);
}
.op-player__video .op-controls__tooltip {
Expand Down Expand Up @@ -702,14 +702,13 @@
position: absolute;
text-align: center;
-webkit-transform: translateY(-40px);
-ms-transform: translateY(-40px);
-ms-transform: translateY(-40px);
transform: translateY(-40px);
transition: -webkit-transform 0.3s ease;
-webkit-transition: -webkit-transform 0.3s ease;
transition: -webkit-transform 0.3s ease;
-o-transition: transform 0.3s ease;
transition: transform 0.3s ease;
transition: transform 0.3s ease, -webkit-transform 0.3s ease;
transition: transform 0.3s ease,-webkit-transform 0.3s ease;
width: 100%;
z-index: 1;
}
Expand Down Expand Up @@ -839,7 +838,7 @@ video:-webkit-media-text-track-display {
position: absolute;
top: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
width: auto !important;
}
Expand Down

0 comments on commit 5c01eb2

Please sign in to comment.