当前位置: 首页 > 工具软件 > Table Hover > 使用案例 >

antd-vue table里hover行背景色修改

沈翰
2023-12-01
 
//没有固定的hover颜色修改
.ant-table-tbody{
    tr:hover:not(.ant-table-expanded-row) > td,.ant-table-row-hover,.ant-table-row-hover > td {
      background-color: @background-color-light; 
    }
  }
//有固定向左向右的hover颜色修改
  .ant-table-fixed{
    .ant-table-row-hover, .ant-table-row-hover>td{
      background-color: @background-color-light!important;
    }
  }

 类似资料: