MOBILE-3814 loading: Display contents on loading content fixes iframe

main
Pau Ferrer Ocaña 2022-03-16 15:52:09 +01:00
parent 7dc81feb92
commit 6363a19b11
1 changed files with 9 additions and 4 deletions

View File

@ -8,6 +8,7 @@
--loading-inline-margin: 0px;
--loading-inline-min-height: 28px;
--internal-loading-inline-min-height: var(--loading-inline-min-height);
--content-display: contents;
position: static;
color: var(--loading-text-color);
@ -45,6 +46,7 @@
.core-loading-content {
@include core-transition(opacity, 200ms);
display: var(--content-display);
}
.core-loading-message {
@ -75,10 +77,13 @@
height: 100%;
}
&.has-spacer .core-loading-content {
min-height: 100%;
display: flex;
flex-direction: column;
&.has-spacer {
--content-display: flex;
.core-loading-content {
min-height: 100%;
flex-direction: column;
}
}
&.list-item-limited-width .core-loading-content {