欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

修改ant-design-vue的table 表格鼠标滑动的行样式背景颜色

程序员文章站 2022-06-07 22:01:54
...
/*有固定行的ant-design-vue 表格滑动样式*/
.ant-table-fixed .ant-table-row-hover {
  background: #eef1f6 !important;
}
.ant-table-fixed .ant-table-row-hover > td {
  background: #eef1f6 !important;
}
/*没有固定行的表格个样式*/
.ant-table-tbody > tr:hover:not(.ant-table-expanded-row) > td {
  background-color: #f1f6fd !important;
}
.ant-table-body .ant-table-row-hover {
  background: #f1f6fd !important;
}
.ant-table-body .ant-table-row-hover > td {
  background: #f1f6fd !important;
}

原文链接

这一篇是教如何去获取样式

原文链接

相关标签: vue.js html