From 5c5576c39de68f6a282e2fc4dffa1447d8fe0241 Mon Sep 17 00:00:00 2001 From: Ben Ogle Date: Tue, 8 Jul 2014 11:18:35 -0700 Subject: [PATCH] Use right margins for toolbar btn-groups rather than left. Fixes #2830 --- static/buttons.less | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/static/buttons.less b/static/buttons.less index e4b9993b9..cf616903a 100644 --- a/static/buttons.less +++ b/static/buttons.less @@ -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; + } }