Fix #27505. Make find widget sash 3px.

This commit is contained in:
rebornix
2017-06-01 10:17:00 -07:00
parent 202fd245e3
commit 6574483b3f
@@ -1036,7 +1036,7 @@ registerThemingParticipant((theme, collector) => {
let border = theme.getColor('panel.border');
if (border) {
collector.addRule(`.monaco-editor .find-widget .monaco-sash { background-color: ${border}; width: 2px !important; margin-left: -4px;}`);
collector.addRule(`.monaco-editor .find-widget .monaco-sash { background-color: ${border}; width: 3px !important; margin-left: -4px;}`);
}
});