mirror of
https://github.com/mattermost/mattermost.git
synced 2026-05-28 04:35:04 -04:00
[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:
parent
619655f567
commit
e90b0ca2a1
1 changed files with 5 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue