aboutsummaryrefslogtreecommitdiff
path: root/docs/examples
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2016-01-06 14:57:51 -0800
committerMark Otto <[email protected]>2016-01-06 14:57:51 -0800
commit095dd9ffb068ade2cf636951553430b969b34196 (patch)
tree3e5c077c4deff913c6f5657725613cc519f0c87a /docs/examples
parentc06cb8e3205776c0830cd4c7b541012f14f9461b (diff)
parent20261385eacd6e86a362a08d56b4b4241ef248df (diff)
downloadbootstrap-095dd9ffb068ade2cf636951553430b969b34196.tar.xz
bootstrap-095dd9ffb068ade2cf636951553430b969b34196.zip
Merge pull request #18782 from twbs/v4-rip-pager
v4: Drop pager component
Diffstat (limited to 'docs/examples')
-rw-r--r--docs/examples/blog/blog.css8
-rw-r--r--docs/examples/blog/index.html8
2 files changed, 5 insertions, 11 deletions
diff --git a/docs/examples/blog/blog.css b/docs/examples/blog/blog.css
index da14fce9c..5fed56424 100644
--- a/docs/examples/blog/blog.css
+++ b/docs/examples/blog/blog.css
@@ -125,14 +125,10 @@ h6, .h6 {
/* Pagination */
-.pager {
+.blog-pagination {
margin-bottom: 4rem;
- text-align: left;
}
-.pager > li > a {
- width: 8rem;
- padding: .75rem 1.25rem;
- text-align: center;
+.blog-pagination > .btn {
border-radius: 2rem;
}
diff --git a/docs/examples/blog/index.html b/docs/examples/blog/index.html
index 57cfafacf..d73f5ec69 100644
--- a/docs/examples/blog/index.html
+++ b/docs/examples/blog/index.html
@@ -104,11 +104,9 @@
<p>Donec ullamcorper nulla non metus auctor fringilla. Nulla vitae elit libero, a pharetra augue.</p>
</div><!-- /.blog-post -->
- <nav>
- <ul class="pager">
- <li><a href="#">Older</a></li>
- <li class="disabled"><a href="#">Newer</a></li>
- </ul>
+ <nav class="blog-pagination">
+ <a class="btn btn-outline-primary" href="#">Older</a>
+ <a class="btn btn-outline-secondary disabled" href="#">Newer</a>
</nav>
</div><!-- /.blog-main -->