fix(web): lecteur mobile — couvrir les pages CBZ verticales non chargées par un fallback de la taille de la page (même cellule grid, fond papier stable) pour éliminer les flashs noirs pendant le scroll vertical (bug #42)

This commit is contained in:
Git Agent
2026-08-26 13:46:17 +02:00
parent 6b164d4bde
commit 5fc70d39b7
2 changed files with 24 additions and 0 deletions

View File

@ -1114,6 +1114,21 @@ main.app-main-reader .reader-page {
padding: 0 12px;
}
.comic-page-frame-vertical > img,
.comic-page-frame-vertical > .reader-fallback {
grid-area: 1 / 1;
}
.comic-page-frame-vertical > .reader-fallback {
width: 100%;
min-height: inherit;
box-sizing: border-box;
border: 1px solid var(--line);
border-radius: var(--radius);
background: #f7f0df;
color: #17110d;
}
.pdf-page-frame canvas,
.cbz-reader img {
display: block;