aboutsummaryrefslogtreecommitdiff
path: root/docs/docs.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-03-30 18:41:26 -0700
committerMark Otto <[email protected]>2013-03-30 18:41:26 -0700
commit40f671a531a06facd0265b1d2c99453eb7e9dda8 (patch)
treea3be242f4206022e93093f196765665e140eebaf /docs/docs.html
parente560c41ed107cbaf00baf5082ffb18ac015afa4d (diff)
downloadbootstrap-40f671a531a06facd0265b1d2c99453eb7e9dda8.tar.xz
bootstrap-40f671a531a06facd0265b1d2c99453eb7e9dda8.zip
add basic back to top link via affix
Diffstat (limited to 'docs/docs.html')
-rw-r--r--docs/docs.html47
1 files changed, 36 insertions, 11 deletions
diff --git a/docs/docs.html b/docs/docs.html
index 4c491d686..77a43097d 100644
--- a/docs/docs.html
+++ b/docs/docs.html
@@ -3,7 +3,6 @@ layout: default
title: Bootstrap Documentation
---
-
<div class="bs-docs-container">
<!-- Welcome
@@ -4470,20 +4469,42 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
<p>Linkify list group items by using anchor tags instead of list items (that also means a parent <code>&lt;div&gt;</code> instead of an <code>&lt;ul&gt;</code>. No need for individual parents around each element.</p>
<div class="bs-docs-example">
<div class="list-group">
- <a href="#" class="list-group-item active">Cras justo odio</a>
- <a href="#" class="list-group-item">Dapibus ac facilisis in</a>
- <a href="#" class="list-group-item">Morbi leo risus</a>
- <a href="#" class="list-group-item">Porta ac consectetur ac</a>
- <a href="#" class="list-group-item">Vestibulum at eros</a>
+ <a href="#" class="list-group-item active">
+ Cras justo odio
+ <span class="glyphicon glyphicon-chevron-right"></span>
+ </a>
+ <a href="#" class="list-group-item">Dapibus ac facilisis in
+ <span class="glyphicon glyphicon-chevron-right"></span>
+ </a>
+ <a href="#" class="list-group-item">Morbi leo risus
+ <span class="glyphicon glyphicon-chevron-right"></span>
+ </a>
+ <a href="#" class="list-group-item">Porta ac consectetur ac
+ <span class="glyphicon glyphicon-chevron-right"></span>
+ </a>
+ <a href="#" class="list-group-item">Vestibulum at eros
+ <span class="glyphicon glyphicon-chevron-right"></span>
+ </a>
</div>
</div>
{% highlight html linenos %}
<div class="list-group">
- <a href="#" class="list-group-item active">Cras justo odio</a>
- <a href="#" class="list-group-item">Dapibus ac facilisis in</a>
- <a href="#" class="list-group-item">Morbi leo risus</a>
- <a href="#" class="list-group-item">Porta ac consectetur ac</a>
- <a href="#" class="list-group-item">Vestibulum at eros</a>
+ <a href="#" class="list-group-item active">
+ Cras justo odio
+ <span class="glyphicon glyphicon-chevron-right"></span>
+ </a>
+ <a href="#" class="list-group-item">Dapibus ac facilisis in
+ <span class="glyphicon glyphicon-chevron-right"></span>
+ </a>
+ <a href="#" class="list-group-item">Morbi leo risus
+ <span class="glyphicon glyphicon-chevron-right"></span>
+ </a>
+ <a href="#" class="list-group-item">Porta ac consectetur ac
+ <span class="glyphicon glyphicon-chevron-right"></span>
+ </a>
+ <a href="#" class="list-group-item">Vestibulum at eros
+ <span class="glyphicon glyphicon-chevron-right"></span>
+ </a>
</div>
{% endhighlight %}
@@ -6476,3 +6497,7 @@ $('[data-spy="affix"]').each(function () {
</section>
</div><!-- /.container -->
+
+<a href="#welcome" class="bs-docs-top">
+ Back to top
+</a>