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

 
//没有固定的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;
    }
  }

你可能感兴趣的:(vue,css样式,vue.js)