mirror of
https://git.freesoftwareextremist.com/bloat
synced 2024-12-22 09:10:42 +00:00
Don't force auto height/width on "inline" images
This fixes the size of mikuphile emojis.
This commit is contained in:
parent
51d6ff26fe
commit
14d5eaf6e9
1 changed files with 10 additions and 2 deletions
|
@ -77,14 +77,22 @@ body,
|
|||
margin: 0px;
|
||||
}
|
||||
|
||||
.status-content img,
|
||||
.status-image,
|
||||
.status-video {
|
||||
height: auto;
|
||||
width: auto;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
.status-content img {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.status-content img,
|
||||
.status-image,
|
||||
.status-video {
|
||||
max-height: 240px;
|
||||
max-width: 280px;
|
||||
vertical-align: bottom;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue