diff options
| author | Mark Otto <[email protected]> | 2013-10-20 19:54:22 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-10-20 19:54:22 -0700 |
| commit | dd34102cb6bb601c3103f2c74804d2382271c0e1 (patch) | |
| tree | a4bc36ed628bd49e9d31fecfcfeebdba8c59bedc /dist/css/bootstrap.css | |
| parent | 23a85d6a7af6fdfdf59756515a760d332f51aa95 (diff) | |
| download | bootstrap-dd34102cb6bb601c3103f2c74804d2382271c0e1.tar.xz bootstrap-dd34102cb6bb601c3103f2c74804d2382271c0e1.zip | |
Fixes #10522: Enable use of form validation class on .radio, .checkbox, .radio-inline, and .checkbox-inline
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 87996fa88..4d49328bd 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -2034,7 +2034,11 @@ textarea.input-lg { } .has-warning .help-block, -.has-warning .control-label { +.has-warning .control-label, +.has-warning .radio, +.has-warning .checkbox, +.has-warning .radio-inline, +.has-warning .checkbox-inline { color: #c09853; } @@ -2057,7 +2061,11 @@ textarea.input-lg { } .has-error .help-block, -.has-error .control-label { +.has-error .control-label, +.has-error .radio, +.has-error .checkbox, +.has-error .radio-inline, +.has-error .checkbox-inline { color: #b94a48; } @@ -2080,7 +2088,11 @@ textarea.input-lg { } .has-success .help-block, -.has-success .control-label { +.has-success .control-label, +.has-success .radio, +.has-success .checkbox, +.has-success .radio-inline, +.has-success .checkbox-inline { color: #468847; } |
