From ec43a66f26487b981d6a6fde8f2b933017dd330c Mon Sep 17 00:00:00 2001 From: whilstsomebody Date: Sat, 26 Oct 2024 10:40:29 +0530 Subject: [PATCH] update_ui: Standardize pencil icon color for todo and poll. Ensure consistent pencil icon color for both todo and poll features in hover and non-hover states across light and dark themes. Fixes #30339. --- web/styles/widgets.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/web/styles/widgets.css b/web/styles/widgets.css index 638984a15c..00e1d2298d 100644 --- a/web/styles/widgets.css +++ b/web/styles/widgets.css @@ -272,10 +272,11 @@ input { .poll-edit-question, .todo-edit-task-list-title { - opacity: 0.4; + color: var(--color-message-action-visible); - &:hover { - opacity: 1; + &:hover, + &:focus-visible { + color: var(--color-message-action-interactive); } }