Backport pull request #6510 from jellyfin-web/release-10.10.z

Fix re-focusing on pause button when displaying OSD

Original-merge: c3c598e1f409b51e5b44cec26bdee6af765d20ef

Merged-by: thornbill <thornbill@users.noreply.github.com>

Backported-by: thornbill <thornbill@users.noreply.github.com>
This commit is contained in:
dmitrylyzo
2025-04-02 01:13:23 -04:00
committed by thornbill
parent bf30d76ac0
commit ea8636433d
3 changed files with 25 additions and 19 deletions
+12 -4
View File
@@ -1,10 +1,17 @@
.skip-button-container {
position: fixed;
left: 0;
right: 0;
bottom: 18%;
pointer-events: none;
z-index: 10000;
}
.skip-button {
display: flex;
align-items: center;
position: fixed;
bottom: 18%;
right: 16%;
z-index: 10000;
margin-left: auto;
margin-right: 16%;
padding: 12px 20px;
color: black;
border: none;
@@ -15,6 +22,7 @@
gap: 3px;
box-shadow: 7px 6px 15px -14px rgba(0, 0, 0, 0.65);
cursor: pointer;
pointer-events: auto;
}
@media (orientation: landscape) and (max-height: 500px) {