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