zhgdyun/src/assets/style/table.less
2024-02-03 17:55:26 +08:00

49 lines
880 B
Plaintext

.tables{
min-height: 550px;
width: 100%;
background-color: transparent;
max-height: calc(100% - 98px);
overflow: auto;
&.el-table td{
border-bottom: none;
}
&.el-table::before{
display: none;
}
&.el-table th{
padding: 8px 0;
}
&.el-table td{
height: 50px;
padding: 5px;
}
&.el-table tr:nth-child(2n-1) td{
background-color: #FBFBFB !important;
}
.el-table__body tr.current-row > td{
background: rgba(0, 122, 255, 0.1);
}
}
.el-table{
background-color: transparent;
// tr{
// background-color: transparent;
// }
}
.tableBtns{
display: flex;
align-items: center;
.operationText{
display: inline-flex;
margin-right: 30px;
&:last-child{
margin-right: 0;
}
}
}
.el-table--enable-row-hover .el-table__body tr:hover > td{
background-color: rgba(85, 129, 255, 0.2)!important;
}