aboutsummaryrefslogtreecommitdiff
path: root/docs/base-css.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-08-17 16:11:52 -0700
committerMark Otto <[email protected]>2012-08-17 16:11:52 -0700
commit5b947b8a2f801d33af2fe8d78f9655ce1ebd5e7c (patch)
treea57b9c4931502db77f9f21fa4e2ab5d4c9cec6d2 /docs/base-css.html
parentf9deb8017a81fd3d88306fab2d0a5715df9dfe74 (diff)
downloadbootstrap-5b947b8a2f801d33af2fe8d78f9655ce1ebd5e7c.tar.xz
bootstrap-5b947b8a2f801d33af2fe8d78f9655ce1ebd5e7c.zip
fix up padding on small buttons, add button examples
Diffstat (limited to 'docs/base-css.html')
-rw-r--r--docs/base-css.html10
1 files changed, 9 insertions, 1 deletions
diff --git a/docs/base-css.html b/docs/base-css.html
index fb6616fb7..3ea3bdce3 100644
--- a/docs/base-css.html
+++ b/docs/base-css.html
@@ -967,7 +967,7 @@ For example, &lt;code&gt;section&lt;/code&gt; should be wrapped as inline.
</pre>
<h3>Textarea</h3>
- <p>Form control which supports multiple lines of text. Change <code>rows</code> attribute as necessary.</p>
+ <p>Form control which supports multiple lines of text. Change <code>row</code> attribute as necessary.</p>
<form class="bs-docs-example form-inline">
<textarea rows="3"></textarea>
</form>
@@ -1446,6 +1446,10 @@ For example, &lt;code&gt;section&lt;/code&gt; should be wrapped as inline.
<button type="button" class="btn btn-large">Action</button>
</p>
<p>
+ <button type="button" class="btn btn-primary">Primary action</button>
+ <button type="button" class="btn">Action</button>
+ </p>
+ <p>
<button type="button" class="btn btn-small btn-primary">Primary action</button>
<button type="button" class="btn btn-small">Action</button>
</p>
@@ -1457,6 +1461,7 @@ For example, &lt;code&gt;section&lt;/code&gt; should be wrapped as inline.
<pre class="prettyprint linenums">
&lt;button class="btn btn-large" type="button"&gt;Large button&lt;/button&gt;
&lt;button class="btn btn-small" type="button"&gt;Small button&lt;/button&gt;
+&lt;button class="btn" type="button"&gt;Default button&lt;/button&gt;
&lt;button class="btn btn-mini" type="button"&gt;Mini button&lt;/button&gt;
</pre>
<p>Create block level buttons&mdash;those that span the full width of a parent&mdash; by adding <code>.btn-block</code>.</p>
@@ -1740,6 +1745,7 @@ For example, &lt;code&gt;section&lt;/code&gt; should be wrapped as inline.
<a class="btn" href="#"><i class="icon-align-right"></i></a>
<a class="btn" href="#"><i class="icon-align-justify"></i></a>
</div>
+ <br><br>
<div class="btn-group">
<a class="btn btn-primary" href="#"><i class="icon-user icon-white"></i> User</a>
<a class="btn btn-primary dropdown-toggle" data-toggle="dropdown" href="#"><span class="caret"></span></a>
@@ -1751,6 +1757,8 @@ For example, &lt;code&gt;section&lt;/code&gt; should be wrapped as inline.
<li><a href="#"><i class="i"></i> Make admin</a></li>
</ul>
</div>
+ <br><br>
+ <a class="btn btn-small" href="#"><i class="icon-star"></i></a>
</div>
</div>