feat: 修改代码 index_enm bug

This commit is contained in:
zty 2024-10-24 16:52:57 +08:00
parent d519cd882a
commit 1be10389c9
1 changed files with 41 additions and 39 deletions

View File

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