From 3853a8bf20a5ded7ab8d37501a1a4a6bafd3f4c5 Mon Sep 17 00:00:00 2001 From: Sahil Batra Date: Wed, 19 Apr 2023 09:05:34 +0530 Subject: [PATCH] dropdown_list_widget: Do not underline the option text on focus. We remove the underline on the text in the options on focus as we already have a outline which is enough to show that the option is focussed. --- web/styles/settings.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/web/styles/settings.css b/web/styles/settings.css index 6807600dcd..c8e1ee0ce2 100644 --- a/web/styles/settings.css +++ b/web/styles/settings.css @@ -1584,6 +1584,10 @@ $option_title_width: 180px; hsl(200deg 100% 35%) ); } + + &:focus { + text-decoration: none; + } } } }