jellyfin-web/dashboard-ui/css/mediaplayer.css

167 lines
2.7 KiB
CSS
Raw Normal View History

2013-12-28 00:09:05 -07:00
/* Now playing bar */
.nowPlayingBar {
2014-04-13 10:27:13 -07:00
padding: 6px 0 14px 0;
border-top: 2px solid green;
2013-12-27 09:18:42 -07:00
}
.nowPlayingBarImage {
vertical-align: bottom;
}
.mediaButton {
vertical-align: top;
2013-12-27 09:18:42 -07:00
}
#mediaElement {
display: inline-block;
position: relative;
}
.nowPlayingText {
2013-12-27 09:18:42 -07:00
display: inline-block;
font-weight: normal;
position: relative;
top: -7px;
margin-left: 3px;
max-width: 200px;
overflow: hidden;
margin-right: 2em;
white-space: nowrap;
2013-12-27 09:18:42 -07:00
}
.nowPlayingDoubleText {
2014-04-13 10:27:13 -07:00
top: -3px;
2013-12-27 09:18:42 -07:00
}
.nowPlayingImage {
2014-01-15 15:19:45 -07:00
display: inline-block;
2013-12-27 09:18:42 -07:00
}
.nowPlayingImage img {
height: 40px;
margin-right: .5em;
vertical-align: bottom;
}
2013-12-27 09:18:42 -07:00
.mediaButton img {
height: 24px;
}
.currentTime {
display: inline-block;
position: relative;
top: -10px;
max-width: 110px;
margin-right: 2em;
2013-12-28 09:58:13 -07:00
font-weight: normal;
2013-12-27 09:18:42 -07:00
}
2014-04-11 20:48:57 -07:00
.nowPlayingBar .currentTime {
2014-04-13 10:27:13 -07:00
top: -15px;
2014-04-11 20:48:57 -07:00
}
2013-12-27 09:18:42 -07:00
.mediaSlider {
position: relative;
top: -10px;
width: 50px;
cursor: pointer;
}
.sliderContainer {
display: inline-block;
2013-12-27 09:18:42 -07:00
}
.positionSliderContainer {
width: 130px;
}
2013-12-27 09:18:42 -07:00
2014-04-13 10:27:13 -07:00
#nowPlayingBar .sliderContainer {
margin-top: 14px;
}
2013-12-28 00:09:05 -07:00
.volumeSliderContainer {
width: 90px;
2013-12-27 09:18:42 -07:00
}
.sliderContainer .ui-slider {
margin: 0 !important;
}
.sliderContainer .ui-slider-track {
margin-left: 15px !important;
2013-12-28 00:09:05 -07:00
}
.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 */
}
2014-01-15 15:19:45 -07:00
@media all and (max-width: 800px) {
#nowPlayingBar .mediaButton {
margin-top: 0;
margin-bottom: 0;
2013-12-27 09:18:42 -07:00
}
#nowPlayingBar .mediaButton:not(#playButton):not(#pauseButton) {
display: none;
}
2013-12-27 09:18:42 -07:00
#nowPlayingBar #playButton, #nowPlayingBar #pauseButton {
float: right;
}
2014-01-15 15:19:45 -07:00
#nowPlayingBar .currentTime, #nowPlayingBar .positionSliderContainer, #nowPlayingBar .volumeSliderContainer, #nowPlayingBar .muteButton, #nowPlayingBar .unmuteButton {
display: none !important;
2014-01-15 15:19:45 -07:00
}
.nowPlayingBar {
padding: 10px 5px 10px 0;
2013-12-27 09:18:42 -07:00
}
}
@media (min-width: 1440px) {
#nowPlayingBar .positionSliderContainer {
width: 300px;
2013-12-27 09:18:42 -07:00
}
}
.mediaPlayerAudioContainer {
position: fixed;
top: 40%;
text-align: center;
left: 0;
right: 0;
2013-12-27 09:18:42 -07:00
}
.mediaPlayerAudioContainerInner {
padding: 1em;
background: #222;
2014-03-22 09:16:43 -07:00
}