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 <markdotto@gmail.com>2013-12-16 02:28:49 +0400
committerMark Otto <markdotto@gmail.com>2013-12-16 02:28:49 +0400
commit6bc7126643e42b2f2b4ef4006046757a55b8e86e (patch)
tree2f87f5dd2b7f0498209d818d919f5a06d90d2480 /less
parent393d523cdbf14c4522ed13dca701120aeded352c (diff)
parentf4eb3df50ad43171ae37ccd1208a5bed72cc6ecb (diff)
Merge pull request #11494 from blowsie/patch-2
Fixed single dropdown-toggle in btn-group-veritcal not being rounded
Diffstat (limited to 'less')
-rw-r--r--less/button-groups.less4
1 files changed, 2 insertions, 2 deletions
diff --git a/less/button-groups.less b/less/button-groups.less
index 794839d62b..58fd906752 100644
--- a/less/button-groups.less
+++ b/less/button-groups.less
@@ -187,13 +187,13 @@
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
border-radius: 0;
}
-.btn-group-vertical > .btn-group:first-child {
+.btn-group-vertical > .btn-group:first-child:not(:last-child) {
> .btn:last-child,
> .dropdown-toggle {
.border-bottom-radius(0);
}
}
-.btn-group-vertical > .btn-group:last-child > .btn:first-child {
+.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
.border-top-radius(0);
}