diff --git a/src/sql/workbench/contrib/query/browser/gridPanel.ts b/src/sql/workbench/contrib/query/browser/gridPanel.ts index 4a21b777c2..367adec3b7 100644 --- a/src/sql/workbench/contrib/query/browser/gridPanel.ts +++ b/src/sql/workbench/contrib/query/browser/gridPanel.ts @@ -575,7 +575,7 @@ export abstract class GridTableBase extends Disposable implements IView { this._register(registerThemingParticipant((theme: IColorTheme, collector: ICssStyleCollector) => { const nullBackground = theme.getColor(queryEditorNullBackground); if (nullBackground) { - collector.addRule(`.${NULL_CELL_CSS_CLASS} { background: ${nullBackground};}`); + collector.addRule(`.slick-row:not(:hover) .${NULL_CELL_CSS_CLASS} { background: ${nullBackground};}`); } }));