Commit 5872a7e0 authored by Ben Zumhagen's avatar Ben Zumhagen

Resolves Issue #13689

Doing this the right way this time. Hiding .panel-footer top border when
preceeded by a .list-group. This should resolve the "double border"
issue.
parent 5a161446
...@@ -4993,6 +4993,9 @@ a.list-group-item-danger.active:focus { ...@@ -4993,6 +4993,9 @@ a.list-group-item-danger.active:focus {
.panel-heading + .list-group .list-group-item:first-child { .panel-heading + .list-group .list-group-item:first-child {
border-top-width: 0; border-top-width: 0;
} }
.list-group + .panel-footer {
border-top-width: 0;
}
.panel > .table, .panel > .table,
.panel > .table-responsive > .table { .panel > .table-responsive > .table {
margin-bottom: 0; margin-bottom: 0;
......
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.
...@@ -86,7 +86,9 @@ ...@@ -86,7 +86,9 @@
border-top-width: 0; border-top-width: 0;
} }
} }
.list-group + .panel-footer {
border-top-width: 0;
}
// Tables in panels // Tables in panels
// //
......
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