Commit 3a8e99e9 authored by Mark Otto's avatar Mark Otto

Fixes #12171: Ensure panel groups have a bottom margin since we nuke it on child panels

parent 17f2ef46
...@@ -4881,6 +4881,9 @@ a.list-group-item-danger.active:focus { ...@@ -4881,6 +4881,9 @@ a.list-group-item-danger.active:focus {
border-bottom-right-radius: 3px; border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px; border-bottom-left-radius: 3px;
} }
.panel-group {
margin-bottom: 20px;
}
.panel-group .panel { .panel-group .panel {
margin-bottom: 0; margin-bottom: 0;
overflow: hidden; overflow: hidden;
......
This diff was suppressed by a .gitattributes entry.
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff was suppressed by a .gitattributes entry.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -150,6 +150,8 @@ ...@@ -150,6 +150,8 @@
// the help of our collapse JavaScript plugin. // the help of our collapse JavaScript plugin.
.panel-group { .panel-group {
margin-bottom: @line-height-computed;
// Tighten up margin so it's only between panels // Tighten up margin so it's only between panels
.panel { .panel {
margin-bottom: 0; margin-bottom: 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment