Give image view panel a loading animation

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Šimon Brandner 2021-07-22 21:25:11 +02:00
parent ce7f387dd6
commit 1b00b304bb
No known key found for this signature in database
GPG Key ID: 55C211A1226CB17D
1 changed files with 11 additions and 0 deletions

View File

@ -38,12 +38,23 @@ $button-gap: 24px;
flex-shrink: 0;
}
@keyframes mx_ImageView_panel_keyframes {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.mx_ImageView_panel {
width: 100%;
height: 68px;
display: flex;
justify-content: space-between;
align-items: center;
animation-name: mx_ImageView_panel_keyframes;
animation-duration: 0.25s;
}
.mx_ImageView_info_wrapper {