mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-07 09:35:41 -05:00
fix hover for cells with null value (#22507)
This commit is contained in:
@@ -575,7 +575,7 @@ export abstract class GridTableBase<T> 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};}`);
|
||||
}
|
||||
}));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user