このコミットが含まれているのは:
Roger Braun 2016-11-02 18:38:30 +01:00
コミット 72877b5c06
2個のファイルの変更16行の追加1行の削除

ファイルの表示

@ -4,7 +4,7 @@
<img :src="nsfwImage"></img>
</a>
<a v-if="type === 'image' && !nsfw" :href="attachment.url" target="_blank"><img :src="attachment.url"></img></a>
<a class="image-attachment" v-if="type === 'image' && !nsfw" :href="attachment.url" target="_blank"><img :src="attachment.url"></img></a>
<video v-if="type === 'webm' && !nsfw" :src="attachment.url" controls></video>
@ -29,5 +29,16 @@
video {
height: 100%;
}
a.image-attachment {
display: flex;
flex: 1;
img {
width: 100%;
height: 100%;
flex: 1;
}
}
}
</style>

ファイルの表示

@ -60,4 +60,8 @@
word-break: break-all;
}
}
.status-actions {
padding-top: 5px;
}
</style>