mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -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) => {
|
this._register(registerThemingParticipant((theme: IColorTheme, collector: ICssStyleCollector) => {
|
||||||
const nullBackground = theme.getColor(queryEditorNullBackground);
|
const nullBackground = theme.getColor(queryEditorNullBackground);
|
||||||
if (nullBackground) {
|
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