diff options
Diffstat (limited to 'src/web')
| -rw-r--r-- | src/web/app/ch/tags/channel.tag | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/web/app/ch/tags/channel.tag b/src/web/app/ch/tags/channel.tag index 6ffa6bccf8..8657652fb0 100644 --- a/src/web/app/ch/tags/channel.tag +++ b/src/web/app/ch/tags/channel.tag @@ -100,7 +100,9 @@ { post.text } <div class="media" if={ post.media }> <virtual each={ file in post.media }> - <img src={ file.url + '?thumbnail&size=512' } alt={ file.name } title={ file.name }/> + <a href={ file.url } target="_blank"> + <img src={ file.url + '?thumbnail&size=512' } alt={ file.name } title={ file.name }/> + </a> </virtual> </div> </div> @@ -136,6 +138,14 @@ > div padding 0 0 1em 2em + > .media + > a + display block + + > img + max-width 100% + vertical-align bottom + </style> <script> this.post = this.opts.post; |