diff options
Diffstat (limited to 'docs/base-css.html')
| -rw-r--r-- | docs/base-css.html | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/docs/base-css.html b/docs/base-css.html index eaa5aa51e..8ddb107ff 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -923,12 +923,12 @@ For example, <code><section></code> should be wrapped as inlin <h3>Search form</h3> <p>Add <code>.form-search</code> to the form and <code>.search-query</code> to the <code><input></code> for an extra-rounded text input.</p> <form class="bs-docs-example form-search"> - <input type="text" class="input-medium search-query"> + <input type="text" class="span3 search-query"> <button type="submit" class="btn">Search</button> </form> <pre class="prettyprint linenums"> <form class="form-search"> - <input type="text" class="input-medium search-query"> + <input type="text" class="span3 search-query"> <button type="submit" class="btn">Search</button> </form> </pre> @@ -936,8 +936,8 @@ For example, <code><section></code> should be wrapped as inlin <h3>Inline form</h3> <p>Add <code>.form-inline</code> for left-aligned labels and inline-block controls for a compact layout.</p> <form class="bs-docs-example form-inline"> - <input type="text" class="input-small" placeholder="Email"> - <input type="password" class="input-small" placeholder="Password"> + <input type="text" class="span3" placeholder="Email"> + <input type="password" class="span3" placeholder="Password"> <label class="checkbox"> <input type="checkbox"> Remember me </label> @@ -945,8 +945,8 @@ For example, <code><section></code> should be wrapped as inlin </form> <pre class="prettyprint linenums"> <form class="form-inline"> - <input type="text" class="input-small" placeholder="Email"> - <input type="password" class="input-small" placeholder="Password"> + <input type="text" class="span3" placeholder="Email"> + <input type="password" class="span3" placeholder="Password"> <label class="checkbox"> <input type="checkbox"> Remember me </label> @@ -1186,26 +1186,26 @@ For example, <code><section></code> should be wrapped as inlin <p>Instead of a <code><span></code> with text, use a <code>.btn</code> to attach a button (or two) to an input.</p> <form class="bs-docs-example"> <div class="input-append"> - <input id="appendedInputButton" type="text"> + <input class="span3" id="appendedInputButton" type="text"> <button class="btn" type="button">Go!</button> </div> </form> <pre class="prettyprint linenums"> <div class="input-append"> - <input class="span2" id="appendedInputButton" type="text"> + <input class="span3" id="appendedInputButton" type="text"> <button class="btn" type="button">Go!</button> </div> </pre> <form class="bs-docs-example"> <div class="input-append"> - <input id="appendedInputButtons" type="text"> + <input class="span3" id="appendedInputButtons" type="text"> <button class="btn" type="button">Search</button> <button class="btn" type="button">Options</button> </div> </form> <pre class="prettyprint linenums"> <div class="input-append"> - <input id="appendedInputButton" type="text"> + <input class="span3" id="appendedInputButton" type="text"> <button class="btn" type="button">Search</button> <button class="btn" type="button">Options</button> </div> @@ -1215,7 +1215,7 @@ For example, <code><section></code> should be wrapped as inlin <p></p> <form class="bs-docs-example"> <div class="input-append"> - <input class="span2" id="appendedDropdownButton" type="text"> + <input class="span3" id="appendedDropdownButton" type="text"> <div class="btn-group"> <button class="btn dropdown-toggle" data-toggle="dropdown">Action <span class="caret"></span></button> <ul class="dropdown-menu"> @@ -1231,7 +1231,7 @@ For example, <code><section></code> should be wrapped as inlin <pre class="prettyprint linenums"> <div class="input-append"> <input id="appendedInputButtons" type="text"> - <input class="span2" id="appendedDropdownButton" type="text"> + <input class="span3" id="appendedDropdownButton" type="text"> <div class="btn-group"> <button class="btn dropdown-toggle" data-toggle="dropdown"> Action @@ -1339,10 +1339,10 @@ For example, <code><section></code> should be wrapped as inlin <li><a href="#">Separated link</a></li> </ul> </div> - <input type="text"> + <input type="text" class="span3"> </div> <div class="input-append"> - <input type="text"> + <input type="text" class="span3"> <div class="btn-group"> <button class="btn" tabindex="-1">Action</button> <button class="btn dropdown-toggle" data-toggle="dropdown" tabindex="-1"> @@ -1362,10 +1362,10 @@ For example, <code><section></code> should be wrapped as inlin <form> <div class="input-prepend"> <div class="btn-group">...</div> - <input type="text"> + <input type="text" class="span3"> </div> <div class="input-append"> - <input type="text"> + <input type="text" class="span3"> <div class="btn-group">...</div> </div> </form> @@ -1374,23 +1374,23 @@ For example, <code><section></code> should be wrapped as inlin <h4>Search form</h4> <form class="bs-docs-example form-search"> <div class="input-append"> - <input type="text" class="search-query"> + <input type="text" class="search-query span3"> <button type="submit" class="btn">Search</button> </div> <div class="input-prepend"> <button type="submit" class="btn">Search</button> - <input type="text" class="search-query"> + <input type="text" class="search-query span3"> </div> </form> <pre class="prettyprint linenums"> <form class="form-search"> <div class="input-append"> - <input type="text" class="search-query"> + <input type="text" class="search-query span3"> <button type="submit" class="btn">Search</button> </div> <div class="input-prepend"> <button type="submit" class="btn">Search</button> - <input type="text" class="search-query"> + <input type="text" class="search-query span3"> </div> </form> </pre> |
