From e4fec7a38432f19c59d7056185bd2a06b9708e91 Mon Sep 17 00:00:00 2001 From: wnvko Date: Thu, 12 Sep 2019 14:15:36 +0300 Subject: [PATCH] fix(grids): set z-index of row drag ghost to 1, #5748 This will make the z-index of the row drag ghost equal to the one of the grid. This will not fix application scenario where grid is put in stacking container with higher z-index. To fix this drag and drop directive should be able to use outlet where drag ghost should be put in the DOM tree instead as a child of the body. --- .../src/lib/core/styles/components/grid/_grid-theme.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/projects/igniteui-angular/src/lib/core/styles/components/grid/_grid-theme.scss b/projects/igniteui-angular/src/lib/core/styles/components/grid/_grid-theme.scss index 2a4a8a9427f..e0b162695f1 100644 --- a/projects/igniteui-angular/src/lib/core/styles/components/grid/_grid-theme.scss +++ b/projects/igniteui-angular/src/lib/core/styles/components/grid/_grid-theme.scss @@ -867,6 +867,7 @@ &%igx-grid__tr--ghost { background: --var($theme, 'row-ghost-background'); + z-index: 1; } }