diff options
| author | Supergibbs <[email protected]> | 2014-01-30 21:49:37 -0800 |
|---|---|---|
| committer | Supergibbs <[email protected]> | 2014-02-05 14:29:23 -0800 |
| commit | 08ff305ed7ba689238d4524b0285d37d15aaf8fa (patch) | |
| tree | c07af09624ed788710f00c79f7690c91d1100460 /less | |
| parent | 7eb532262fbd1112215b5a547b9285794b5360ab (diff) | |
| download | bootstrap-08ff305ed7ba689238d4524b0285d37d15aaf8fa.tar.xz bootstrap-08ff305ed7ba689238d4524b0285d37d15aaf8fa.zip | |
Added border radiuses to table when in a panel. Fixes #12461
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 e677d2b29..7896562cb 100644 --- a/less/panels.less +++ b/less/panels.less @@ -72,6 +72,8 @@ // Add border top radius for first one > .table:first-child, > .table-responsive:first-child > .table:first-child { + .border-top-radius((@panel-border-radius - 1)); + > thead:first-child, > tbody:first-child { > tr:first-child { @@ -89,6 +91,8 @@ // Add border bottom radius for last one > .table:last-child, > .table-responsive:last-child > .table:last-child { + .border-bottom-radius((@panel-border-radius - 1)); + > tbody:last-child, > tfoot:last-child { > tr:last-child { |
