Preserve image aspect ratio in results

Noticed that images are often distorted in the results due to a hard minimum height.  This keeps the 4-per-row image results consistent in row height without distorting wider images.
dependabot/pip/master/sphinx-6.1.3
Matthew Olmsted 6 years ago committed by GitHub
parent bec9906b9e
commit c61e1a8165
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -33,12 +33,12 @@
// image formating of results
.result-images {
float: left !important;
height: 138px;
}
.img-thumbnail {
margin: 5px;
max-height: 128px;
min-height: 128px;
}
// video formating of results

Loading…
Cancel
Save