63 lines
1.2 KiB
SCSS
63 lines
1.2 KiB
SCSS
:deep(.el-table.simple) {
|
|
font-size: 13px;
|
|
color: #fff;
|
|
background-color: transparent !important;
|
|
|
|
.el-table__header {
|
|
background: rgba(33, 180, 253, 0.1);
|
|
}
|
|
|
|
&::before {
|
|
display: none !important;
|
|
}
|
|
|
|
tr.el-table__row--striped td {
|
|
background: rgba(33, 180, 253, 0.1) !important;
|
|
}
|
|
|
|
.el-table th.el-table__cell {
|
|
background: transparent !important;
|
|
}
|
|
|
|
.el-table__header tr th:first-child .cell {
|
|
padding-left: 20px !important;
|
|
}
|
|
|
|
.el-table__header tr th.is-right .cell {
|
|
padding-right: 20px !important;
|
|
}
|
|
|
|
.el-table__body tr td.is-right .cell {
|
|
padding-right: 20px !important;
|
|
}
|
|
|
|
.el-table__body tr td:first-child .cell {
|
|
padding-left: 20px !important;
|
|
}
|
|
|
|
&.el-table--enable-row-hover .el-table__body tr:hover > td.el-table__cell {
|
|
background-color: rgba(33, 180, 253, 0.1) !important;
|
|
}
|
|
|
|
td.el-table__cell, th.el-table__cell.is-leaf {
|
|
border-bottom: none !important;
|
|
}
|
|
|
|
th.el-table__cell {
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
tr {
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
.el-table__cell {
|
|
padding: 7px 0;
|
|
color: #d0e1e8;
|
|
}
|
|
|
|
.el-table__header tr .cell {
|
|
color: #02FEFF !important;
|
|
}
|
|
}
|