el-table bug整理

//去掉底部border
.el-table::before {
  height: 0;
}
//头部
::v-deep.el-table th {
 background-color: #092459;
  height: 30px !important;
}
//背景色
::v-deep.el-table tr,
::v-deep.el-table td {
  background-color: #0b2967 ;
  color: white;
}
::v-deep.el-table--striped .el-table__body tr.el-table__row--striped td {
  background-color: #0a2f6f !important;
}
//斑马纹
::v-deep.el-table--enable-row-hover .el-table__body tr:hover > td.el-table__cell {
  background-color: #082052;
}

::v-deep.el-table--striped .el-table__body tr.el-table__row--striped.hover-row > td,
::v-deep.el-table__body tr.hover-row > td {
  background-color: #082052 !important;
}
::v-deep.el-table .el-table__header-wrapper{
  height: 50px;
  padding: 0 !important;
}

你可能感兴趣的:(bug,vue.js,elementui)