From ad177a8b484007bd12e83bbdada10cd1fbe51bbc Mon Sep 17 00:00:00 2001 From: ecxtacy Date: Sun, 4 Feb 2024 22:53:37 +0530 Subject: [PATCH] css: Show 'x' button hover styling when hovered over 'x'. When input pills are hovered, the 'x' button is highlighted. This commit ensures that 'x' button is highlighted only if the 'x' button is hovered, not anywhere else on the pill. Author: ecxtacy . --- web/styles/input_pill.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/styles/input_pill.css b/web/styles/input_pill.css index b52ecb59c7..5a4e2d129a 100644 --- a/web/styles/input_pill.css +++ b/web/styles/input_pill.css @@ -62,7 +62,7 @@ margin-right: 3px; } - &:hover .exit { + .exit:hover { opacity: 1; } }