From f07decac5af8dcb613a19e623c2e84ad1e4424c8 Mon Sep 17 00:00:00 2001 From: Josh Perez <60019601+josh-signal@users.noreply.github.com> Date: Fri, 1 Oct 2021 10:38:56 -0400 Subject: [PATCH] Fixes @mentions background for light-mode --- stylesheets/_modules.scss | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/stylesheets/_modules.scss b/stylesheets/_modules.scss index b59f18ce2..888655f7d 100644 --- a/stylesheets/_modules.scss +++ b/stylesheets/_modules.scss @@ -4545,7 +4545,6 @@ button.module-image__border-overlay:focus { } .module-message-body__at-mention { - background-color: $color-black-alpha-40; border-radius: 4px; cursor: pointer; display: inline-block; @@ -4553,6 +4552,14 @@ button.module-image__border-overlay:focus { padding-right: 4px; border: 1px solid transparent; + @include light-theme { + background-color: $color-gray-20; + } + + @include dark-theme { + background-color: $color-black-alpha-40; + } + &:focus { border: 1px solid $color-black; outline: none;