diff options
| author | Mark Otto <[email protected]> | 2013-12-15 14:28:49 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-12-15 14:28:49 -0800 |
| commit | 6bc7126643e42b2f2b4ef4006046757a55b8e86e (patch) | |
| tree | 2f87f5dd2b7f0498209d818d919f5a06d90d2480 | |
| parent | 393d523cdbf14c4522ed13dca701120aeded352c (diff) | |
| parent | f4eb3df50ad43171ae37ccd1208a5bed72cc6ecb (diff) | |
| download | bootstrap-6bc7126643e42b2f2b4ef4006046757a55b8e86e.tar.xz bootstrap-6bc7126643e42b2f2b4ef4006046757a55b8e86e.zip | |
Merge pull request #11494 from blowsie/patch-2
Fixed single dropdown-toggle in btn-group-veritcal not being rounded
| -rw-r--r-- | less/button-groups.less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/less/button-groups.less b/less/button-groups.less index 794839d62..58fd90675 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); } |
