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

192 lines
3.3 KiB
CSS
Raw Normal View History

2018-10-23 01:13:23 +03:00
.nowPlayingInfoContainer {
display: flex;
flex-direction: row
}
2019-11-20 18:02:32 +01:00
.navigationSection {
text-align: center
}
2020-01-06 00:34:43 +01:00
.btnArrowUp{
2020-01-10 18:02:08 +01:00
border-radius: 40% 40% 10% 10%;
2020-01-06 00:34:43 +01:00
}
.btnArrowLeft{
2020-01-10 18:02:08 +01:00
border-radius: 40% 10% 10% 40%;
2020-01-06 00:34:43 +01:00
}
.btnArrowRight{
2020-01-10 18:02:08 +01:00
border-radius: 10% 40% 40% 10%;
2020-01-06 00:34:43 +01:00
}
.btnArrowDown{
2020-01-10 18:02:08 +01:00
border-radius: 10% 10% 40% 40%;
2020-01-06 00:34:43 +01:00
}
.btnOk{
2020-01-10 18:02:08 +01:00
border-radius: 10%;
2020-01-06 00:34:43 +01:00
}
2018-10-23 01:13:23 +03:00
.nowPlayingPageTitle {
margin: 0 0 .5em .5em
}
.nowPlayingPositionSliderContainer {
margin: .7em 0 .7em 1em
}
.nowPlayingInfoButtons {
display: flex;
align-items: center;
flex-wrap: wrap
}
.nowPlayingInfoControls,
.nowPlayingTime {
2020-01-02 13:36:44 +01:00
display: flex;
2018-10-23 01:13:23 +03:00
}
.nowPlayingPageImageContainer {
width: 20%;
margin-right: .25em;
position: relative;
flex-shrink: 0
}
@media all and (min-width:50em) {
.nowPlayingPageImageContainer {
width: 16%
}
}
.nowPlayingInfoControls {
flex-grow: 1;
display: flex;
flex-direction: column;
justify-content: center
}
.nowPlayingPageImage {
bottom: 0;
left: 0;
right: 0;
width: 100%;
box-shadow: 0 0 1.9vh #000;
border: .1em solid #222;
user-drag: none;
user-select: none;
}
@media all and (orientation:portrait) and (max-width:50em) {
.nowPlayingInfoContainer {
flex-direction: column !important;
align-items: center
}
.nowPlayingPageTitle {
text-align: center;
margin: .5em 0 .75em
}
.nowPlayingPositionSliderContainer {
margin: .7em 1em
}
.nowPlayingInfoButtons {
justify-content: center
}
.nowPlayingPageImageContainer {
width: auto;
margin-right: 0
}
.nowPlayingInfoControls {
margin-top: 1em;
max-width: 100%
}
.nowPlayingPageImage {
width: auto;
height: 36vh
}
}
@media all and (orientation:portrait) and (max-width:40em) {
.nowPlayingPageImage {
height: 30vh
}
}
.nowPlayingTime {
display: flex;
align-items: center;
margin: 0 1em
}
.nowPlayingSecondaryButtons {
display: flex;
align-items: center;
flex-wrap: wrap;
justify-content: center
}
@media all and (min-width:50em) {
.nowPlayingSecondaryButtons {
flex-grow: 1;
justify-content: flex-end
}
}
@media all and (min-width:80em) {
.nowPlayingPageImageContainer {
margin-right: .75em
}
}
.nowPlayingNavButtonContainer {
width: 30em
}
.smallBackdropPosterItem .cardOverlayInner>div {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden
}
.playlistIndexIndicatorImage {
background-size: initial !important;
2020-01-06 21:28:57 +09:00
background-image: url(assets/img/equalizer.gif) !important;
2018-10-23 01:13:23 +03:00
}
.hideVideoButtons .videoButton {
display: none
}
.nowPlayingVolumeSliderContainer {
width: 9em
}
@media all and (max-width:50em) {
.nowPlayingInfoButtons .nowPlayingPageUserDataButtons {
display: none !important
}
2020-01-06 00:34:43 +01:00
.navigationSection .collapseContent i{
font-size: 4em;
}
}
@media all and (max-width:47em) {
.nowPlayingInfoButtons .repeatToggleButton {
display: none !important
}
2018-10-23 01:13:23 +03:00
}
@media all and (max-width:34em) {
.nowPlayingInfoButtons .btnNowPlayingFastForward,
.nowPlayingInfoButtons .btnNowPlayingRewind,
.nowPlayingInfoButtons .playlist .listItemMediaInfo {
2018-10-23 01:13:23 +03:00
display: none !important
}
}