Antd 修改 Table 悬浮颜色、表头背景色

修改Table悬浮颜色

 .ant-table-tbody > tr:hover:not(.ant-table-expanded-row) > td,.ant-table-row-hover,.ant-table-row-hover>td{
    background-color: transparent !important;
  }

  .ant-table-fixed .ant-table-row-hover,.ant-table-row-hover>td{
    background-color: transparent !important;
  }

修改表头背景色

 .ant-table-thead > tr >th{

      color: #909399  !important;    
      background: white !important;
    
    }

你可能感兴趣的:(Antd,css,html,less)