From e4420bcd619acc1dc7007743265e4222420a8752 Mon Sep 17 00:00:00 2001 From: Sahil Batra Date: Wed, 26 Apr 2023 23:29:58 +0530 Subject: [PATCH] dropdown_list_widget: Show stream icons when widget is disabled. We show the stream privacy icon for the selected option in dropdown list widget even if the widget is disabled. It is fixed by changing the CSS to hide only the "i" element used for the arrow toggle button and not all the "i" elements in disabled state. --- web/styles/settings.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/styles/settings.css b/web/styles/settings.css index cfad4d655b..929fde33b3 100644 --- a/web/styles/settings.css +++ b/web/styles/settings.css @@ -1513,7 +1513,7 @@ $option_title_width: 180px; } } - &:disabled i { + &:disabled i.fa-chevron-down { display: none; } }