2012-06-29 00:46:45 -04:00
|
|
|
//
|
|
|
|
// Pager pagination
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-01-14 23:54:37 -05:00
|
|
|
|
|
|
|
.pager {
|
2013-06-29 16:06:14 -04:00
|
|
|
padding-left: 0;
|
2013-05-10 11:21:27 -04:00
|
|
|
margin: @line-height-computed 0;
|
2012-01-14 23:54:37 -05:00
|
|
|
list-style: none;
|
|
|
|
text-align: center;
|
2013-03-30 16:23:18 -04:00
|
|
|
.clearfix();
|
2013-04-17 11:32:48 -04:00
|
|
|
li {
|
|
|
|
display: inline;
|
|
|
|
> a,
|
|
|
|
> span {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 5px 14px;
|
|
|
|
background-color: @pagination-bg;
|
|
|
|
border: 1px solid @pagination-border;
|
2013-07-26 08:04:15 -04:00
|
|
|
border-radius: @pager-border-radius;
|
2013-04-17 11:32:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
> a:hover,
|
|
|
|
> a:focus {
|
|
|
|
text-decoration: none;
|
2013-08-17 16:07:21 -04:00
|
|
|
background-color: @pagination-hover-bg;
|
2013-04-17 11:32:48 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.next {
|
|
|
|
> a,
|
|
|
|
> span {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|
2013-04-21 22:35:36 -04:00
|
|
|
|
2013-04-17 11:32:48 -04:00
|
|
|
.previous {
|
|
|
|
> a,
|
|
|
|
> span {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.disabled {
|
|
|
|
> a,
|
|
|
|
> a:hover,
|
|
|
|
> a:focus,
|
|
|
|
> span {
|
2013-07-26 08:04:15 -04:00
|
|
|
color: @pager-disabled-color;
|
2013-04-17 13:47:23 -04:00
|
|
|
background-color: @pagination-bg;
|
2013-07-24 05:10:27 -04:00
|
|
|
cursor: not-allowed;
|
2013-04-17 11:32:48 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-14 23:54:37 -05:00
|
|
|
}
|