2013-12-28 00:09:05 -07:00
|
|
|
|
/* Now playing bar */
|
2013-12-27 21:42:40 -07:00
|
|
|
|
.nowPlayingBar {
|
2013-12-30 20:43:30 -07:00
|
|
|
|
padding: 6px 0 24px 0;
|
2013-12-27 09:18:42 -07:00
|
|
|
|
border-top: 2px solid green;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-27 21:42:40 -07:00
|
|
|
|
.nowPlayingBar .highPosition {
|
2013-12-27 09:18:42 -07:00
|
|
|
|
z-index: 99999;
|
|
|
|
|
position: relative;
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-27 21:42:40 -07:00
|
|
|
|
.nowPlayingBar .highPosition:hover:not(.barBackground ) {
|
2013-12-27 09:18:42 -07:00
|
|
|
|
opacity: 0.9;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-27 21:42:40 -07:00
|
|
|
|
.nowPlayingBar .barBackground {
|
2013-12-27 09:18:42 -07:00
|
|
|
|
border-top: 2px solid green;
|
|
|
|
|
position: absolute;
|
2013-12-30 20:43:30 -07:00
|
|
|
|
margin: -8px -0.5em -26px !important;
|
2013-12-27 09:18:42 -07:00
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-27 21:42:40 -07:00
|
|
|
|
.nowPlayingBar > *:not(#mediaElement):not(.mediaFlyoutContainer):not(.barBackground ) {
|
2013-12-27 09:18:42 -07:00
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nowPlayingBarImage {
|
|
|
|
|
vertical-align: bottom;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mediaButton {
|
2013-12-27 21:42:40 -07:00
|
|
|
|
vertical-align: top;
|
2013-12-27 09:18:42 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#mediaElement {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nowPlayingMediaInfo div {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nowPlayingMediaInfo a {
|
|
|
|
|
margin-right: .25em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.nowPlayingMediaInfo {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nowPlayingText {
|
|
|
|
|
position: relative;
|
|
|
|
|
top: -3px;
|
|
|
|
|
margin-left: 3px;
|
2013-12-27 21:42:40 -07:00
|
|
|
|
margin-right: 2em;
|
2013-12-28 09:58:13 -07:00
|
|
|
|
font-weight: normal;
|
2013-12-27 09:18:42 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media all and (min-width: 650px) {
|
|
|
|
|
.nowPlayingMediaInfo {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mediaButton img {
|
|
|
|
|
height: 24px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.itemVideo {
|
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 99998;
|
|
|
|
|
height: auto;
|
|
|
|
|
width: 270px;
|
2014-01-03 13:32:27 -07:00
|
|
|
|
bottom: 45px;
|
2013-12-27 09:18:42 -07:00
|
|
|
|
left: -290px;
|
2014-01-08 13:29:09 -07:00
|
|
|
|
border: 1px solid #444;
|
2013-12-27 09:18:42 -07:00
|
|
|
|
background: #000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fullscreenVideo {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0 !important;
|
|
|
|
|
bottom: 0 !important;
|
|
|
|
|
right: 0 !important;
|
|
|
|
|
left: 0 !important;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
border: 0;
|
|
|
|
|
z-index: 99996;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.currentTime {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
position: relative;
|
|
|
|
|
top: -10px;
|
2013-12-27 21:42:40 -07:00
|
|
|
|
max-width: 110px;
|
|
|
|
|
margin-right: 2em;
|
2013-12-28 09:58:13 -07:00
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: normal;
|
2013-12-27 09:18:42 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mediaSlider {
|
|
|
|
|
position: relative;
|
|
|
|
|
top: -10px;
|
|
|
|
|
width: 50px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-27 21:42:40 -07:00
|
|
|
|
.sliderContainer {
|
|
|
|
|
display: inline-block;
|
2013-12-27 09:18:42 -07:00
|
|
|
|
}
|
|
|
|
|
|
2013-12-27 21:42:40 -07:00
|
|
|
|
.positionSliderContainer {
|
|
|
|
|
width: 130px;
|
|
|
|
|
}
|
2013-12-27 09:18:42 -07:00
|
|
|
|
|
2013-12-28 00:09:05 -07:00
|
|
|
|
.volumeSliderContainer {
|
2013-12-27 21:42:40 -07:00
|
|
|
|
width: 90px;
|
2013-12-27 09:18:42 -07:00
|
|
|
|
}
|
|
|
|
|
|
2013-12-27 21:42:40 -07:00
|
|
|
|
.sliderContainer .ui-slider {
|
|
|
|
|
margin: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sliderContainer .ui-slider-track {
|
|
|
|
|
margin-left: 15px !important;
|
2013-12-28 00:09:05 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.highPosition .ui-slider-track {
|
2013-12-27 21:42:40 -07:00
|
|
|
|
z-index: 100000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.volumeSliderContainer .ui-slider-track {
|
|
|
|
|
margin-left: 5px !important;
|
2013-12-27 09:18:42 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.volumeButton {
|
|
|
|
|
margin-right: .5em!important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-ms-thumb {
|
|
|
|
|
background-image: linear-gradient(#fefefe,#dddddd);
|
|
|
|
|
width: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-ms-track {
|
|
|
|
|
padding: 0;
|
|
|
|
|
border: 0;
|
|
|
|
|
color: #777;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type="range"]::-ms-fill-lower {
|
|
|
|
|
background-color: #777;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type="range"]::-ms-fill-upper {
|
|
|
|
|
background-color: #777;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-ms-tooltip {
|
|
|
|
|
display: none; /* display and visibility only */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media all and (max-width: 600px) {
|
2013-12-27 21:42:40 -07:00
|
|
|
|
.volumeButton, .volumeSliderContainer, .nowPlayingText, .chaptersButton, .audioTracksButton {
|
2013-12-27 09:18:42 -07:00
|
|
|
|
display: none!important;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-27 21:42:40 -07:00
|
|
|
|
.positionSliderContainer {
|
2013-12-27 09:18:42 -07:00
|
|
|
|
width: 50px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.itemVideo:not(.fullscreenVideo) {
|
|
|
|
|
left: -250px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media all and (max-width: 750px) {
|
2013-12-27 21:42:40 -07:00
|
|
|
|
.positionSliderContainer {
|
2013-12-27 09:18:42 -07:00
|
|
|
|
width: 50px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mediaFlyoutContainer {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mediaPlayerFlyout {
|
|
|
|
|
width: 200px;
|
|
|
|
|
color: #000;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border: 1px solid #999;
|
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 99999;
|
2014-01-03 13:32:27 -07:00
|
|
|
|
bottom: 78px;
|
2013-12-27 09:18:42 -07:00
|
|
|
|
margin-left: -50px;
|
|
|
|
|
max-height: 300px;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chaptersFlyout {
|
|
|
|
|
width: 250px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.audioTracksFlyout {
|
|
|
|
|
width: 250px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mediaFlyoutOption {
|
|
|
|
|
display: block;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
color: #000;
|
|
|
|
|
border-bottom: 1px solid #eee;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mediaFlyoutOption:hover, .mediaFlyoutOption:focus {
|
|
|
|
|
background-color: #eee;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.selectedMediaFlyoutOption {
|
|
|
|
|
background-color: #d9F4FF;
|
|
|
|
|
background-image: url(images/media/selected.png);
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-position: right top;
|
|
|
|
|
background-size: 16px 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mediaFlyoutOptionImage {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 15%;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mediaFlyoutOptionImage + .mediaFlyoutOptionContent {
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 85%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chaptersFlyout .mediaFlyoutOptionImage {
|
|
|
|
|
width: 40%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chaptersFlyout .mediaFlyoutOptionImage + .mediaFlyoutOptionContent {
|
|
|
|
|
width: 60%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mediaFlyoutOptionName {
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
padding-left: 5px;
|
2014-01-03 13:32:27 -07:00
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-weight: normal;
|
2013-12-27 09:18:42 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mediaFlyoutOptionSecondaryText {
|
2014-01-03 13:32:27 -07:00
|
|
|
|
font-size: 13px;
|
|
|
|
|
color: #333;
|
|
|
|
|
font-weight: normal;
|
2013-12-27 09:18:42 -07:00
|
|
|
|
margin-top: 3px;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
padding-left: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (min-width: 750px) {
|
|
|
|
|
.itemVideo:not(.fullscreenVideo) {
|
|
|
|
|
width: 320px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (min-width: 1200px) {
|
|
|
|
|
.itemVideo:not(.fullscreenVideo) {
|
|
|
|
|
width: 320px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (min-width: 1440px) {
|
|
|
|
|
.itemVideo:not(.fullscreenVideo) {
|
|
|
|
|
width: 400px;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-27 21:42:40 -07:00
|
|
|
|
.positionSliderContainer {
|
2013-12-28 22:32:03 -07:00
|
|
|
|
width: 300px;
|
2013-12-27 09:18:42 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.itemVideo {
|
2013-12-28 22:32:03 -07:00
|
|
|
|
left: -420px;
|
2013-12-27 09:18:42 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (min-width: 1700px) {
|
|
|
|
|
.itemVideo:not(.fullscreenVideo) {
|
|
|
|
|
width: 500px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.itemVideo {
|
2013-12-28 22:32:03 -07:00
|
|
|
|
left: -420px;
|
2013-12-27 09:18:42 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (min-width: 2400px) {
|
|
|
|
|
.itemVideo:not(.fullscreenVideo) {
|
|
|
|
|
width: 550px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.itemVideo {
|
2013-12-28 22:32:03 -07:00
|
|
|
|
left: -400px;
|
2013-12-27 09:18:42 -07:00
|
|
|
|
}
|
2013-12-28 00:09:05 -07:00
|
|
|
|
}
|