Shift thumbnail dislay to use object-fit to preserve aspect-ratio

pull/21833/head
Germain Souquet 2021-07-21 10:03:10 +02:00
parent 794c49c5db
commit a7cd5fc49b
2 changed files with 1 additions and 6 deletions

View File

@ -21,11 +21,7 @@ $timelineImageBorderRadius: 4px;
}
.mx_MImageBody_thumbnail {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
object-fit: contain;
border-radius: $timelineImageBorderRadius;
display: flex;

View File

@ -362,7 +362,6 @@ export default class MImageBody extends React.Component<IBodyProps, IState> {
const thumbnail = (
<div className="mx_MImageBody_thumbnail_container" style={{ maxHeight: maxHeight + "px", maxWidth: maxWidth + "px" }} >
{ /* Calculate aspect ratio, using %padding will size _container correctly */ }
<div style={{ paddingBottom: forcedHeight ? (forcedHeight + "px") : ((100 * infoHeight / infoWidth) + '%') }} />
{ showPlaceholder &&
<div className="mx_MImageBody_thumbnail" style={{
// Constrain width here so that spinner appears central to the loaded thumbnail