ag-grid:当单元格背景被覆盖时,悬停行样式不起作用

时间:2019-05-16 09:09:47

标签: ag-grid-angular

我正在更改某些样式的单元格背景颜色

    if(//some condition)   
    {
    //highlighted the background color
      return { 'background-color': '#8a1538', color: 'white' };
    }

//otherwise clear the highlighted color and return default colors for grid
    if (params.node.rowIndex % 2 === 0)
      return { 'background-color': '#f9f8f8', color: '#333f48' };
    else
      return { 'background-color': '#fff', color: '#333f48' };

但是在此之后,悬停功能不起作用,悬停行将如何工作?

1 个答案:

答案 0 :(得分:0)

这可能会有所帮助:

  div.ag-row-hover:not(.ag-row-group) div{
    background: #52a8ff !important;
    color: white;
  }

  div.ag-row-hover .ag-cell-inline-editing div {
    color: black;
  }