修改antd中table hover颜色

项目中用到,记录一下更改 antd 中 table 行 hover颜色

  .ant-table-tbody > tr:hover:not(.ant-table-expanded-row) > td {
      background-color: #ccc;
    }
    .ant-table-body .ant-table-row-hover{
      background: #ccc;
    }
    .ant-table-body .ant-table-row-hover>td{
      background: #ccc;
    }

你可能感兴趣的:(修改antd中table hover颜色)