el-table修改背景颜色,去掉边框,鼠标划过没变色效果

一.整个表格背景颜色及边框弧度

/deep/ .el-table{

background-color: #101d3f;

color: #fff;

// border-radius: 9px;

}


二.标题背景颜色

/deep/ .el-table th{

background-color: #101d3f;

border:none;

}


三 去掉边框

/deep/ .el-table th.el-table__cell{

border: 0px;

}

/deep/ .el-table td{

background-color: #101d3f;

}

/deep/ .el-table--border{

border:none;

border: 0px;

}

/deep/ .el-table td.el-table__cell{

border: 0px;

}

.el-table::before {

height: 0px;

}

customer-table是在el-table里面定义的class类名称

.customer-table .el-table__fixed-right::before,

.el-table__fixed::before {

width: 0;

}


四.鼠标移过表格不变色

/deep/ .el-table tbody tr:hover>td {

background-color: #101d3f !important

}