ea8636433d
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>
41 lines
724 B
SCSS
41 lines
724 B
SCSS
.skip-button-container {
|
|
position: fixed;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 18%;
|
|
pointer-events: none;
|
|
z-index: 10000;
|
|
}
|
|
|
|
.skip-button {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-left: auto;
|
|
margin-right: 16%;
|
|
padding: 12px 20px;
|
|
color: black;
|
|
border: none;
|
|
border-radius: 100px;
|
|
font-weight: bold;
|
|
font-size: 1.2em;
|
|
transition: opacity 200ms ease-out;
|
|
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) {
|
|
.skip-button {
|
|
bottom: 27%;
|
|
}
|
|
}
|
|
|
|
.no-transition {
|
|
transition: none;
|
|
}
|
|
|
|
.skip-button-hidden {
|
|
opacity: 0;
|
|
}
|