aboutsummaryrefslogtreecommitdiff
path: root/docs/css.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-01-16 12:20:34 -0800
committerMark Otto <[email protected]>2013-01-16 12:23:05 -0800
commit992e0d922ae5c15bf9df2d65cbc6293cf203734f (patch)
treed04f016e94931c6339dcb5deaee146d37b3d8aa4 /docs/css.html
parentb6b8633542623b1d86254b6d2b653754bb2c933f (diff)
downloadbootstrap-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.html14
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, &lt;code&gt;&amp;lt;section&amp;gt;&lt;/code&gt; 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">
-&lt;label class="checkbox inline"&gt;
+&lt;label class="checkbox-inline"&gt;
&lt;input type="checkbox" id="inlineCheckbox1" value="option1"&gt; 1
&lt;/label&gt;
-&lt;label class="checkbox inline"&gt;
+&lt;label class="checkbox-inline"&gt;
&lt;input type="checkbox" id="inlineCheckbox2" value="option2"&gt; 2
&lt;/label&gt;
-&lt;label class="checkbox inline"&gt;
+&lt;label class="checkbox-inline"&gt;
&lt;input type="checkbox" id="inlineCheckbox3" value="option3"&gt; 3
&lt;/label&gt;
</pre>