]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
buttons for toggle links in js docs, code example for offsetting in grid
authorMark Otto <markdotto@gmail.com>
Fri, 27 Jan 2012 17:36:49 +0000 (09:36 -0800)
committerMark Otto <markdotto@gmail.com>
Fri, 27 Jan 2012 17:36:49 +0000 (09:36 -0800)
docs/templates/pages/download.mustache
docs/templates/pages/scaffolding.mustache

index 0f997d368674d337117dc9d684535c04bd010512..5b9f765ab90cc2ba6d6536d7f6ad42931fa116d0 100644 (file)
@@ -19,7 +19,7 @@
 
 <section class="download" id="components">
   <div class="page-header">
-    <a class="pull-right toggle-all" href="#">Toggle all</a>
+    <a class="btn small pull-right toggle-all" href="#">Toggle all</a>
     <h1>
       1. Select components
       <small>Get just the CSS you need</small>
@@ -79,7 +79,7 @@
 
 <section class="download" id="variables">
   <div class="page-header">
-    <a class="pull-right toggle-all" href="#">Reset to defaults</a>
+    <a class="btn small pull-right toggle-all" href="#">Reset to defaults</a>
     <h1>
       2. Modify variables
       <small>Customize Bootstrap without using a LESS compiler</small>
 
 <section class="download" id="plugins">
   <div class="page-header">
-    <a class="pull-right toggle-all" href="#">Toggle all</a>
+    <a class="btn small pull-right toggle-all" href="#">Toggle all</a>
     <h1>
       3. Select jQuery plugins
       <small>Quickly add only the necessary javascript</small>
index 7781e86f6572504ba45acb5a3d62385a006d4341..cf672cc6e08898e3a164ba7da106fb8b6daa2045 100644 (file)
@@ -71,6 +71,8 @@
     </div>
   </div><!-- /row -->
 
+  <br>
+
   <h2>Offsetting columns</h2>
   <div class="row show-grid">
     <div class="span4">4</div>
   <div class="row show-grid">
     <div class="span8 offset4">8 offset 4</div>
   </div><!-- /row -->
+<pre class="prettyprint linenums">
+&lt;div class="row"&gt;
+  &lt;div class="span4"&gt;...&lt;/div&gt;
+  &lt;div class="span4 offset4"&gt;...&lt;/div&gt;
+&lt;/div&gt;
+</pre>
 
   <br>