6

I need to change the selection color from blue(default color) to red bordered blue color in ag-grid.enter image description here

Refer the pic the blue color should be converted to thick blue with red border

Joseph Nannepaga
  • 175
  • 1
  • 3
  • 14

1 Answers1

9

Add the following to your css

.ag-theme-balham .ag-row-selected {
    background-color: #4abbff;
}

.ag-theme-balham .ag-ltr .ag-cell-focus {
    border: 1px solid red;
}
Ghonima
  • 2,978
  • 2
  • 14
  • 23
  • .ag-theme-balham .ag-row-selected { background-color: #4abbff; } .ag-theme-balham .ag-ltr .ag-row-focus { border: 1px solid red; } Indtead of Cell I need Row. It works – Joseph Nannepaga Mar 11 '19 at 05:59