Skip to content

Commit

Permalink
Fix bug where a panel recieve extra top border
Browse files Browse the repository at this point in the history
#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.
  • Loading branch information
skhilko committed Jun 4, 2014
1 parent f9495ea commit f87a023
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion less/panels.less
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@

.panel-heading {
border-bottom: 0;
+ .panel-collapse .panel-body {
+ .panel-collapse > .panel-body {
border-top: 1px solid @panel-inner-border;
}
}
Expand Down

0 comments on commit f87a023

Please sign in to comment.