[MM-63586] Fix Jump to recents dismiss icon visibility (#30581)

- 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 <noreply@anthropic.com>
This commit is contained in:
Jesse Hallam 2025-03-28 09:11:05 -03:00 committed by GitHub
parent 619655f567
commit e90b0ca2a1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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);
}
}
}
}