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

Merge pull request #4101 from thornbill/fix-dashboard-interaction

Fix pointer events not propogating to dashboard pages
This commit is contained in:
Bill Thornton 2022-10-25 13:43:56 -04:00 committed by GitHub
commit d29d54b35b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -305,10 +305,16 @@
right: 0;
bottom: 0;
left: 0;
pointer-events: none;
[dir="rtl"] & {
transition: right ease-in-out 0.3s, padding ease-in-out 0.3s;
}
> .page {
// Fix pointer events being swallowed by the react root when a dashboard page is not rendered by react
pointer-events: all;
}
}
.centerMessage {