thaw/src/table/table.css

40 lines
863 B
CSS
Raw Normal View History

2023-03-28 12:37:24 +08:00
.melt-table {
width: 100%;
2023-10-08 11:18:17 +08:00
border-collapse: separate;
border-spacing: 0;
background-color: var(--background-color);
border: 1px solid var(--border-color);
border-radius: var(--border-radius);
2023-03-28 12:37:24 +08:00
}
.melt-table th {
text-align: inherit;
2023-10-08 11:18:17 +08:00
background-color: var(--background-color-striped);
2023-03-28 12:37:24 +08:00
}
.melt-table td,
.melt-table th {
2023-10-08 11:18:17 +08:00
padding: 12px;
border-right: 1px solid var(--border-color);
border-bottom: 1px solid var(--border-color);
2023-03-28 12:37:24 +08:00
}
2023-10-08 11:18:17 +08:00
.melt-table.melt-table--single-row td,
.melt-table.melt-table--single-row th {
border-right: none;
}
.melt-table.melt-table--single-column td {
border-bottom: none;
}
.melt-table td:last-child,
.melt-table th:last-child {
border-right: none;
}
.melt-table tbody tr:last-child td {
border-bottom: none;
}
.melt-table tr {
border-bottom: 1px solid var(--border-color);
}