This commit is contained in:
shijing 2024-10-24 17:12:36 +08:00
commit 6d87291c90
1 changed files with 41 additions and 39 deletions

View File

@ -2585,56 +2585,58 @@ export default {
border-radius: 5px;
background: rgb(255, 0, 135);
}
/deep/ .el-table,
.el-table__body,
/deep/ .el-table .el-table__body-wrapper {
:deep(.el-table),
:deep(.el-table__body),
:deep(.el-table .el-table__body-wrapper) {
background: transparent !important;
}
/deep/ .el-table .el-table__header-wrapper {
background: rgba(32, 93, 74, 0.83) !important;
:deep(.el-table .el-table__header-wrapper) {
background: rgba(32, 93, 74, 0.83);
}
/deep/ .el-table .el-table__body-wrapper {
background: rgba(46, 139, 155, 0.48) !important;
:deep(.el-table .el-table__body-wrapper) {
background: rgba(46, 139, 155, 0.48);
}
/deep/ .el-table th {
background-color: transparent !important;
:deep(.el-table th),
:deep(.el-table tr),
:deep(.el-table tr:hover) {
background-color: transparent;
}
/deep/ .el-table tr {
background-color: transparent !important;
:deep(.el-table--enable-row-hover .el-table__body tr:hover > td.el-table__cell) {
background-color: transparent;
}
/deep/ .el-table tr :hover {
background-color: transparent !important;
/* 清除鼠标移入效果 */
:deep(.el-table__body tr.hover-row > td) {
background-color: transparent;
}
/deep/
.el-table--enable-row-hover
.el-table__body
tr:hover
> td.el-table__cell {
background-color: transparent !important;
/* 行底边线 */
:deep(.el-table .el-table__body-wrapper :deep(.el-table td.el-table__cell)),
:deep(.el-table th.el-table__cell.is-leaf) {
background: transparent;
}
/* //清除鼠标移入效果 */
/deep/.el-table__body tr.hover-row > td {
background-color: transparent !important;
}
/* // 行底边线 */
/deep/ .el-table .el-table__body-wrapper /deep/ .el-table td.el-table__cell,
.el-table th.el-table__cell.is-leaf {
background: transparent !important;
}
/deep/ .el-table td.el-table__cell,
/deep/ .el-table th.el-table__cell.is-leaf {
border-bottom: 1px solid rgb(25, 111, 115, 0.82) !important;
:deep(.el-table td.el-table__cell),
:deep(.el-table th.el-table__cell.is-leaf) {
border-bottom: 1px solid rgba(25, 111, 115, 0.82);
}
/* 改变radio选中时的样式 */
/deep/ .el-radio.elRadio > .el-radio__label {
:deep(.el-radio.elRadio > .el-radio__label) {
color: #ffffff;
}
/deep/ .el-radio__input.is-checked .el-radio__inner {
:deep(.el-radio__input.is-checked .el-radio__inner) {
background: #13f1df;
border-color: #13f1df;
}
/deep/ .el-table__inner-wrapper:before {
background-color: rgba(0, 0, 0, 0) !important;
:deep(.el-table__inner-wrapper:before) {
background-color: rgba(0, 0, 0, 0);
}
/* 改变radio选中时的样式 */
</style>