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

Fix up next dialog on Chrome

This commit is contained in:
MrTimscampi 2020-08-22 14:07:54 +02:00
parent e38fa15e4d
commit 1812df57ad
2 changed files with 11 additions and 58 deletions

View file

@ -1,25 +1,10 @@
.upNextContainer { .upNextContainer {
box-sizing: border-box;
position: fixed; position: fixed;
top: 0; right: 0;
bottom: 0; bottom: 0;
left: 50%;
transform: translateX(-50%);
padding: 1em;
display: flex;
flex-grow: 1;
width: calc(100vh * (16 / 9));
height: 100vh;
justify-content: end;
align-items: flex-end;
}
.upNextDialog-container {
border-radius: 5px;
width: 30em; width: 30em;
height: 11em; padding: 1em;
left: auto; margin: 0 2em 2em 0;
padding: 1%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
will-change: transform, opacity; will-change: transform, opacity;
@ -38,18 +23,18 @@
font-weight: 500; font-weight: 500;
} }
.upNextDialog-poster { .upNextDialog-nextVideoText,
display: none; .upNextDialog-title {
max-width: 40%; width: 25.5em;
max-height: 15%; white-space: nowrap;
position: relative; overflow: hidden;
margin-right: 1em; text-overflow: ellipsis;
flex-shrink: 0;
margin-bottom: 0.5em;
} }
.upNextDialog-buttons { .upNextDialog-buttons {
width: 29.75em;
justify-content: end; justify-content: end;
align-content: flex-end;
} }
.upNextDialog-button { .upNextDialog-button {
@ -61,34 +46,4 @@
.upNextDialog { .upNextDialog {
flex-direction: row; flex-direction: row;
} }
.upNextDialog-poster {
max-width: initial;
max-height: initial;
width: 30%;
margin-bottom: 0;
}
}
@media all and (max-width: 50em) {
.upNextDialog-overview {
display: none !important;
}
}
.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);
user-drag: none;
border: 0;
user-select: none;
-moz-user-select: none;
-webkit-user-drag: none;
-webkit-user-select: none;
-ms-user-select: none;
} }

View file

@ -17,7 +17,6 @@ import 'flexStyles';
function getHtml() { function getHtml() {
let html = ''; let html = '';
html += '<div class="upNextDialog-container">';
html += '<div class="flex flex-direction-column flex-grow">'; html += '<div class="flex flex-direction-column flex-grow">';
html += '<h2 class="upNextDialog-nextVideoText" style="margin:.25em 0;">&nbsp;</h2>'; html += '<h2 class="upNextDialog-nextVideoText" style="margin:.25em 0;">&nbsp;</h2>';
@ -42,7 +41,6 @@ import 'flexStyles';
// main // main
html += '</div>'; html += '</div>';
html += '</div>';
return html; return html;
} }