diff options
| author | Mark Otto <[email protected]> | 2013-01-16 12:20:34 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-01-16 12:23:05 -0800 |
| commit | 992e0d922ae5c15bf9df2d65cbc6293cf203734f (patch) | |
| tree | d04f016e94931c6339dcb5deaee146d37b3d8aa4 /docs/css.html | |
| parent | b6b8633542623b1d86254b6d2b653754bb2c933f (diff) | |
| download | bootstrap-992e0d922ae5c15bf9df2d65cbc6293cf203734f.tar.xz bootstrap-992e0d922ae5c15bf9df2d65cbc6293cf203734f.zip | |
Re-add and update form styles:
* Restore forms.less file
* Overhaul .radio.inline .checkbox.inline to be .radio-inline or .checkbox-inline
* Update docs to reflect changes
Diffstat (limited to 'docs/css.html')
| -rw-r--r-- | docs/css.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/css.html b/docs/css.html index 5054df37b..756cec1ea 100644 --- a/docs/css.html +++ b/docs/css.html @@ -1228,26 +1228,26 @@ For example, <code>&lt;section&gt;</code> should be wrapped </pre> <h4>Inline checkboxes</h4> - <p>Add the <code>.inline</code> class to a series of checkboxes or radios for controls appear on the same line.</p> + <p>Use <code>.checkbox-inline</code> or <code>.radio-inline</code> class to a series of checkboxes or radios for controls appear on the same line.</p> <form class="bs-docs-example"> - <label class="checkbox inline"> + <label class="checkbox-inline"> <input type="checkbox" id="inlineCheckbox1" value="option1"> 1 </label> - <label class="checkbox inline"> + <label class="checkbox-inline"> <input type="checkbox" id="inlineCheckbox2" value="option2"> 2 </label> - <label class="checkbox inline"> + <label class="checkbox-inline"> <input type="checkbox" id="inlineCheckbox3" value="option3"> 3 </label> </form> <pre class="prettyprint linenums"> -<label class="checkbox inline"> +<label class="checkbox-inline"> <input type="checkbox" id="inlineCheckbox1" value="option1"> 1 </label> -<label class="checkbox inline"> +<label class="checkbox-inline"> <input type="checkbox" id="inlineCheckbox2" value="option2"> 2 </label> -<label class="checkbox inline"> +<label class="checkbox-inline"> <input type="checkbox" id="inlineCheckbox3" value="option3"> 3 </label> </pre> |
