aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-08-12 23:44:50 -0700
committerMark Otto <[email protected]>2013-08-12 23:44:50 -0700
commitb0ab806dcc3c5d64a80f34acefeb3ac75e860b33 (patch)
tree1b122ca3d09594b38994b8902070c64c468a4262 /less
parent54a3e4b780b711660e650d909e0e11875d7ff505 (diff)
downloadbootstrap-b0ab806dcc3c5d64a80f34acefeb3ac75e860b33.tar.xz
bootstrap-b0ab806dcc3c5d64a80f34acefeb3ac75e860b33.zip
fix negative indenting in button group for nested button groups
Diffstat (limited to 'less')
-rw-r--r--less/button-groups.less5
1 files changed, 4 insertions, 1 deletions
diff --git a/less/button-groups.less b/less/button-groups.less
index d9c91252b..28cb90fc1 100644
--- a/less/button-groups.less
+++ b/less/button-groups.less
@@ -55,7 +55,10 @@
}
// Prevent double borders when buttons are next to each other
-.btn-group .btn + .btn {
+.btn-group .btn + .btn,
+.btn-group .btn + .btn-group,
+.btn-group .btn-group + .btn,
+.btn-group .btn-group + .btn-group {
margin-left: -1px;
}