0
0
Fork 0

Fix missing avatar fallback interfering with transparency in web UI (#32270)

This commit is contained in:
Eugen Rochko 2024-10-07 11:35:42 +02:00 committed by GitHub
parent a59160cf01
commit 1f5bd571cd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 31 additions and 9 deletions

View file

@ -2077,7 +2077,6 @@ body > [data-popper-placement] {
display: block;
position: relative;
border-radius: var(--avatar-border-radius);
background-color: var(--surface-background-color);
img {
width: 100%;
@ -2087,7 +2086,11 @@ body > [data-popper-placement] {
display: inline-block; // to not show broken images
}
&-inline {
&--loading {
background-color: var(--surface-background-color);
}
&--inline {
display: inline-block;
vertical-align: middle;
margin-inline-end: 5px;