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

239 lines
4.9 KiB
CSS
Raw Normal View History

2018-10-23 01:13:23 +03:00
.nowPlayingInfoContainer {
2020-01-09 19:35:19 +01:00
display: -webkit-box;
display: -webkit-flex;
2018-10-23 01:13:23 +03:00
display: flex;
2020-01-09 19:35:19 +01:00
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
flex-direction: row;
2018-10-23 01:13:23 +03:00
}
2019-11-20 18:02:32 +01:00
.navigationSection {
text-align: center;
2019-11-20 18:02:32 +01:00
}
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 {
2020-01-19 15:00:37 +01:00
margin: 0 0 0.5em 0.5em;
2018-10-23 01:13:23 +03:00
}
.nowPlayingPositionSliderContainer {
2020-01-19 15:00:37 +01:00
margin: 0.7em 0 0.7em 1em;
2018-10-23 01:13:23 +03:00
}
.nowPlayingInfoButtons {
2020-01-09 19:35:19 +01:00
display: -webkit-box;
display: -webkit-flex;
2018-10-23 01:13:23 +03:00
display: flex;
2020-01-09 19:35:19 +01:00
-webkit-box-align: center;
-webkit-align-items: center;
2018-10-23 01:13:23 +03:00
align-items: center;
2020-01-09 19:35:19 +01:00
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
2018-10-23 01:13:23 +03:00
}
.nowPlayingInfoControls,
.nowPlayingTime {
display: flex;
2020-01-09 19:35:19 +01:00
display: -webkit-box;
display: -webkit-flex
2018-10-23 01:13:23 +03:00
}
.nowPlayingPageImageContainer {
width: 20%;
2020-01-19 15:00:37 +01:00
margin-right: 0.25em;
2018-10-23 01:13:23 +03:00
position: relative;
2020-01-09 19:35:19 +01:00
-webkit-flex-shrink: 0;
flex-shrink: 0;
2018-10-23 01:13:23 +03:00
}
@media all and (min-width: 50em) {
2018-10-23 01:13:23 +03:00
.nowPlayingPageImageContainer {
width: 16%;
2018-10-23 01:13:23 +03:00
}
}
.nowPlayingInfoControls {
2020-01-09 19:35:19 +01:00
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
2018-10-23 01:13:23 +03:00
flex-grow: 1;
display: flex;
2020-01-09 19:35:19 +01:00
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
2018-10-23 01:13:23 +03:00
flex-direction: column;
2020-01-09 19:35:19 +01:00
-webkit-box-pack: center;
-webkit-justify-content: center;
justify-content: center;
2018-10-23 01:13:23 +03:00
}
.nowPlayingPageImage {
bottom: 0;
left: 0;
right: 0;
width: 100%;
2020-01-09 19:35:19 +01:00
-webkit-box-shadow: 0 0 1.9vh #000;
2018-10-23 01:13:23 +03:00
box-shadow: 0 0 1.9vh #000;
2020-01-19 15:00:37 +01:00
border: 0.1em solid #222;
2018-10-23 01:13:23 +03:00
user-drag: none;
user-select: none;
2020-01-09 19:35:19 +01:00
-moz-user-select: none;
-webkit-user-drag: none;
-webkit-user-select: none;
-ms-user-select: none
2018-10-23 01:13:23 +03:00
}
@media all and (orientation: portrait) and (max-width: 50em) {
2018-10-23 01:13:23 +03:00
.nowPlayingInfoContainer {
2020-01-09 19:35:19 +01:00
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-webkit-flex-direction: column !important;
2018-10-23 01:13:23 +03:00
flex-direction: column !important;
2020-01-09 19:35:19 +01:00
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center;
2018-10-23 01:13:23 +03:00
}
.nowPlayingPageTitle {
text-align: center;
2020-01-19 15:00:37 +01:00
margin: 0.5em 0 0.75em;
2018-10-23 01:13:23 +03:00
}
.nowPlayingPositionSliderContainer {
2020-01-19 15:00:37 +01:00
margin: 0.7em 1em;
2018-10-23 01:13:23 +03:00
}
.nowPlayingInfoButtons {
2020-01-09 19:35:19 +01:00
-webkit-box-pack: center;
-webkit-justify-content: center;
justify-content: center;
2018-10-23 01:13:23 +03:00
}
.nowPlayingPageImageContainer {
width: auto;
margin-right: 0;
2018-10-23 01:13:23 +03:00
}
.nowPlayingInfoControls {
margin-top: 1em;
max-width: 100%;
2018-10-23 01:13:23 +03:00
}
.nowPlayingPageImage {
width: auto;
height: 36vh;
2018-10-23 01:13:23 +03:00
}
}
@media all and (orientation: portrait) and (max-width: 40em) {
2018-10-23 01:13:23 +03:00
.nowPlayingPageImage {
height: 30vh;
2018-10-23 01:13:23 +03:00
}
}
.nowPlayingTime {
display: flex;
2020-01-09 19:35:19 +01:00
-webkit-box-align: center;
-webkit-align-items: center;
2018-10-23 01:13:23 +03:00
align-items: center;
margin: 0 1em;
2018-10-23 01:13:23 +03:00
}
.nowPlayingSecondaryButtons {
2020-01-09 19:35:19 +01:00
display: -webkit-box;
display: -webkit-flex;
2018-10-23 01:13:23 +03:00
display: flex;
2020-01-09 19:35:19 +01:00
-webkit-box-align: center;
-webkit-align-items: center;
2018-10-23 01:13:23 +03:00
align-items: center;
2020-01-09 19:35:19 +01:00
-webkit-flex-wrap: wrap;
2018-10-23 01:13:23 +03:00
flex-wrap: wrap;
2020-01-09 19:35:19 +01:00
-webkit-box-pack: center;
-webkit-justify-content: center;
justify-content: center;
2018-10-23 01:13:23 +03:00
}
@media all and (min-width: 50em) {
2018-10-23 01:13:23 +03:00
.nowPlayingSecondaryButtons {
2020-01-09 19:35:19 +01:00
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
2018-10-23 01:13:23 +03:00
flex-grow: 1;
2020-01-09 19:35:19 +01:00
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
justify-content: flex-end;
2018-10-23 01:13:23 +03:00
}
}
@media all and (min-width: 80em) {
2018-10-23 01:13:23 +03:00
.nowPlayingPageImageContainer {
2020-01-19 15:00:37 +01:00
margin-right: 0.75em;
2018-10-23 01:13:23 +03:00
}
}
.nowPlayingNavButtonContainer {
width: 30em;
2018-10-23 01:13:23 +03:00
}
.smallBackdropPosterItem .cardOverlayInner > div {
2018-10-23 01:13:23 +03:00
white-space: nowrap;
2020-01-09 19:35:19 +01:00
-o-text-overflow: ellipsis;
2018-10-23 01:13:23 +03:00
text-overflow: ellipsis;
overflow: hidden;
2018-10-23 01:13:23 +03:00
}
.playlistIndexIndicatorImage {
2020-01-09 19:35:19 +01:00
-webkit-background-size: initial initial !important;
2018-10-23 01:13:23 +03:00
background-size: initial !important;
2020-01-24 02:50:59 +09:00
background-image: url(../../assets/img/equalizer.gif) !important;
2018-10-23 01:13:23 +03:00
}
.hideVideoButtons .videoButton {
display: none;
2018-10-23 01:13:23 +03:00
}
.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 {
display: none !important;
2018-10-23 01:13:23 +03:00
}
}