From e90b0ca2a16628a48eff889ea17a0623a64ef9b4 Mon Sep 17 00:00:00 2001 From: Jesse Hallam Date: Fri, 28 Mar 2025 09:11:05 -0300 Subject: [PATCH] [MM-63586] Fix Jump to recents dismiss icon visibility (#30581) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fixed dismiss icon color in the Jump to recents toast by changing the fill from button-bg-rgb to button-color-rgb - Added hover state for dismiss icon to increase visibility when hovered 🤖 Generated with [Claude Code](https://claude.ai/code) Co-authored-by: Claude --- .../scroll_to_bottom_toast/scroll_to_bottom_toast.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/webapp/channels/src/components/scroll_to_bottom_toast/scroll_to_bottom_toast.scss b/webapp/channels/src/components/scroll_to_bottom_toast/scroll_to_bottom_toast.scss index 18f5369d3df..1790f55cd58 100644 --- a/webapp/channels/src/components/scroll_to_bottom_toast/scroll_to_bottom_toast.scss +++ b/webapp/channels/src/components/scroll_to_bottom_toast/scroll_to_bottom_toast.scss @@ -50,13 +50,17 @@ svg { padding-top: 1px; // To align vertically - fill: rgba(var(--button-bg-rgb), 0.64); + fill: rgba(var(--button-color-rgb), 0.64); vertical-align: middle; } .close-btn { cursor: pointer; line-height: normal; + + &:hover { + fill: var(--button-color); + } } } }