From 32849ae920ffbdb9d14557d78f9a109e52f778e0 Mon Sep 17 00:00:00 2001 From: mattwr18 Date: Wed, 11 Sep 2019 12:58:56 +0200 Subject: [PATCH] Fix show less link not working reliably - Add a span wrapping the show more/less links with a pointer cursor and margin... it's now clear it should be clicked and reliable works --- webapp/components/Comment.vue | 29 ++++++++++++++++++++++------- 1 file changed, 22 insertions(+), 7 deletions(-) diff --git a/webapp/components/Comment.vue b/webapp/components/Comment.vue index 3599c491a..6af69d632 100644 --- a/webapp/components/Comment.vue +++ b/webapp/components/Comment.vue @@ -41,15 +41,19 @@ v-show="comment.content !== comment.contentExcerpt && comment.content.length > 180" style="text-align: right; margin-right: 20px; margin-top: -12px;" > - - {{ $t('comment.show.more') }} - + + + {{ $t('comment.show.more') }} + + - +
- - {{ $t('comment.show.less') }} - + + + {{ $t('comment.show.less') }} + +
@@ -149,3 +153,14 @@ export default { }, } +