aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSiarhei Khilko <[email protected]>2014-06-04 15:20:36 -0700
committerSiarhei Khilko <[email protected]>2014-06-04 15:20:36 -0700
commitf87a023153c7bb460c3a2520fd1ec6310f60a11a (patch)
treee1bd1075165cd0193a97442178aa1211ee68015e
parentf9495eab12558534f99458a9123d2bdd483c844c (diff)
downloadbootstrap-f87a023153c7bb460c3a2520fd1ec6310f60a11a.tar.xz
bootstrap-f87a023153c7bb460c3a2520fd1ec6310f60a11a.zip
Fix bug where a panel recieve extra top border
https://github.com/twbs/bootstrap/issues/13734 A panel placed inside of a collapsible panel recieve extra top border. This commit reduces the effect of a selector to apply a border only to the collapsible panel body itself, not to any panel placed within it.
-rw-r--r--less/panels.less2
1 files changed, 1 insertions, 1 deletions
diff --git a/less/panels.less b/less/panels.less
index 9afa4cbfd..f3b9582c3 100644
--- a/less/panels.less
+++ b/less/panels.less
@@ -206,7 +206,7 @@
.panel-heading {
border-bottom: 0;
- + .panel-collapse .panel-body {
+ + .panel-collapse > .panel-body {
border-top: 1px solid @panel-inner-border;
}
}