aboutsummaryrefslogtreecommitdiff
path: root/docs/templates
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/templates
parentf9deb8017a81fd3d88306fab2d0a5715df9dfe74 (diff)
downloadbootstrap-5b947b8a2f801d33af2fe8d78f9655ce1ebd5e7c.tar.xz
bootstrap-5b947b8a2f801d33af2fe8d78f9655ce1ebd5e7c.zip
fix up padding on small buttons, add button examples
Diffstat (limited to 'docs/templates')
-rw-r--r--docs/templates/pages/base-css.mustache8
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/templates/pages/base-css.mustache b/docs/templates/pages/base-css.mustache
index 36f0d1ea5..4cc21e975 100644
--- a/docs/templates/pages/base-css.mustache
+++ b/docs/templates/pages/base-css.mustache
@@ -1383,6 +1383,10 @@
<button type="button" class="btn btn-large">{{_i}}Action{{/i}}</button>
</p>
<p>
+ <button type="button" class="btn btn-primary">{{_i}}Primary action{{/i}}</button>
+ <button type="button" class="btn">{{_i}}Action{{/i}}</button>
+ </p>
+ <p>
<button type="button" class="btn btn-small btn-primary">{{_i}}Primary action{{/i}}</button>
<button type="button" class="btn btn-small">{{_i}}Action{{/i}}</button>
</p>
@@ -1394,6 +1398,7 @@
<pre class="prettyprint linenums">
&lt;button class="btn btn-large" type="button"&gt;{{_i}}Large button{{/i}}&lt;/button&gt;
&lt;button class="btn btn-small" type="button"&gt;{{_i}}Small button{{/i}}&lt;/button&gt;
+&lt;button class="btn" type="button"&gt;{{_i}}Default button{{/i}}&lt;/button&gt;
&lt;button class="btn btn-mini" type="button"&gt;{{_i}}Mini button{{/i}}&lt;/button&gt;
</pre>
<p>{{_i}}Create block level buttons&mdash;those that span the full width of a parent&mdash; by adding <code>.btn-block</code>.{{/i}}</p>
@@ -1677,6 +1682,7 @@
<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> {{_i}}User{{/i}}</a>
<a class="btn btn-primary dropdown-toggle" data-toggle="dropdown" href="#"><span class="caret"></span></a>
@@ -1688,6 +1694,8 @@
<li><a href="#"><i class="i"></i> {{_i}}Make admin{{/i}}</a></li>
</ul>
</div>
+ <br><br>
+ <a class="btn btn-small" href="#"><i class="icon-star"></i></a>
</div>
</div>{{! /bs-docs-example }}