diff --git a/apps/common/main/resources/less/combo-border-size.less b/apps/common/main/resources/less/combo-border-size.less index f27acd1de5..0d1422789a 100644 --- a/apps/common/main/resources/less/combo-border-size.less +++ b/apps/common/main/resources/less/combo-border-size.less @@ -57,4 +57,18 @@ .form-control:not(input) { cursor: pointer; } + + li { + img { + -webkit-filter: none; + filter: none; + } + + &.selected { + img { + -webkit-filter: none; + filter: none; + } + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/view/FormatRulesEditDlg.js b/apps/spreadsheeteditor/main/app/view/FormatRulesEditDlg.js index 21f537a892..a5bc7b4b9c 100644 --- a/apps/spreadsheeteditor/main/app/view/FormatRulesEditDlg.js +++ b/apps/spreadsheeteditor/main/app/view/FormatRulesEditDlg.js @@ -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); });