fix all high constrast issues in sqlops (#1115)

This commit is contained in:
Abbie Petchtes
2018-04-11 12:36:00 -07:00
committed by GitHub
parent 7833c28b7a
commit 495b4ee7c2
10 changed files with 22 additions and 14 deletions

View File

@@ -256,7 +256,7 @@ export class Table<T extends Slick.SlickData> implements IThemable {
}
if (styles.listSelectionOutline) {
content.push(`.monaco-table .${this._idPrefix} .slick-row .selected { outline: 1px dotted ${styles.listSelectionOutline}; outline-offset: -1px; }`);
content.push(`.monaco-table .${this._idPrefix} .slick-row .selected.active { outline: 1px dotted ${styles.listSelectionOutline}; outline-offset: -1px; }`);
}
/* Commented out andresse 8/17/2017; keeping for reference as we iterate on the table styling */