diff options
| author | Mark Otto <[email protected]> | 2015-07-03 18:35:53 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2015-07-03 18:35:53 -0700 |
| commit | b451104bcd5a62170f5afc7a3c580d355e8ff333 (patch) | |
| tree | 91116f9b90c966598ee956b84f12a6628448e647 | |
| parent | 4665b9dd6fe97492da7cf7ea78206bfb097abbe3 (diff) | |
| download | bootstrap-b451104bcd5a62170f5afc7a3c580d355e8ff333.tar.xz bootstrap-b451104bcd5a62170f5afc7a3c580d355e8ff333.zip | |
use mixin on input transition
| -rw-r--r-- | scss/_forms.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/_forms.scss b/scss/_forms.scss index 7d16d013b..c2cd7733a 100644 --- a/scss/_forms.scss +++ b/scss/_forms.scss @@ -23,7 +23,7 @@ // Note: This has no effect on <select>s in some browsers, due to the limited stylability of `<select>`s in CSS. @include border-radius($input-border-radius); @include box-shadow($input-box-shadow); - transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; + @include transition(border-color ease-in-out .15s, box-shadow ease-in-out .15s); // Make inputs at least the height of their button counterpart (base line-height + padding + border). // Only apply the height to textual inputs and some selcts. |
