Use right margins for toolbar btn-groups rather than left.

Fixes #2830
This commit is contained in:
Ben Ogle 2014-07-08 11:18:35 -07:00
parent 2b957beeda
commit 5c5576c39d

View File

@ -64,15 +64,15 @@
}
.btn-toolbar {
> .btn-group {
> .btn-group + .btn-group, > .btn-group + .btn, > .btn + .btn {
float: none;
display: inline-block;
}
> * {
margin-right: 0;
margin-left: @component-padding/2;
}
> *:first-child {
margin-left: 0;
}
> * {
margin-right: @component-padding / 2;
}
> *:last-child {
margin-right: 0;
}
}