diff options
| author | Shpuld Shpuldson <shp@cock.li> | 2020-06-30 15:04:16 +0300 |
|---|---|---|
| committer | Shpuld Shpuldson <shp@cock.li> | 2020-06-30 15:04:16 +0300 |
| commit | 6529f9fa34c5e4e4786f76f63068d70c771d868e (patch) | |
| tree | 95af5ed72ceb34f540d16e40429857af528735c0 /src/components/status/status.vue | |
| parent | 82944f862d07db46cf342f2ee75b2ab6ddccc4fc (diff) | |
add strikethrough when parent isn't visible
Diffstat (limited to 'src/components/status/status.vue')
| -rw-r--r-- | src/components/status/status.vue | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 7ec29b28..c537358b 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -208,7 +208,12 @@ @click.prevent="gotoOriginal(status.in_reply_to_status_id)" > <i class="button-icon icon-reply" /> - <span class="faint-link reply-to-text">{{ $t('status.reply_to') }}</span> + <span + class="faint-link reply-to-text" + :class="{ 'strikethrough': !status.parent_visible }" + > + {{ $t('status.reply_to') }} + </span> </a> </StatusPopover> <span @@ -526,6 +531,10 @@ $status-margin: 0.75em; margin: 0 0.4em 0 0.2em; } + .strikethrough { + text-decoration: line-through; + } + .replies-separator { margin-left: 0.4em; } |
