Commit c13524e7 authored by Mark Otto's avatar Mark Otto

Fixes #11553: Prevent double border on tables in panels without thead content

parent 9f68a5b2
...@@ -5585,6 +5585,11 @@ a.list-group-item.active:focus .list-group-item-text { ...@@ -5585,6 +5585,11 @@ a.list-group-item.active:focus .list-group-item-text {
border-top: 1px solid #dddddd; border-top: 1px solid #dddddd;
} }
.panel > .table > tbody:first-child th,
.panel > .table > tbody:first-child td {
border-top: 0;
}
.panel > .table-bordered, .panel > .table-bordered,
.panel > .table-responsive > .table-bordered { .panel > .table-responsive > .table-bordered {
border: 0; border: 0;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -64,6 +64,10 @@ ...@@ -64,6 +64,10 @@
> .panel-body + .table-responsive { > .panel-body + .table-responsive {
border-top: 1px solid @table-border-color; border-top: 1px solid @table-border-color;
} }
> .table > tbody:first-child th,
> .table > tbody:first-child td {
border-top: 0;
}
> .table-bordered, > .table-bordered,
> .table-responsive > .table-bordered { > .table-responsive > .table-bordered {
border: 0; border: 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