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:
authorKevin Kirsche <Kev.Kirsche+GitHub@gmail.com>2015-06-22 15:35:47 +0300
committerKevin Kirsche <Kev.Kirsche+GitHub@gmail.com>2015-06-22 15:35:47 +0300
commit5387ed62b6e5710835fce86b91b6c52c5a17b73a (patch)
treecb5ac5c7275cd15d730194363c6dc89baf6f36da /less
parent1b745460784b83937ebca491bc8cb072a8bbbc9b (diff)
Fix border-radius not being set on left of vertical btn group
While this is correct that it was not being set, I did not notice any visible difference in Chrome on OS X when it is not set. Fixes #16683
Diffstat (limited to 'less')
-rw-r--r--less/button-groups.less2
1 files changed, 2 insertions, 0 deletions
diff --git a/less/button-groups.less b/less/button-groups.less
index 6a0c5a865c..4f37c6b41d 100644
--- a/less/button-groups.less
+++ b/less/button-groups.less
@@ -173,11 +173,13 @@
border-radius: 0;
}
&:first-child:not(:last-child) {
+ border-top-left-radius: @btn-border-radius-base;
border-top-right-radius: @btn-border-radius-base;
.border-bottom-radius(0);
}
&:last-child:not(:first-child) {
border-bottom-left-radius: @btn-border-radius-base;
+ border-bottom-right-radius: @btn-border-radius-base;
.border-top-radius(0);
}
}