2019-01-23 11:33:34 +00:00
|
|
|
.upNextDialog {
|
2018-10-23 01:13:23 +03:00
|
|
|
position: fixed;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
padding: 1%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
will-change: transform, opacity;
|
2019-01-10 15:39:37 +03:00
|
|
|
transition: opacity 300ms ease-out;
|
2019-05-20 00:27:09 -07:00
|
|
|
background-color: rgba(0, 0, 0, 0.7);
|
2018-10-23 01:13:23 +03:00
|
|
|
color: #fff;
|
|
|
|
user-select: none;
|
2020-01-09 19:35:19 +01:00
|
|
|
-webkit-touch-callout: none;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.upNextDialog-hidden {
|
2019-01-10 15:39:37 +03:00
|
|
|
opacity: 0;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.upNextDialog-countdownText {
|
2019-01-10 15:39:37 +03:00
|
|
|
font-weight: 500;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.upNextDialog-poster {
|
|
|
|
max-width: 40%;
|
|
|
|
max-height: 15%;
|
|
|
|
position: relative;
|
|
|
|
margin-right: 1em;
|
|
|
|
flex-shrink: 0;
|
2020-01-19 15:00:37 +01:00
|
|
|
margin-bottom: 0.5em;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.upNextDialog-button {
|
|
|
|
background: #404040;
|
2019-01-10 15:39:37 +03:00
|
|
|
color: #fff;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
2019-01-10 15:39:37 +03:00
|
|
|
@media all and (orientation: landscape) {
|
2018-10-23 01:13:23 +03:00
|
|
|
.upNextDialog {
|
2019-01-10 15:39:37 +03:00
|
|
|
flex-direction: row;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.upNextDialog-poster {
|
|
|
|
max-width: initial;
|
|
|
|
max-height: initial;
|
|
|
|
width: 10%;
|
2019-01-10 15:39:37 +03:00
|
|
|
margin-bottom: 0;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-10 15:39:37 +03:00
|
|
|
@media all and (max-width: 50em) {
|
2018-10-23 01:13:23 +03:00
|
|
|
.upNextDialog-overview {
|
2019-01-10 15:39:37 +03:00
|
|
|
display: none !important;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.upNextDialog-poster-img {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
height: auto;
|
|
|
|
width: 100%;
|
2019-01-10 15:39:37 +03:00
|
|
|
box-shadow: 0 0.0725em 0.29em 0 rgba(0, 0, 0, 0.37);
|
2020-05-08 11:19:01 +02:00
|
|
|
user-drag: none;
|
2018-10-23 01:13:23 +03:00
|
|
|
border: 0;
|
|
|
|
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;
|
2019-01-10 15:39:37 +03:00
|
|
|
}
|