From 84484ad476a7fad32229c6221a7cb1decfd51ed3 Mon Sep 17 00:00:00 2001 From: Joshua Bisdorf Date: Fri, 25 Apr 2025 03:09:45 -0400 Subject: [PATCH] Fix issue #7279: set selected emoji color to be transparant; set selection color to be proper blue highlight color. --- stylesheets/components/fun/FunEmoji.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/stylesheets/components/fun/FunEmoji.scss b/stylesheets/components/fun/FunEmoji.scss index 3e838bdd670..ccc87aa5396 100644 --- a/stylesheets/components/fun/FunEmoji.scss +++ b/stylesheets/components/fun/FunEmoji.scss @@ -176,6 +176,14 @@ $inline-emoji-container-name: inline-emoji; line-height: 64px; user-select: text; } +.FunEmojiSelectionText::selection { + background-color: rgba(8, 73, 205, 255); + color: transparent; +} +.FunEmojiSelectionText::-moz-selection { + background-color: rgba(8, 73, 205, 255); + color: transparent; +} .FunInlineEmoji__Image { position: relative;