[SSE] Fix icon set combobox in dark style
This commit is contained in:
parent
de98eaf0fa
commit
172306dceb
|
@ -57,4 +57,18 @@
|
||||||
.form-control:not(input) {
|
.form-control:not(input) {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
li {
|
||||||
|
img {
|
||||||
|
-webkit-filter: none;
|
||||||
|
filter: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.selected {
|
||||||
|
img {
|
||||||
|
-webkit-filter: none;
|
||||||
|
filter: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -229,7 +229,8 @@ define([ 'text!spreadsheeteditor/main/app/template/FormatRulesEditDlg.template',
|
||||||
editable : false,
|
editable : false,
|
||||||
cls : 'input-group-nr',
|
cls : 'input-group-nr',
|
||||||
data : cmbData,
|
data : cmbData,
|
||||||
takeFocusOnClose: true
|
takeFocusOnClose: true,
|
||||||
|
scrollAlwaysVisible: false
|
||||||
}).on('selected', function(combo, record) {
|
}).on('selected', function(combo, record) {
|
||||||
me.refreshRules(record.value);
|
me.refreshRules(record.value);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue