diff options
author | Claire <claire.github-309c@sitedethib.com> | 2023-01-18 16:32:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-18 16:32:23 +0100 |
commit | 9b3e22c40d5a24ddfa0df42d8fe6e96a273e8afd (patch) | |
tree | 008c3a769d5562ca8ba37ebb867cc88fcdf4fab0 /app/javascript/styles | |
parent | 7e6ffa085f97dc4688e2655fe2447743ab807e44 (diff) |
Change account moderation notes to make links clickable (#22553)
* Change account moderation notes to make links clickable Fixes #22539 * Fix styling of account moderation note links
Diffstat (limited to 'app/javascript/styles')
-rw-r--r-- | app/javascript/styles/mastodon/admin.scss | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/app/javascript/styles/mastodon/admin.scss b/app/javascript/styles/mastodon/admin.scss index 9c06e7a25..674fafbe9 100644 --- a/app/javascript/styles/mastodon/admin.scss +++ b/app/javascript/styles/mastodon/admin.scss @@ -1572,6 +1572,15 @@ a.sparkline { margin-bottom: 0; } } + + a { + color: $highlight-text-color; + text-decoration: none; + + &:hover { + text-decoration: underline; + } + } } &__actions { |