From 00c6bee2fda2fa3cd840db118ebc56f0151e9239 Mon Sep 17 00:00:00 2001 From: Wilson Furtado <72563697+wilsonfurtado2000@users.noreply.github.com> Date: Mon, 30 Dec 2024 23:11:43 +0100 Subject: [PATCH] feat(welcome-page): added hover fill to trash icon (#15431) Fixes #15430. --- css/_meetings_list.scss | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/css/_meetings_list.scss b/css/_meetings_list.scss index 5096371698..06fb1a72b3 100644 --- a/css/_meetings_list.scss +++ b/css/_meetings_list.scss @@ -19,11 +19,11 @@ flex-direction: column; .description { - color: #2f3237; - font-size: 14px; - line-height: 18px; - margin-bottom: 16px; - max-width: 436px; + color: #2f3237; + font-size: 14px; + line-height: 18px; + margin-bottom: 16px; + max-width: 436px; } } @@ -156,14 +156,22 @@ margin-right: 16px; position: absolute; - &> svg { + &>svg { fill: #0074e0; } } - .item:hover, .item:focus, .item:focus-within { + .item:hover, + .item:focus, + .item:focus-within { .delete-meeting { display: block; } + + .delete-meeting:hover { + &>svg { + fill: #4687ED; + } + } } -} +} \ No newline at end of file