mirror of https://github.com/vector-im/riot-web
Give image view panel a loading animation
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>pull/21833/head
parent
ce7f387dd6
commit
1b00b304bb
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue