From: Siarhei Khilko Date: Wed, 4 Jun 2014 22:20:36 +0000 (-0700) Subject: Fix bug where a panel recieve extra top border X-Git-Tag: v3.2.0~122^2~1^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f87a023153c7bb460c3a2520fd1ec6310f60a11a;p=thirdparty%2Fbootstrap.git 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. --- diff --git a/less/panels.less b/less/panels.less index 9afa4cbfd6..f3b9582c3d 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; } }