Image attachments keep aspect ratio

This commit is contained in:
ChubbyNinja 2016-02-26 14:09:37 +00:00
parent 129638117f
commit ab4bc653ab
2 changed files with 52 additions and 2 deletions

View file

@ -413,8 +413,33 @@
}
> .bottom.segment {
background: #f3f4f5;
.ui.images::after {
clear: both;
content: ' ';
display: block;
}
a {
display: block;
float: left;
margin: 5px;
padding: 5px;
height: 150px;
border: solid 1px #eee;
border-radius: 3px;
max-width: 150px;
background-color: #fff;
&:before {
content:' ';
display: inline-block;
height: 100%;
vertical-align: middle;
}
}
.ui.image {
max-height: 150px;
max-height: 100%;
width: auto;
margin: 0;
vertical-align: middle;
}
}
}