From c319d610e2043478fdcdba0f1f03daef784a410e Mon Sep 17 00:00:00 2001 From: "Thomas P. Horton" Date: Thu, 23 Apr 2015 20:06:54 -0700 Subject: Round results from gutter division to prevent decimal margins and padding --- less/forms.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'less/forms.less') diff --git a/less/forms.less b/less/forms.less index 6dc1641b6..d1efabdab 100644 --- a/less/forms.less +++ b/less/forms.less @@ -576,7 +576,7 @@ input[type="checkbox"] { // Reposition the icon because it's now within a grid column and columns have // `position: relative;` on them. Also accounts for the grid gutter padding. .has-feedback .form-control-feedback { - right: (@grid-gutter-width / 2); + right: floor((@grid-gutter-width / 2)); } // Form group sizes -- cgit v1.2.3