fix:修改table鼠标指上颜色

This commit is contained in:
zhaohy
2024-09-03 13:39:25 +08:00
parent 758a5718de
commit d94a29e9de
3 changed files with 17 additions and 0 deletions

View File

@@ -349,4 +349,10 @@
border: 1px solid rgba(207, 212, 219, 1) !important;
margin-left: 6px !important;
}
:deep(
.ant-table-tbody > tr.ant-table-row:hover > td,
.ant-table-tbody > tr > td.ant-table-cell-row-hover
) {
background: #f4f8ff !important;
}
</style>

View File

@@ -371,6 +371,10 @@
border: 1px solid rgba(207, 212, 219, 1) !important;
margin-left: 6px !important;
}
.ant-table-tbody > tr.ant-table-row:hover > td,
.ant-table-tbody > tr > td.ant-table-cell-row-hover {
background: #f4f8ff !important;
}
}
.box-link {
width: 100%;

View File

@@ -759,4 +759,11 @@
word-break: break-word;
width: 100%;
}
//鼠标指上颜色
:deep(
.ant-table-tbody > tr.ant-table-row:hover > td,
.ant-table-tbody > tr > td.ant-table-cell-row-hover
) {
background: #f4f8ff !important;
}
</style>