[SSE] Fix icon set combobox in dark style

This commit is contained in:
Julia Radzhabova 2021-07-12 18:12:39 +03:00
parent de98eaf0fa
commit 172306dceb
2 changed files with 16 additions and 1 deletions

View file

@ -57,4 +57,18 @@
.form-control:not(input) {
cursor: pointer;
}
li {
img {
-webkit-filter: none;
filter: none;
}
&.selected {
img {
-webkit-filter: none;
filter: none;
}
}
}
}

View file

@ -229,7 +229,8 @@ define([ 'text!spreadsheeteditor/main/app/template/FormatRulesEditDlg.template',
editable : false,
cls : 'input-group-nr',
data : cmbData,
takeFocusOnClose: true
takeFocusOnClose: true,
scrollAlwaysVisible: false
}).on('selected', function(combo, record) {
me.refreshRules(record.value);
});