diff options
| author | Chris Rebert <[email protected]> | 2013-07-11 12:57:44 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2013-07-11 12:57:44 -0700 |
| commit | 5d9f51d4963393c4ec460c2cd6f451851a984342 (patch) | |
| tree | ae2dcc071daa4697ccf290f873eede612f74fdc3 /docs | |
| parent | 606d6e81d445ff58295b934d52ac1e31ae2052a6 (diff) | |
| download | bootstrap-5d9f51d4963393c4ec460c2cd6f451851a984342.tar.xz bootstrap-5d9f51d4963393c4ec460c2cd6f451851a984342.zip | |
rm .control-group from docs since it's no longer in the LESS
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/css.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/css.html b/docs/css.html index 7826742e8..e87abfbc0 100644 --- a/docs/css.html +++ b/docs/css.html @@ -1456,19 +1456,19 @@ For example, <code><section></code> should be wrapped as inline. <p>Validation styles are applied on a per-input basis. With horizontal forms, the <code><label class="control-label"></code> will always be styled.</p> <form class="bs-example form-horizontal"> - <div class="control-group has-warning"> + <div class="has-warning"> <label class="control-label" for="inputWarning">Input with warning</label> <div class="controls"> <input type="text" class="input-with-feedback" id="inputWarning"> </div> </div> - <div class="control-group has-error"> + <div class="has-error"> <label class="control-label" for="inputError">Input with error</label> <div class="controls"> <input type="text" class="input-with-feedback" id="inputError"> </div> </div> - <div class="control-group has-success"> + <div class="has-success"> <label class="control-label" for="inputSuccess">Input with success</label> <div class="controls"> <input type="text" class="input-with-feedback" id="inputSuccess"> @@ -1476,19 +1476,19 @@ For example, <code><section></code> should be wrapped as inline. </div> </form> {% highlight html %} -<div class="control-group has-warning"> +<div class="has-warning"> <label class="control-label" for="inputWarning">Input with warning</label> <div class="controls"> <input type="text" class="input-with-feedback" id="inputWarning"> </div> </div> -<div class="control-group has-error"> +<div class="has-error"> <label class="control-label" for="inputError">Input with error</label> <div class="controls"> <input type="text" class="input-with-feedback" id="inputError"> </div> </div> -<div class="control-group has-success"> +<div class="has-success"> <label class="control-label" for="inputSuccess">Input with success</label> <div class="controls"> <input type="text" class="input-with-feedback" id="inputSuccess"> |
