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

Fix iOS blurry zoomed image

This commit is contained in:
Dmitry Lyzo 2020-05-07 23:11:19 +03:00
parent 5b40232b7b
commit f516bee147
2 changed files with 59 additions and 1 deletions

View file

@ -124,3 +124,19 @@
.slideSubtitle {
color: #ccc;
}
.swiper-zoom-fakeimg {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: contain;
z-index: 1;
pointer-events: none;
}
.swiper-zoom-fakeimg-hidden {
display: none;
}