aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-12-15 17:22:55 -0800
committerMark Otto <[email protected]>2013-12-15 17:22:55 -0800
commit4ee93c9f8529cfeef56d4178b91e1ddcb0bff09c (patch)
tree7407b67f271ec66fc97b7fd44e1bcac671e58508 /less
parent2979e4bcea25c428c801d77153dc0f663618ce20 (diff)
downloadbootstrap-4ee93c9f8529cfeef56d4178b91e1ddcb0bff09c.tar.xz
bootstrap-4ee93c9f8529cfeef56d4178b91e1ddcb0bff09c.zip
Fixes #10492 again, this time for last row's corners on striped tables
Diffstat (limited to 'less')
-rw-r--r--less/panels.less11
1 files changed, 11 insertions, 0 deletions
diff --git a/less/panels.less b/less/panels.less
index ad133ad21..1b72cebd1 100644
--- a/less/panels.less
+++ b/less/panels.less
@@ -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);
+ }
+ }
}