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>2012-11-28 13:51:04 +0400
committerMark Otto <otto@github.com>2012-11-28 13:51:04 +0400
commit783120dffaab396955b0ad237bf3a82a73a6e1dc (patch)
treef0a6df3ca26c68f1c1b3375d166d243c009329ac /less
parent014d3cedf5f92e9b9f246cef2c639b2845e6741f (diff)
Fixes #5927: Scope button group 5px button left margin to immediate children
Diffstat (limited to 'less')
-rw-r--r--less/button-groups.less6
1 files changed, 3 insertions, 3 deletions
diff --git a/less/button-groups.less b/less/button-groups.less
index 002a3ff075..2963c75def 100644
--- a/less/button-groups.less
+++ b/less/button-groups.less
@@ -24,9 +24,9 @@
font-size: 0; // Hack to remove whitespace that results from using inline-block
margin-top: @baseLineHeight / 2;
margin-bottom: @baseLineHeight / 2;
- .btn + .btn,
- .btn-group + .btn,
- .btn + .btn-group {
+ > .btn + .btn,
+ > .btn-group + .btn,
+ > .btn + .btn-group {
margin-left: 5px;
}
}