diff options
| author | Chris Rebert <[email protected]> | 2016-02-08 12:54:11 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2016-02-08 12:54:11 -0800 |
| commit | 950706dbf9556a080d3754c32b76dee2fbaf68d7 (patch) | |
| tree | 1c91b53ff07d3b19448749afec648e92a1061f95 | |
| parent | 3c8e08e3079dcfee1f8804c4015636b52289235b (diff) | |
| parent | 8141835682a986818014cb49a5c8ebd761b14c88 (diff) | |
| download | bootstrap-950706dbf9556a080d3754c32b76dee2fbaf68d7.tar.xz bootstrap-950706dbf9556a080d3754c32b76dee2fbaf68d7.zip | |
Merge pull request #19125 from twbs/division
_forms.scss: Use division instead of fractional multiplication
| -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 |
