Skip to content

Commit

Permalink
fix: made row drag highlight more visible (#415)
Browse files Browse the repository at this point in the history
  • Loading branch information
dclinz authored Sep 4, 2023
1 parent 024dad1 commit bf3d879
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/styles/GridTheme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -194,4 +194,18 @@ $grid-base-font-size: calc(#{lui.$base-font-size} - 1px);
.ag-cell-wrapper {
width: 100%;
}

.ag-row-highlight-above::after, .ag-row-highlight-below::after {
content: '';
height: 2px;
background-color: transparent;
}

.ag-row-highlight-above::after{
border-top: 2px dashed lui.$andrea;

}
.ag-row-highlight-below::after {
border-bottom: 2px dashed lui.$andrea;
}
}

0 comments on commit bf3d879

Please sign in to comment.