diff options
| author | Chris Rebert <[email protected]> | 2014-12-17 18:36:51 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2014-12-17 18:39:43 -0800 |
| commit | 12c5473e7a3633616628c47e20e0eb23bbb01aec (patch) | |
| tree | 84c2bd9ad560b6b61a269eff74fef51636ec06b4 /docs | |
| parent | 90f4767d06641a44a2563f53e779fb572ba9ea60 (diff) | |
| download | bootstrap-12c5473e7a3633616628c47e20e0eb23bbb01aec.tar.xz bootstrap-12c5473e7a3633616628c47e20e0eb23bbb01aec.zip | |
rename .previous => .pager-prev , .next => .pager-next
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/components/pagination.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/components/pagination.md b/docs/components/pagination.md index c16f97cb6..dacc653f7 100644 --- a/docs/components/pagination.md +++ b/docs/components/pagination.md @@ -63,7 +63,7 @@ Links are customizable for different circumstances. Use `.disabled` for unclicka </nav> {% endexample %} -You can optionally swap out active or disabled anchors for `<span>`, or omit the anchor in the case of the previous/next arrows, to remove click functionality while retaining intended styles. +You can optionally swap out active or disabled anchors for `<span>`, or omit the anchor in the case of the prev/next arrows, to remove click functionality while retaining intended styles. {% highlight html %} <nav> @@ -152,8 +152,8 @@ Alternatively, you can align each link to the sides: {% example html %} <nav> <ul class="pager"> - <li class="previous"><a href="#">Older</a></li> - <li class="next"><a href="#">Newer</a></li> + <li class="pager-prev"><a href="#">Older</a></li> + <li class="pager-next"><a href="#">Newer</a></li> </ul> </nav> {% endexample %} @@ -166,8 +166,8 @@ Pager links also use the `.disabled` class. {% highlight html %} <nav> <ul class="pager"> - <li class="previous disabled"><a href="#">Older</a></li> - <li class="next"><a href="#">Newer</a></li> + <li class="pager-prev disabled"><a href="#">Older</a></li> + <li class="pager-next"><a href="#">Newer</a></li> </ul> </nav> {% endhighlight %} |
