From 4b58e2ca688d19f6edef7306cfdf0c02f5aeda20 Mon Sep 17 00:00:00 2001 From: Jamie <113370520+jamiebuilds-signal@users.noreply.github.com> Date: Wed, 4 Feb 2026 12:38:30 -0800 Subject: [PATCH] Fix sticker message metadata color in dark mode --- stylesheets/_modules.scss | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/stylesheets/_modules.scss b/stylesheets/_modules.scss index 08d3f03211..6f7b55dd70 100644 --- a/stylesheets/_modules.scss +++ b/stylesheets/_modules.scss @@ -1196,7 +1196,11 @@ $message-padding-horizontal: 12px; user-select: none; white-space: nowrap; - color: light-dark(variables.$color-gray-60, variables.$color-gray-25); + &, + &--outline-only-bubble, + &--sticker { + color: light-dark(variables.$color-gray-60, variables.$color-gray-25); + } &--outgoing { color: variables.$color-white-alpha-80; @@ -1206,14 +1210,6 @@ $message-padding-horizontal: 12px; color: light-dark(variables.$color-white, variables.$color-white-alpha-80); } - &--outline-only-bubble { - color: light-dark(variables.$color-gray-60, variables.$color-gray-25); - } - - &--sticker { - color: variables.$color-gray-60; - } - &--inline { float: inline-end; margin-top: -14px;