Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorMark Otto <otto@github.com>2013-12-16 05:22:55 +0400
committerMark Otto <otto@github.com>2013-12-16 05:22:55 +0400
commit4ee93c9f8529cfeef56d4178b91e1ddcb0bff09c (patch)
tree7407b67f271ec66fc97b7fd44e1bcac671e58508 /less
parent2979e4bcea25c428c801d77153dc0f663618ce20 (diff)
Fixes #10492 again, this time for last row's corners on striped tables
Diffstat (limited to 'less')
-rw-r--r--less/panels.less11
1 files changed, 11 insertions, 0 deletions
diff --git a/less/panels.less b/less/panels.less
index ad133ad216..1b72cebd16 100644
--- a/less/panels.less
+++ b/less/panels.less
@@ -95,6 +95,17 @@
border: 0;
margin-bottom: 0;
}
+ > .table-striped > tbody > tr:last-child,
+ > .table-responsive > .table-striped > tbody > tr:last-child {
+ td:first-child,
+ th:first-child {
+ border-bottom-left-radius: (@panel-border-radius - 1);
+ }
+ td:last-child,
+ th:last-child {
+ border-bottom-left-radius: (@panel-border-radius - 1);
+ }
+ }
}