Merge pull request #16025 from calixteman/no_display_for_spinner
Avoid a useless animation when the spinner is invisible
This commit is contained in:
commit
8df06f62bc
@ -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 {
|
||||||
|
Loading…
Reference in New Issue
Block a user