diff options
author | Zach Flanders <zachflanders@gmail.com> | 2022-11-07 15:37:36 -0600 |
---|---|---|
committer | Claire <claire.github-309c@sitedethib.com> | 2022-11-08 15:47:48 +0100 |
commit | 6eac1cfccdc497c4f022689cd73bf937d0607f36 (patch) | |
tree | 3b35893b25be1f5fa60f68dbe80d44e533862e44 | |
parent | a8c854b3ea80724797dd18cfe047cdbf7075bda2 (diff) |
[Glitch] Fix spoiler buttons css not rendering correct color in light theme
Port 0beb095a4bfbcce55acb016eaaa54b5e93a56023 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
-rw-r--r-- | app/javascript/flavours/glitch/styles/mastodon-light/diff.scss | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/styles/mastodon-light/diff.scss b/app/javascript/flavours/glitch/styles/mastodon-light/diff.scss index 37a49ce9f..1fe3d7a51 100644 --- a/app/javascript/flavours/glitch/styles/mastodon-light/diff.scss +++ b/app/javascript/flavours/glitch/styles/mastodon-light/diff.scss @@ -268,7 +268,8 @@ html { .status__content .status__content__spoiler-link { background: $ui-base-color; - &:hover { + &:hover, + &:focus { background: lighten($ui-base-color, 4%); } } |