Mercurial > wikked
view static/bootstrap/less/pager.less @ 134:f47b047c9414
Changed URL schemes around meta pages:
- They're now handled the same as normal pages.
- Added endpoint to get the main page.
- Reduced a bit the amount of redundant unquoting/URL massaging.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Thu, 05 Dec 2013 08:22:55 -0800 |
parents | a5a3d454eac9 |
children | d29e2f337b00 |
line wrap: on
line source
// // Pager pagination // -------------------------------------------------- .pager { margin: @baseLineHeight 0; list-style: none; text-align: center; .clearfix(); } .pager li { display: inline; } .pager li > a, .pager li > span { display: inline-block; padding: 5px 14px; background-color: #fff; border: 1px solid #ddd; .border-radius(15px); } .pager li > a:hover, .pager li > a:focus { text-decoration: none; background-color: #f5f5f5; } .pager .next > a, .pager .next > span { float: right; } .pager .previous > a, .pager .previous > span { float: left; } .pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focus, .pager .disabled > span { color: @grayLight; background-color: #fff; cursor: default; }