Commit b9e6848d authored by Mark Otto's avatar Mark Otto

Fixes #14253: Add borders for tables that follow bodies in panels

parent feed9aed
...@@ -5169,7 +5169,9 @@ a.list-group-item-danger.active:focus { ...@@ -5169,7 +5169,9 @@ a.list-group-item-danger.active:focus {
border-bottom-right-radius: 3px; border-bottom-right-radius: 3px;
} }
.panel > .panel-body + .table, .panel > .panel-body + .table,
.panel > .panel-body + .table-responsive { .panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
border-top: 1px solid #ddd; border-top: 1px solid #ddd;
} }
.panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child th,
......
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.
...@@ -5169,7 +5169,9 @@ a.list-group-item-danger.active:focus { ...@@ -5169,7 +5169,9 @@ a.list-group-item-danger.active:focus {
border-bottom-right-radius: 3px; border-bottom-right-radius: 3px;
} }
.panel > .panel-body + .table, .panel > .panel-body + .table,
.panel > .panel-body + .table-responsive { .panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
border-top: 1px solid #ddd; border-top: 1px solid #ddd;
} }
.panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child th,
......
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.
...@@ -145,7 +145,9 @@ ...@@ -145,7 +145,9 @@
} }
} }
> .panel-body + .table, > .panel-body + .table,
> .panel-body + .table-responsive { > .panel-body + .table-responsive,
> .table + .panel-body,
> .table-responsive + .panel-body {
border-top: 1px solid @table-border-color; border-top: 1px solid @table-border-color;
} }
> .table > tbody:first-child > tr:first-child th, > .table > tbody:first-child > tr:first-child th,
......
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