diff options
| author | Mark Otto <[email protected]> | 2014-09-04 19:06:01 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-09-04 19:06:01 -0700 |
| commit | 5b7a5f84d4255b09778bdc9b3502660cff511a90 (patch) | |
| tree | 8b14c4331ce532187126e187f7c110519157aeca /less | |
| parent | ce7363e0dbdd2ebe03f58acb37fbe493ebcd1db5 (diff) | |
| download | bootstrap-5b7a5f84d4255b09778bdc9b3502660cff511a90.tar.xz bootstrap-5b7a5f84d4255b09778bdc9b3502660cff511a90.zip | |
Fixes #14437: Round the corners of table rows in panels as well as the cells
Diffstat (limited to 'less')
| -rw-r--r-- | less/panels.less | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/less/panels.less b/less/panels.less index 00456f357..f41c16869 100644 --- a/less/panels.less +++ b/less/panels.less @@ -115,6 +115,9 @@ > thead:first-child, > tbody:first-child { > tr:first-child { + border-top-left-radius: (@panel-border-radius - 1); + border-top-right-radius: (@panel-border-radius - 1); + td:first-child, th:first-child { border-top-left-radius: (@panel-border-radius - 1); @@ -134,6 +137,9 @@ > tbody:last-child, > tfoot:last-child { > tr:last-child { + border-bottom-left-radius: (@panel-border-radius - 1); + border-bottom-right-radius: (@panel-border-radius - 1); + td:first-child, th:first-child { border-bottom-left-radius: (@panel-border-radius - 1); |
