diff options
| author | Mark Otto <[email protected]> | 2013-08-11 18:06:26 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-11 18:06:26 -0700 |
| commit | 83f1a75e7a8ae4570641f1fcf88c2062373fff62 (patch) | |
| tree | 6b30d396ec7bbf6bcdacdc54e0748dd7db027ecd | |
| parent | 286636755a42887a24ec48c8c2db57b32f0df000 (diff) | |
| download | bootstrap-83f1a75e7a8ae4570641f1fcf88c2062373fff62.tar.xz bootstrap-83f1a75e7a8ae4570641f1fcf88c2062373fff62.zip | |
addressing #9189 manually, part 3: forms
| -rw-r--r-- | less/forms.less | 4 | ||||
| -rw-r--r-- | less/variables.less | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/less/forms.less b/less/forms.less index d0211eb14..97527fdbf 100644 --- a/less/forms.less +++ b/less/forms.less @@ -20,7 +20,7 @@ legend { margin-bottom: @line-height-computed; font-size: (@font-size-base * 1.5); line-height: inherit; - color: @gray-dark; + color: @legend-color; border: 0; border-bottom: 1px solid @legend-border-color; } @@ -121,7 +121,7 @@ input[type="number"] { padding: @padding-base-vertical @padding-base-horizontal; font-size: @font-size-base; line-height: @line-height-base; - color: @gray; + color: @input-color; vertical-align: middle; background-color: @input-bg; border: 1px solid @input-border; diff --git a/less/variables.less b/less/variables.less index 61d67ceed..bbe58ede0 100644 --- a/less/variables.less +++ b/less/variables.less @@ -133,6 +133,7 @@ @input-bg: #fff; @input-bg-disabled: @gray-lighter; +@input-color: @gray; @input-border: #ccc; @input-border-radius: @border-radius-base; @input-border-focus: #66afe9; @@ -143,6 +144,7 @@ @input-height-large: (floor(@font-size-large * @line-height-large) + (@padding-large-vertical * 2) + 2); @input-height-small: (floor(@font-size-small * @line-height-small) + (@padding-small-vertical * 2) + 2); +@legend-color: @gray-dark; @legend-border-color: #e5e5e5; @input-group-addon-border-color: @input-border; |
