diff options
Diffstat (limited to 'less/forms.less')
| -rw-r--r-- | less/forms.less | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/less/forms.less b/less/forms.less index bf15cc8a9..c45d6bdff 100644 --- a/less/forms.less +++ b/less/forms.less @@ -318,6 +318,12 @@ input[type="checkbox"] { .form-control { .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @input-border-radius-small); } + .form-control-static { + height: @input-height-small; + padding: @padding-small-vertical @padding-small-horizontal; + font-size: @font-size-small; + line-height: @line-height-small; + } } .input-lg { @@ -327,6 +333,12 @@ input[type="checkbox"] { .form-control { .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @input-border-radius-large); } + .form-control-static { + height: @input-height-large; + padding: @padding-large-vertical @padding-large-horizontal; + font-size: @font-size-large; + line-height: @line-height-large; + } } |
