Commit b0ab806d authored by Mark Otto's avatar Mark Otto

fix negative indenting in button group for nested button groups

parent 54a3e4b7
...@@ -3421,7 +3421,10 @@ button.close { ...@@ -3421,7 +3421,10 @@ button.close {
outline: none; outline: none;
} }
.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; margin-left: -1px;
} }
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -55,7 +55,10 @@ ...@@ -55,7 +55,10 @@
} }
// Prevent double borders when buttons are next to each other // 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; margin-left: -1px;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment