Skip to content

Commit 3e69e90

Browse files
committed
fix(grid): fix ghost row styles
1 parent fe1cd95 commit 3e69e90

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

projects/igniteui-angular/core/src/core/styles/components/grid/_grid-theme.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -892,12 +892,14 @@
892892
&%igx-grid__tr--ghost {
893893
background: var-get($theme, 'row-ghost-background');
894894
color: var-get($theme, 'row-drag-color');
895+
border: 1px solid var-get($theme, 'row-ghost-border-color');
895896
z-index: 10002;
896897

897898
@include css-vars((
898899
name: 'igx-grid-row',
899900
row-ghost-background: map.get($theme, 'row-ghost-background'),
900-
row-drag-color: map.get($theme, 'row-drag-color')
901+
row-drag-color: map.get($theme, 'row-drag-color'),
902+
row-ghost-border-color: map.get($theme, 'row-ghost-border-color')
901903
));
902904
}
903905
}

0 commit comments

Comments
 (0)