aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
Diffstat (limited to 'less')
-rw-r--r--less/tables.less8
1 files changed, 8 insertions, 0 deletions
diff --git a/less/tables.less b/less/tables.less
index 79a53c724..ace7e4ba1 100644
--- a/less/tables.less
+++ b/less/tables.less
@@ -227,6 +227,13 @@ table {
border-right: 0;
}
}
+ }
+
+ // Only nuke the last row's bottom-border in `tbody` and `tfoot` since
+ // chances are there will be only one `tr` in a `thead` and that would
+ // remove the border altogether.
+ > tbody,
+ > tfoot {
> tr:last-child {
> th,
> td {
@@ -234,6 +241,7 @@ table {
}
}
}
+
}
}
}