From d5b2dea1a5b9d71a22a5948aff03f546181363f4 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 6 Jan 2016 14:47:33 -0800 Subject: Rip out the pager component --- docs/components/pagination.md | 51 +++---------------------------------------- 1 file changed, 3 insertions(+), 48 deletions(-) (limited to 'docs') diff --git a/docs/components/pagination.md b/docs/components/pagination.md index 1ec25b789..9804da83f 100644 --- a/docs/components/pagination.md +++ b/docs/components/pagination.md @@ -11,7 +11,7 @@ Provide pagination links for your site or app with the multi-page pagination com * Will be replaced with the ToC, excluding the "Contents" header {:toc} -## Default pagination +## Overview Simple pagination inspired by Rdio, great for apps and search results. The large block is hard to miss, easily scalable, and provides large click areas. @@ -39,7 +39,7 @@ Simple pagination inspired by Rdio, great for apps and search results. The large {% endexample %} -### Disabled and active states +## Disabled and active states Links are customizable for different circumstances. Use `.disabled` for unclickable links and `.active` to indicate the current page. @@ -49,7 +49,6 @@ Links are customizable for different circumstances. Use `.disabled` for unclicka The `.disabled` class uses `pointer-events: none` to try to disable the link functionality of ``s, but that CSS property is not yet standardized. In addition, even in browsers that do support `pointer-events: none`, keyboard navigation remains unaffected, meaning that sighted keyboard users and users of assistive technologies will still be able to activate these links. So to be safe, add a `tabindex="-1"` attribute on these links (to prevent them from receiving keyboard focus) and use custom JavaScript to disable their functionality. {% endcallout %} - {% example html %} {% endexample %} - -## Pager - -Quick previous and next links for simple pagination implementations with light markup and styles. It's great for simple sites like blogs or magazines. - -### Default example - -By default, the pager centers links. - -{% example html %} - -{% endexample %} - -### Aligned links - -Alternatively, you can align each link to the sides: - -{% example html %} - -{% endexample %} - - -### Optional disabled state - -Pager links also support the `.disabled` class (though note that the same advice about keyboard focus as for the default pagination applies here as well). - -{% example html %} - -{% endexample %} -- cgit v1.2.3 From e482fe24e14a5eb35afcb1ff5ef2a1afdf127d3a Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 6 Jan 2016 14:48:48 -0800 Subject: add docs notes --- docs/migration.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/migration.md b/docs/migration.md index 7066ec656..effbc90a5 100644 --- a/docs/migration.md +++ b/docs/migration.md @@ -36,7 +36,8 @@ Here are the big ticket items you'll want to be aware of when moving from v3 to - [Font Awesome](https://fortawesome.github.io/Font-Awesome/) - Dropped the Affix jQuery plugin. We recommend using a `position: sticky` polyfill instead. [See the HTML5 Please entry](http://html5please.com/#sticky) for details and specific polyfill recommendations. - If you were using Affix to apply additional, non-`position` styles, the polyfills might not support your use case. One option for such uses is the third-party [ScrollPos-Styler](https://github.com/acch/scrollpos-styler) library. -- Refactored nearly all components to use more unnested classes instead of children selectors. +- Dropped the pager component as it was essentially slightly customized buttons. +- Refactored nearly all components to use more un-nested classes instead of children selectors. ### Misc - Non-responsive usage of Bootstrap is no longer supported. @@ -113,6 +114,7 @@ New to Bootstrap 4 is the Reboot, a new stylesheet that builds on Normalize with ### Pagination - Explicit classes (`.page-item`, `.page-link`) are now required on the descendants of `.pagination`s +- Dropped the `.pager` component entirely as it was little more than customized outline buttons. ### Breadcrumbs -- cgit v1.2.3 From 20261385eacd6e86a362a08d56b4b4241ef248df Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 6 Jan 2016 14:57:00 -0800 Subject: fix blog example to use customized pagination based on button styles --- docs/examples/blog/blog.css | 8 ++------ docs/examples/blog/index.html | 8 +++----- 2 files changed, 5 insertions(+), 11 deletions(-) (limited to 'docs') 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 @@

Donec ullamcorper nulla non metus auctor fringilla. Nulla vitae elit libero, a pharetra augue.

-