From 690f5a1ee7490a42096ae35fd4c903862726f396 Mon Sep 17 00:00:00 2001 From: shpuld Date: Thu, 28 Feb 2019 18:55:30 +0200 Subject: [PATCH] make timestamp gray, fix flexing in top-row --- src/App.scss | 10 ++++ src/components/status/status.js | 2 +- src/components/status/status.vue | 85 ++++++++++++++++---------------- 3 files changed, 53 insertions(+), 44 deletions(-) diff --git a/src/App.scss b/src/App.scss index d5f57e15..a0d1a804 100644 --- a/src/App.scss +++ b/src/App.scss @@ -628,6 +628,16 @@ nav { color: $fallback--faint; color: var(--faint, $fallback--faint); } + +.faint-link { + color: $fallback--faint; + color: var(--faint, $fallback--faint); + + &:hover { + text-decoration: underline; + } +} + @media all and (min-width: 800px) { .logo { opacity: 1 !important; diff --git a/src/components/status/status.js b/src/components/status/status.js index 0273a5be..9fbd33e7 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -23,7 +23,7 @@ const Status = { 'highlight', 'compact', 'replies', - 'noReplyLinks', + 'isPreview', 'noHeading', 'inlineExpanded' ], diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 0a136cf7..7de96d5d 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -1,6 +1,6 @@