diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2020-01-26 22:26:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-26 22:26:50 +0100 |
commit | 2f8c3c17ee26dc21ce94959b0ea18984e7bc5560 (patch) | |
tree | ec8f33b57f7b36a6320a16b5a6a2ce42a13b75ce /app/javascript | |
parent | b9d74d407673a6dbdc87c3310618b22c85358c85 (diff) |
Fix link colors in announcements (#12965)
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/styles/mastodon/components.scss | 6 |
1 files changed, 5 insertions, 1 deletions
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%); + } } } |