logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: 72877b5c06dd46f7334029664175fabd4e7e16ab
parent: 79805584613bd3d3ec5fba6481fc1ba02986a1a8
Author: Roger Braun <roger@rogerbraun.net>
Date:   Wed,  2 Nov 2016 18:38:30 +0100

CSS fixes.

Diffstat:

Msrc/components/attachment/attachment.vue13++++++++++++-
Msrc/components/status/status.vue4++++
2 files changed, 16 insertions(+), 1 deletion(-)

diff --git a/src/components/attachment/attachment.vue b/src/components/attachment/attachment.vue @@ -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> diff --git a/src/components/status/status.vue b/src/components/status/status.vue @@ -60,4 +60,8 @@ word-break: break-all; } } + + .status-actions { + padding-top: 5px; + } </style>