diff options
| author | Henry Jameson <me@hjkos.com> | 2021-06-12 17:11:49 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2021-06-12 17:11:49 +0300 |
| commit | 24f3681ac157594c94e3b933aa85bc4707758746 (patch) | |
| tree | 74e61e7f329fc91cd1623e696b67a9e84a97e745 /src | |
| parent | 647e4476f90be087dda099c588f2f8acc089c1ee (diff) | |
fix color of reply row, fix overflow in status-popover
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/status/status.scss | 4 | ||||
| -rw-r--r-- | src/components/status/status.vue | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/components/status/status.scss b/src/components/status/status.scss index e68bc62c..3805aa30 100644 --- a/src/components/status/status.scss +++ b/src/components/status/status.scss @@ -4,6 +4,7 @@ $status-margin: 0.75em; .Status { min-width: 0; + white-space: normal; &:hover { --_still-image-img-visibility: visible; @@ -166,6 +167,7 @@ $status-margin: 0.75em; line-height: 160%; max-width: 100%; align-items: stretch; + z-index: 2; } & .reply-to-popover, @@ -211,7 +213,9 @@ $status-margin: 0.75em; padding-right: 0.25em; } + & .mentions-text, & .reply-to-text { + color: var(--faint); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; diff --git a/src/components/status/status.vue b/src/components/status/status.vue index be6458ae..a5f347a6 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -247,7 +247,7 @@ flip="horizontal" /> <span - class="faint-link reply-to-text" + class="reply-to-text" > {{ $t('status.reply_to') }} </span> @@ -281,7 +281,7 @@ @click.prevent="gotoOriginal(status.in_reply_to_status_id)" > <span - class="faint-link mentions-text" + class="mentions-text" > {{ $t('status.mentions') }} </span> |
