Explorar el Código
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.
Matthew Olmsted
hace 7 años
Ninguna cuenta está vinculada al correo electrónico del colaborador
|
@@ -33,12 +33,12 @@
|
33
|
33
|
// image formating of results
|
34
|
34
|
.result-images {
|
35
|
35
|
float: left !important;
|
|
36
|
+ height: 138px;
|
36
|
37
|
}
|
37
|
38
|
|
38
|
39
|
.img-thumbnail {
|
39
|
40
|
margin: 5px;
|
40
|
41
|
max-height: 128px;
|
41
|
|
- min-height: 128px;
|
42
|
42
|
}
|
43
|
43
|
|
44
|
44
|
// video formating of results
|