Merge pull request #16025 from calixteman/no_display_for_spinner

Avoid a useless animation when the spinner is invisible
This commit is contained in:
calixteman 2023-02-09 11:31:27 +01:00 committed by GitHub
commit 8df06f62bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -166,22 +166,22 @@
width: 100%; width: 100%;
height: 100%; height: 100%;
background: url("images/loading-icon.gif") center no-repeat; background: url("images/loading-icon.gif") center no-repeat;
visibility: hidden; display: none;
/* Using a delay with background-image doesn't work, /* Using a delay with background-image doesn't work,
consequently we use the visibility. */ consequently we use the display. */
transition-property: visibility; transition-property: display;
transition-delay: var(--loading-icon-delay); transition-delay: var(--loading-icon-delay);
z-index: 5; z-index: 5;
contain: strict; contain: strict;
} }
.pdfViewer .page.loading:after { .pdfViewer .page.loading:after {
visibility: visible; display: block;
} }
.pdfViewer .page:not(.loading):after { .pdfViewer .page:not(.loading):after {
transition-property: none; transition-property: none;
visibility: hidden; display: none;
} }
.pdfViewer.enablePermissions .textLayer span { .pdfViewer.enablePermissions .textLayer span {