about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2020-01-26 22:26:50 +0100
committerGitHub <noreply@github.com>2020-01-26 22:26:50 +0100
commit2f8c3c17ee26dc21ce94959b0ea18984e7bc5560 (patch)
treeec8f33b57f7b36a6320a16b5a6a2ce42a13b75ce
parentb9d74d407673a6dbdc87c3310618b22c85358c85 (diff)
Fix link colors in announcements (#12965)
-rw-r--r--app/javascript/styles/mastodon/components.scss6
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%);
+    }
   }
 }