mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-09 09:52:34 +01:00
39 lines
No EOL
634 B
Text
39 lines
No EOL
634 B
Text
table {
|
|
.mid-typography;
|
|
}
|
|
|
|
table.striped {
|
|
& tr:nth-child(even), & th {
|
|
background-color: @bg-base-color
|
|
}
|
|
& tr:nth-child(odd) {
|
|
background-color: @bg-color-2
|
|
}
|
|
& tr:hover {
|
|
background-color: @color-highlight;
|
|
}
|
|
}
|
|
|
|
table.delineated {
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
& td, & th {
|
|
padding: 5px 2px;
|
|
border: 1px solid @border-color;
|
|
}
|
|
|
|
& tr:first-child th {
|
|
border-top: 0;
|
|
}
|
|
//& tr:last-child td {
|
|
// border-bottom: 0;
|
|
//}
|
|
& tr td:first-child,
|
|
& tr th:first-child {
|
|
border-left: 0;
|
|
}
|
|
& tr td:last-child,
|
|
& tr th:last-child {
|
|
border-right: 0;
|
|
}
|
|
} |