diff options
| author | fat <[email protected]> | 2013-08-02 15:10:47 -0700 |
|---|---|---|
| committer | fat <[email protected]> | 2013-08-02 15:10:47 -0700 |
| commit | e969d2ff18214c8d3b2730155d933c0acd614344 (patch) | |
| tree | b529f68e63c0b6e98003ec9f9d5d771de500011b /less/forms.less | |
| parent | 69f99201327662ec1bd0e15516a064e6dcc9236c (diff) | |
| parent | 173dac4e54281312ebb7ff993df20caffbc56840 (diff) | |
| download | bootstrap-e969d2ff18214c8d3b2730155d933c0acd614344.tar.xz bootstrap-e969d2ff18214c8d3b2730155d933c0acd614344.zip | |
Merge branch '3.0.0-wip' of github.com:twbs/bootstrap into 3.0.0-wip
Diffstat (limited to 'less/forms.less')
| -rw-r--r-- | less/forms.less | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/less/forms.less b/less/forms.less index f4e8c996d..494d328c0 100644 --- a/less/forms.less +++ b/less/forms.less @@ -222,12 +222,14 @@ input[type="number"] { height: @input-height-large; padding: @padding-large-vertical @padding-large-horizontal; font-size: @font-size-large; + line-height: @line-height-large; border-radius: @border-radius-large; } .input-small { height: @input-height-small; padding: @padding-small-vertical @padding-small-horizontal; font-size: @font-size-small; + line-height: @line-height-small; border-radius: @border-radius-small; } @@ -255,15 +257,15 @@ textarea { // Warning .has-warning { - .form-control-validation(@state-warning-text, @state-warning-text, @state-warning-bg); + .form-control-validation(@state-warning-text; @state-warning-text; @state-warning-bg); } // Error .has-error { - .form-control-validation(@state-danger-text, @state-danger-text, @state-danger-bg); + .form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg); } // Success .has-success { - .form-control-validation(@state-success-text, @state-success-text, @state-success-bg); + .form-control-validation(@state-success-text; @state-success-text; @state-success-bg); } |
