You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

120 lines
2.6 KiB
SCSS

.baseTable_wrap {
/* 去掉表格整体边框 */
.el-table {
border: none !important;
background-color: transparent;
}
/* 去掉表头下边框 */
.el-table__header-wrapper thead th {
border-bottom: none !important;
}
/* 去掉单元格边框 */
.el-table td,
.el-table th.is-leaf {
border-bottom: none !important;
}
/* 去掉纵向分割线 */
.el-table--border::after,
.el-table--group::after,
.el-table::before {
display: none;
}
.el-table--border,
.el-table--group {
border-right: none !important;
border-bottom: none !important;
}
.el-table td,
.el-table th {
border-right: none !important;
}
.el-scrollbar__view {
background: transparent !important;
}
.el-table--large .el-table__cell {
padding: 8.5px 0;
}
.baseTable_box {
cursor: pointer;
.el-table__body {
background: transparent;
tr {
color: #fff;
background: transparent;
&:hover td {
background-color: transparent;
}
&:hover {
color: #37DBFF;
background: linear-gradient( 90deg, rgba(30,54,88,0) 0%, #0C4FAD 53%, rgba(65,117,190,0) 100%);;
}
}
}
.el-table__header > thead {
color: #9fb5d7;
background-color: #104284 !important;
tr {
background-color: #104284 !important;
}
th {
background-color: #104284 !important;
}
}
}
.fixed_pagination{
padding: 12px 20px 0;
}
/* full_table */
&.full_table {
.el-table--large .el-table__cell {
padding: 4px 0;
}
.baseTable_box {
.el-table__body {
background: linear-gradient(90deg, #082050 0%, #02102a 100%);
tr {
color: #fff;
background: linear-gradient(90deg, #082050 0%, #02102a 100%);
&:nth-child(odd) {
background: linear-gradient(90deg, #082050 0%, #02102a 100%);
}
&:nth-child(even) {
background: linear-gradient(90deg, #102d65 0%, #081736 100%);
}
&:hover td {
background-color: transparent;
}
}
}
.el-table__header > thead {
color: #9fb5d7;
background-color: #104284 !important;
tr {
background-color: #104284 !important;
}
th {
background-color: #104284 !important;
}
}
}
.fixed_pagination{
padding: 28px 20px;
}
}
}
.pagination_box {
margin-top: 50px;
width: 100%;
// position: fixed;
// bottom: 100px;
// right: 40px;
background-color: white;
z-index: 9;
}