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

Merge pull request #463 from dhartung/fix-blocking-subtitles-clean

Changed to non-blocking subtitles
This commit is contained in:
Joshua M. Boniface 2019-09-23 20:22:58 -04:00 committed by GitHub
commit 0e9d890409
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 64 additions and 56 deletions

View file

@ -214,6 +214,19 @@
align-items: baseline
}
.osdMediaStatus {
margin-left: auto;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
.osdMediaStatus .animate {
-webkit-animation:spin 4s linear infinite;
-moz-animation:spin 4s linear infinite;
animation:spin 4s linear infinite;
}
.pageContainer {
top: 0;
position: fixed
@ -236,7 +249,8 @@
}
@media all and (max-width:43em) {
.videoOsdBottom .volumeButtons {
.videoOsdBottom .volumeButtons,
.osdMediaStatus span {
display: none !important
}
}