2012-06-29 06:46:45 +02:00
|
|
|
//
|
|
|
|
// Pager pagination
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-01-15 05:54:37 +01:00
|
|
|
|
|
|
|
.pager {
|
2013-05-10 17:21:27 +02:00
|
|
|
margin: @line-height-computed 0;
|
2012-01-15 05:54:37 +01:00
|
|
|
list-style: none;
|
|
|
|
text-align: center;
|
2013-03-30 21:23:18 +01: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;
|
|
|
|
border-radius: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> a:hover,
|
|
|
|
> a:focus {
|
|
|
|
text-decoration: none;
|
|
|
|
background-color: @pagination-active-bg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.next {
|
|
|
|
> a,
|
|
|
|
> span {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|
2013-04-22 04:35:36 +02:00
|
|
|
|
2013-04-17 17:32:48 +02:00
|
|
|
.previous {
|
|
|
|
> a,
|
|
|
|
> span {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.disabled {
|
|
|
|
> a,
|
|
|
|
> a:hover,
|
|
|
|
> a:focus,
|
|
|
|
> span {
|
2013-04-22 04:35:36 +02:00
|
|
|
color: @gray-light;
|
2013-04-17 19:47:23 +02:00
|
|
|
background-color: @pagination-bg;
|
2013-04-17 17:32:48 +02:00
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-15 05:54:37 +01:00
|
|
|
}
|