diff options
| author | Mark Otto <[email protected]> | 2013-11-28 12:49:51 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-11-28 12:49:51 -0800 |
| commit | c13524e7e0f3d2a62935bbe2cb57c1388e04e052 (patch) | |
| tree | c052ecbf0c507b3d79532a516e57a491c19870be /less | |
| parent | 9f68a5b241fff2adce3b95b5c5b486e84a1d88d5 (diff) | |
| download | bootstrap-c13524e7e0f3d2a62935bbe2cb57c1388e04e052.tar.xz bootstrap-c13524e7e0f3d2a62935bbe2cb57c1388e04e052.zip | |
Fixes #11553: Prevent double border on tables in panels without thead content
Diffstat (limited to 'less')
| -rw-r--r-- | less/panels.less | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/less/panels.less b/less/panels.less index 9a72732ab..549588073 100644 --- a/less/panels.less +++ b/less/panels.less @@ -64,6 +64,10 @@ > .panel-body + .table-responsive { border-top: 1px solid @table-border-color; } + > .table > tbody:first-child th, + > .table > tbody:first-child td { + border-top: 0; + } > .table-bordered, > .table-responsive > .table-bordered { border: 0; |
