1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/dashboard-ui/css/nowplaying.css

144 lines
2.5 KiB
CSS
Raw Normal View History

2014-05-12 14:04:25 -04:00
.nowPlayingPage .btnCommand, .nowPlayingPage .btnPlayStateCommand {
2015-06-13 14:04:00 -04:00
text-align: center;
font-size: 24px;
padding: 14px 0;
margin: 3px 1px;
width: 70px;
background: #383838;
border-radius: 5px;
2014-05-12 14:04:25 -04:00
}
.nowPlayingPageImage img {
2015-06-13 14:04:00 -04:00
max-height: 220px;
max-width: 220px;
}
.nowPlayingTimeContainer {
max-width: 280px;
margin: 1.5em auto;
2014-05-12 14:04:25 -04:00
}
.nowPlayingPage .positionSliderContainer {
2015-06-13 14:04:00 -04:00
width: 100%;
min-width: 200px;
2014-05-12 14:04:25 -04:00
}
2015-06-13 14:04:00 -04:00
.nowPlayingPage .positionSliderContainer .ui-slider-track {
margin: 0 0 !important;
}
.nowPlayingPage .positionSliderContainer .ui-slider {
height: 20px;
}
2014-05-12 14:04:25 -04:00
.nowPlayingNavButtonContainer {
width: 400px;
}
.chapterMenuOverlay {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
2015-02-19 19:34:05 -05:00
z-index: 999;
2014-05-12 14:04:25 -04:00
}
.chapterMenu {
position: fixed;
top: 30%;
height: 180px;
left: 0;
right: 0;
background-color: rgba(0,0,0,.9);
2015-02-19 19:34:05 -05:00
z-index: 1000;
2014-05-12 14:04:25 -04:00
}
.chapterMenuInner {
padding: 1em 0;
text-align: center;
white-space: nowrap;
}
2015-05-07 00:14:35 -04:00
.smallBackdropPosterItem .cardOverlayInner > div {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
2014-05-12 14:04:25 -04:00
.chapterPosterItem {
2015-06-13 14:04:00 -04:00
width: 240px !important;
2014-05-12 14:04:25 -04:00
cursor: pointer;
}
.chapterPosterItem .posterItemImage {
2015-06-13 14:04:00 -04:00
height: 135px !important;
2014-05-12 14:04:25 -04:00
}
.currentChapter {
-moz-box-shadow: 0 0 12px 7px #cc3333;
-webkit-box-shadow: 0 0 12px 7px #cc3333;
box-shadow: 0 0 12px 7px #cc3333;
}
2015-06-13 14:04:00 -04:00
@media all and (max-width: 700px) {
2014-05-12 14:04:25 -04:00
.nowPlayingPageImage img {
max-height: 160px;
2015-06-13 14:04:00 -04:00
max-width: 220px;
2014-05-12 14:04:25 -04:00
}
2015-06-13 14:04:00 -04:00
}
2014-05-12 14:04:25 -04:00
2015-06-13 14:04:00 -04:00
@media all and (max-width: 600px) {
.nowPlayingPageImage img {
max-height: 160px;
max-width: 220px;
2014-05-12 14:04:25 -04:00
}
}
2015-06-10 00:01:14 -04:00
@media all and (max-height: 600px) {
2015-06-13 14:04:00 -04:00
.nowPlayingPage .btnCommand, .nowPlayingPage .btnPlayStateCommand {
margin: 2px 0;
}
2015-06-10 00:01:14 -04:00
.nowPlayingPageImage img {
max-height: 160px;
2015-06-13 14:04:00 -04:00
max-width: 220px;
2015-06-10 00:01:14 -04:00
}
}
2015-06-13 14:04:00 -04:00
@media all and (max-height: 500px) {
2014-05-12 14:04:25 -04:00
2015-06-13 14:04:00 -04:00
.nowPlayingPageImage img {
max-height: 120px;
2014-05-12 14:04:25 -04:00
}
}
@media all and (max-width: 400px) {
2015-06-13 14:04:00 -04:00
.nowPlayingNavButtonContainer {
width: 300px;
2014-05-12 14:04:25 -04:00
}
2015-06-13 14:04:00 -04:00
}
.nowPlayingPageTitle {
margin: 1em 0;
}
2014-05-12 14:04:25 -04:00
2015-06-13 14:04:00 -04:00
.nowPlayingInfoButtons {
padding-top: 1em;
}
@media (orientation: landscape) {
.nowPlayingInfoMetadata, .nowPlayingInfoButtons {
display: inline-block;
vertical-align: top;
2014-05-12 14:04:25 -04:00
}
2015-06-13 14:04:00 -04:00
.nowPlayingInfoButtons {
margin-left: 3em;
2014-05-12 14:04:25 -04:00
}
}