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.
This commit is contained in:
Sahil Batra 2023-04-26 23:29:58 +05:30 committed by Tim Abbott
parent 3aba2789d3
commit e4420bcd61
1 changed files with 1 additions and 1 deletions

View File

@ -1513,7 +1513,7 @@ $option_title_width: 180px;
}
}
&:disabled i {
&:disabled i.fa-chevron-down {
display: none;
}
}