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

Merge pull request #6324 from carsso/fix-spinner-direction

Fix spinner direction (should be clockwise) in @keyframes spin
This commit is contained in:
Bill Thornton 2025-01-03 13:56:26 -05:00 committed by GitHub
commit 74a209ed63
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -172,14 +172,8 @@
margin-left: auto; margin-left: auto;
} }
@keyframes spin {
100% {
transform: rotate(360deg);
}
}
.osdMediaStatus .animate { .osdMediaStatus .animate {
animation: spin 4s linear infinite; animation: spin-clockwise 4s linear infinite;
} }
@media all and (max-width: 30em) { @media all and (max-width: 30em) {
@ -236,7 +230,7 @@
.primary-icon.spin { .primary-icon.spin {
font-size: 76px !important; font-size: 76px !important;
animation: spin 2s linear infinite; animation: spin-counterclockwise 2s linear infinite;
} }
.secondary-icon { .secondary-icon {
@ -326,8 +320,14 @@
} }
} }
@keyframes spin { @keyframes spin-counterclockwise {
100% { 100% {
transform: rotate(-360deg); transform: rotate(-360deg);
} }
} }
@keyframes spin-clockwise {
100% {
transform: rotate(360deg);
}
}