]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fix bug where a panel recieve extra top border 13735/head
authorSiarhei Khilko <skhilko@gmail.com>
Wed, 4 Jun 2014 22:20:36 +0000 (15:20 -0700)
committerSiarhei Khilko <skhilko@gmail.com>
Wed, 4 Jun 2014 22:20:36 +0000 (15:20 -0700)
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.

less/panels.less

index 9afa4cbfd67eed6d8b18914cbb2419aa09367dcc..f3b9582c3d0b2da473b1d936563e4b5a5cd05de0 100644 (file)
 
   .panel-heading {
     border-bottom: 0;
-    + .panel-collapse .panel-body {
+    + .panel-collapse .panel-body {
       border-top: 1px solid @panel-inner-border;
     }
   }