Fix wide image overflowing from the thumbnail container (#8663)

pull/28217/head
Suguru Hirahara 2022-05-21 14:42:55 +00:00 committed by GitHub
parent c1c3ed6a9e
commit 5082d67dc1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 21 additions and 10 deletions

View File

@ -54,18 +54,29 @@ $timeline-image-border-radius: 8px;
}
}
.mx_MImageBody_thumbnail_container {
border-radius: $timeline-image-border-radius;
.mx_MImageBody {
.mx_MImageBody_thumbnail_container {
border-radius: $timeline-image-border-radius;
// Necessary for the border radius to apply correctly to the placeholder
overflow: hidden;
contain: paint;
// Necessary for the border radius to apply correctly to the placeholder
overflow: hidden;
contain: paint;
min-height: $font-44px;
min-width: $font-44px;
display: flex;
justify-content: center;
align-items: center;
min-height: $font-44px;
min-width: $font-44px;
display: flex;
justify-content: center;
align-items: center;
// Override inline max-width value to avoid overflow
max-width: 100% !important;
.mx_MImageBody_thumbnail {
// Apply the border radius to an image directly.
// This is necessary for images smaller than the placeholder.
border-radius: $timeline-image-border-radius;
}
}
}
.mx_MImageBody_thumbnail {