2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-05 16:42:29 +03:00

Fixes #10492 again, this time for last row's corners on striped tables

This commit is contained in:
Mark Otto
2013-12-15 17:22:55 -08:00
parent 2979e4bcea
commit 4ee93c9f85
3 changed files with 24 additions and 1 deletions
+11
View File
@@ -95,6 +95,17 @@
border: 0;
margin-bottom: 0;
}
> .table-striped > tbody > tr:last-child,
> .table-responsive > .table-striped > tbody > tr:last-child {
td:first-child,
th:first-child {
border-bottom-left-radius: (@panel-border-radius - 1);
}
td:last-child,
th:last-child {
border-bottom-left-radius: (@panel-border-radius - 1);
}
}
}