aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-12-23 18:53:30 -0800
committerMark Otto <[email protected]>2013-12-23 18:53:30 -0800
commit340e2f553459a6499d77800658a37724af81dfb0 (patch)
tree19bd85f01eb598bf5a126eabdbe4a0feabfda205 /less
parent0bd5bca6957bd26b526c92a7c90da78daf636e7b (diff)
parentf3ce6a9696f61720f10576f5744296c67703558f (diff)
downloadbootstrap-340e2f553459a6499d77800658a37724af81dfb0.tar.xz
bootstrap-340e2f553459a6499d77800658a37724af81dfb0.zip
Merge pull request #11970 from supergibbs/Better_10492_fix
Fixes #10492 better
Diffstat (limited to 'less')
-rw-r--r--less/panels.less27
1 files changed, 14 insertions, 13 deletions
diff --git a/less/panels.less b/less/panels.less
index cca22ae3a..8de915c7e 100644
--- a/less/panels.less
+++ b/less/panels.less
@@ -59,6 +59,20 @@
> .table,
> .table-responsive > .table {
margin-bottom: 0;
+
+ > tbody:last-child,
+ > tfoot:last-child {
+ > 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-right-radius: (@panel-border-radius - 1);
+ }
+ }
+ }
}
> .panel-body + .table,
> .panel-body + .table-responsive {
@@ -95,19 +109,6 @@
border: 0;
margin-bottom: 0;
}
- > .table-striped,
- > .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-right-radius: (@panel-border-radius - 1);
- }
- }
- }
}