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/upnextdialog/upnextdialog.css

74 lines
1.3 KiB
CSS
Raw Normal View History

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;
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 {
opacity: 0;
2018-10-23 01:13:23 +03:00
}
.upNextDialog-countdownText {
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;
color: #fff;
2018-10-23 01:13:23 +03:00
}
@media all and (orientation: landscape) {
2018-10-23 01:13:23 +03:00
.upNextDialog {
flex-direction: row;
2018-10-23 01:13:23 +03:00
}
.upNextDialog-poster {
max-width: initial;
max-height: initial;
width: 10%;
margin-bottom: 0;
2018-10-23 01:13:23 +03:00
}
}
@media all and (max-width: 50em) {
2018-10-23 01:13:23 +03:00
.upNextDialog-overview {
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%;
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;
}