20 lines
486 B
CSS
20 lines
486 B
CSS
|
|
:root {
|
||
|
|
--mineTable-notFinish-bg-color: #c7ffa5;
|
||
|
|
--mineTable-click-bg-color: #d2f0ff;
|
||
|
|
}
|
||
|
|
|
||
|
|
:deep(.el-table .success-row) {
|
||
|
|
background-color: var(--mineTable-notFinish-bg-color) !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
:deep(.el-table__body tr.current-row>td.el-table__cell) {
|
||
|
|
background-color: var(--mineTable-click-bg-color) !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* :deep(.el-table__body tr.hover-row>td.el-table__cell){
|
||
|
|
background-color: unset !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.el-table {
|
||
|
|
--el-table-row-hover-bg-color: transparent;
|
||
|
|
} */
|