diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2020-01-26 22:26:50 +0100 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2020-01-27 16:01:46 +0100 |
commit | 187a82207488d293f18f19ba6ecc1402f8af3e3c (patch) | |
tree | 132c03f8540bd84bf42909e26a6882257d67b9d7 | |
parent | e36d0a98cc10575e67c526ef3cc9eeb431a1af3f (diff) |
[Glitch] Fix link colors in announcements
Port 2f8c3c17ee26dc21ce94959b0ea18984e7bc5560 to glitch-soc Signed-off-by: Thibaut Girka <thib@sitedethib.com>
-rw-r--r-- | app/javascript/flavours/glitch/styles/components/announcements.scss | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/styles/components/announcements.scss b/app/javascript/flavours/glitch/styles/components/announcements.scss index 00585cb1c..909957bf1 100644 --- a/app/javascript/flavours/glitch/styles/components/announcements.scss +++ b/app/javascript/flavours/glitch/styles/components/announcements.scss @@ -17,7 +17,7 @@ } a { - color: $highlight-text-color; + color: $secondary-text-color; text-decoration: none; &:hover { @@ -33,6 +33,10 @@ } } } + + &.unhandled-link { + color: lighten($ui-highlight-color, 8%); + } } } |