diff options
| author | Chris Rebert <[email protected]> | 2016-02-08 03:34:24 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2016-02-08 03:34:24 -0800 |
| commit | 8141835682a986818014cb49a5c8ebd761b14c88 (patch) | |
| tree | 0b998a2bf7b072ea60152e58896f0373a6b2f335 | |
| parent | 8ffcb5f055c783ed8c0953444c17326190a40ef3 (diff) | |
| download | bootstrap-8141835682a986818014cb49a5c8ebd761b14c88.tar.xz bootstrap-8141835682a986818014cb49a5c8ebd761b14c88.zip | |
_forms.scss: Use division instead of fractional multiplication
[skip sauce]
[skip validator]
| -rw-r--r-- | scss/_forms.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scss/_forms.scss b/scss/_forms.scss index 35c9af7ff..26fbb19ea 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 |
