aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-09-04 19:06:01 -0700
committerMark Otto <[email protected]>2014-09-04 19:06:01 -0700
commit5b7a5f84d4255b09778bdc9b3502660cff511a90 (patch)
tree8b14c4331ce532187126e187f7c110519157aeca /less
parentce7363e0dbdd2ebe03f58acb37fbe493ebcd1db5 (diff)
downloadbootstrap-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.less6
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);