Media player fixes

* Fix for hidden audio player
* Fullscreen hover fix
This commit is contained in:
Tim Hobbs 2014-03-18 12:57:32 -07:00
parent b5b21349f9
commit 2131f0f895
4 changed files with 64 additions and 5 deletions

View file

@ -8,7 +8,7 @@
}
.nowPlayingBar .barBackground {
border-top: 2px solid green;
border-top: 2px solid #08b;
position: absolute;
width: 100%;
height: 100%;
@ -16,6 +16,9 @@
#videoPlayer.fullscreenVideo .nowPlayingBar {
opacity: 0.5;
}
#videoPlayer.fullscreenVideo .inactive {
-webkit-transition: top 0.6s ease-in-out;
-moz-transition: top 0.6s ease-in-out;
-o-transition: top 0.6s ease-in-out;
@ -24,7 +27,7 @@
height: 100%;
}
#videoPlayer.fullscreenVideo:hover .nowPlayingBar {
#videoPlayer.fullscreenVideo:hover .active {
top: 95% !important;
}
@ -54,6 +57,11 @@
left: 0;
}
#mediaPlayer {
min-height: 50px;
padding-bottom: 20px;
}
.nowPlayingMediaInfo div {
display: inline-block;
}
@ -167,7 +175,7 @@
height: 50px;
background-color: #1d1d1d;
position: absolute;
top: initial;
top: auto;
right: 0;
bottom: 0;
left: 0;
@ -598,4 +606,12 @@ ss}
-webkit-transform: scale(1);
opacity: 0;
}
}
.cursor-active {
cursor: default;
}
.cursor-inactive {
cursor: none;
}