update table
parent
7f83c05c58
commit
16cca96cd3
|
@ -18,12 +18,10 @@ li {
|
||||||
}
|
}
|
||||||
.table {
|
.table {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
flex: 1;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
min-width: 100%;
|
|
||||||
// height: 100%;
|
|
||||||
border: 1px solid nth($cp, 3);
|
border: 1px solid nth($cp, 3);
|
||||||
border-right: 0;
|
|
||||||
|
|
||||||
.thead,
|
.thead,
|
||||||
.tfoot {
|
.tfoot {
|
||||||
|
@ -66,6 +64,10 @@ li {
|
||||||
&.flex-8 {
|
&.flex-8 {
|
||||||
flex: 8;
|
flex: 8;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
border-right: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.thead .td {
|
.thead .td {
|
||||||
|
|
|
@ -7,11 +7,15 @@
|
||||||
// flex: 1;
|
// flex: 1;
|
||||||
display: flex;
|
display: flex;
|
||||||
width: auto;
|
width: auto;
|
||||||
|
// border-bottom: 1px solid nth($cp, 3);
|
||||||
color: inherit;
|
color: inherit;
|
||||||
}
|
}
|
||||||
:host(:hover) {
|
:host(:hover) {
|
||||||
background-color: #fbfbfb;
|
background-color: #fbfbfb;
|
||||||
}
|
}
|
||||||
|
::slotted(wc-table-td:last-child) {
|
||||||
|
border-right: 0;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
Reference in New Issue