Archived
1
0

* add thumnail class to post thumbnails

* fix typo in css
This commit is contained in:
Jeff Becker 2016-02-15 15:51:17 -05:00
parent 539033ec6d
commit a9ac1207c0
No known key found for this signature in database
GPG Key ID: AB950234D6EA286B
2 changed files with 4 additions and 5 deletions

View File

@ -289,10 +289,9 @@ figure {
float: left; float: left;
margin: 1ex; margin: 1ex;
} }
figure img { img.thumbnail {
max-width:256px; max-width: 350px;
max-height:128px; max-height: 350px;
max-width:100%;
} }
.thread { .thread {

View File

@ -21,7 +21,7 @@
{{#Attachments}} {{#Attachments}}
<figure> <figure>
<figcaption> <figcaption>
<a href="{{Source}}" title="{{Filename}}" target="_blank"><img src="{{Thumbnail}}" alt="{{Filename}}" /></a> <a href="{{Source}}" title="{{Filename}}" target="_blank"><img src="{{Thumbnail}}" alt="{{Filename}}" class="thumbnail"/></a>
</figcaption> </figcaption>
</figure> </figure>
{{/Attachments}} {{/Attachments}}