diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-03-22 18:20:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-22 18:20:08 +0100 |
commit | 2de44d3e47404ee0ac6f701e685a4626502c6390 (patch) | |
tree | b71fb3ce7732d25cf5976b856a6dce0263029e32 /app | |
parent | b475c8ab97c839f20757ef606659b15f8d47e79f (diff) |
Fix regression of status colors in actions modal in web UI (#17851)
Regression in #17844
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/styles/mastodon/components.scss | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index d1b36d33b..d627d9557 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -1154,6 +1154,43 @@ .audio-player { margin-top: 8px; } + + &.light { + .status__relative-time, + .status__visibility-icon { + color: $light-text-color; + } + + .status__display-name { + color: $inverted-text-color; + } + + .display-name { + color: $light-text-color; + + strong { + color: $inverted-text-color; + } + } + + .status__content { + color: $inverted-text-color; + + a { + color: $highlight-text-color; + } + + a.status__content__spoiler-link { + color: $primary-text-color; + background: $ui-primary-color; + + &:hover, + &:focus { + background: lighten($ui-primary-color, 8%); + } + } + } + } } .detailed-status__meta { |