// table样式
// 表头
:deep(.el-table th) {
background-color: transparent;
background: #1650ad !important;
background-size: 100% 100%;
}
/* 修改表头文字颜色 */
:deep(.el-table .cell) {
color: #ffffff;
}
// 去除头部边框线
:deep(.el-table td.el-table__cell,.el-table th.el-table__cell.is-leaf){
border-bottom: none !important;
}
// 表格格栅的第一种颜色
:deep(.el-table tr){
background:#0d2852;
}
:deep(.el-table--enable-row-hover .el-table__body tr:hover>td.el-table__cell){
background:#063d8f;
}
// 表格格栅的第er种颜色
:deep(.el-table--striped .el-table__body tr.el-table__row--striped td.el-table__cell){
background:#063279;
}
// 去除body部边框线
:deep(.el-table td.el-table__cell,.el-table th.el-table__cell.is-leaf){
border-bottom:none !important;
}
标签:__,el,样式,deep,cell,background,table
From: https://www.cnblogs.com/baozhengrui/p/18471578