From 8141835682a986818014cb49a5c8ebd761b14c88 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 8 Feb 2016 03:34:24 -0800 Subject: [PATCH] _forms.scss: Use division instead of fractional multiplication [skip sauce] [skip validator] --- scss/_forms.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scss/_forms.scss b/scss/_forms.scss index 35c9af7ffb..26fbb19eaa 100644 --- a/scss/_forms.scss +++ b/scss/_forms.scss @@ -256,8 +256,8 @@ input[type="checkbox"] { .form-control-danger { padding-right: ($input-padding-x * 3); background-repeat: no-repeat; - background-position: center right ($input-height * .25); - background-size: ($input-height * .5) ($input-height * .5); + background-position: center right ($input-height / 4); + background-size: ($input-height / 2) ($input-height / 2); } // Form validation states -- 2.47.2