diff options
| author | Mark Otto <[email protected]> | 2012-01-27 09:36:49 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-01-27 09:36:49 -0800 |
| commit | e44a7dd4ff2d505e6bc41ba0a5fdf66650cdf605 (patch) | |
| tree | f17714b72e812756cbd0c125be810962909ea8b4 /docs | |
| parent | 9d0328ff00a1fa28f58b3cefa826bed9e21ab580 (diff) | |
| download | bootstrap-e44a7dd4ff2d505e6bc41ba0a5fdf66650cdf605.tar.xz bootstrap-e44a7dd4ff2d505e6bc41ba0a5fdf66650cdf605.zip | |
buttons for toggle links in js docs, code example for offsetting in grid
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/templates/pages/download.mustache | 6 | ||||
| -rw-r--r-- | docs/templates/pages/scaffolding.mustache | 8 |
2 files changed, 11 insertions, 3 deletions
diff --git a/docs/templates/pages/download.mustache b/docs/templates/pages/download.mustache index 0f997d368..5b9f765ab 100644 --- a/docs/templates/pages/download.mustache +++ b/docs/templates/pages/download.mustache @@ -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> @@ -157,7 +157,7 @@ <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> diff --git a/docs/templates/pages/scaffolding.mustache b/docs/templates/pages/scaffolding.mustache index 7781e86f6..cf672cc6e 100644 --- a/docs/templates/pages/scaffolding.mustache +++ b/docs/templates/pages/scaffolding.mustache @@ -71,6 +71,8 @@ </div> </div><!-- /row --> + <br> + <h2>Offsetting columns</h2> <div class="row show-grid"> <div class="span4">4</div> @@ -83,6 +85,12 @@ <div class="row show-grid"> <div class="span8 offset4">8 offset 4</div> </div><!-- /row --> +<pre class="prettyprint linenums"> +<div class="row"> + <div class="span4">...</div> + <div class="span4 offset4">...</div> +</div> +</pre> <br> |
