From: Eugen Rochko Date: Sun, 26 Jan 2020 21:26:50 +0000 (+0100) Subject: Fix link colors in announcements (#12965) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=2f8c3c17ee26dc21ce94959b0ea18984e7bc5560;p=mastodon.git Fix link colors in announcements (#12965) --- diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index fe111db96..563ac7e5e 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -886,7 +886,7 @@ } a { - color: $highlight-text-color; + color: $secondary-text-color; text-decoration: none; &:hover { @@ -902,6 +902,10 @@ } } } + + &.unhandled-link { + color: lighten($ui-highlight-color, 8%); + } } }