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