2012-06-29 06:46:45 +02:00
|
|
|
//
|
|
|
|
// Pager pagination
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-01-15 05:54:37 +01:00
|
|
|
|
|
|
|
.pager {
|
2013-06-29 22:06:14 +02:00
|
|
|
padding-left: 0;
|
2015-04-29 21:00:11 +02:00
|
|
|
margin-top: $spacer-y;
|
|
|
|
margin-bottom: $spacer-y;
|
2012-01-15 05:54:37 +01:00
|
|
|
text-align: center;
|
2014-12-11 21:05:29 +01:00
|
|
|
list-style: none;
|
2014-12-02 23:02:35 +01:00
|
|
|
@include clearfix();
|
|
|
|
|
2013-04-17 17:32:48 +02:00
|
|
|
li {
|
|
|
|
display: inline;
|
2014-12-02 23:02:35 +01:00
|
|
|
|
2013-04-17 17:32:48 +02:00
|
|
|
> a,
|
|
|
|
> span {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 5px 14px;
|
2014-12-02 23:02:35 +01:00
|
|
|
background-color: $pager-bg;
|
|
|
|
border: 1px solid $pager-border;
|
|
|
|
border-radius: $pager-border-radius;
|
2013-04-17 17:32:48 +02:00
|
|
|
}
|
|
|
|
|
2015-01-01 10:05:01 +01:00
|
|
|
> a {
|
|
|
|
@include hover-focus {
|
|
|
|
text-decoration: none;
|
|
|
|
background-color: $pager-hover-bg;
|
|
|
|
}
|
2013-04-17 17:32:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.disabled {
|
2015-01-01 10:05:01 +01:00
|
|
|
> a {
|
|
|
|
@include plain-hover-focus {
|
|
|
|
color: $pager-disabled-color;
|
|
|
|
cursor: $cursor-disabled;
|
|
|
|
background-color: $pager-bg;
|
|
|
|
}
|
|
|
|
}
|
2013-04-17 17:32:48 +02:00
|
|
|
> span {
|
2014-12-02 23:02:35 +01:00
|
|
|
color: $pager-disabled-color;
|
|
|
|
cursor: $cursor-disabled;
|
2014-12-11 21:05:29 +01:00
|
|
|
background-color: $pager-bg;
|
2013-04-17 17:32:48 +02:00
|
|
|
}
|
|
|
|
}
|
2012-01-15 05:54:37 +01:00
|
|
|
}
|
2014-12-18 03:36:51 +01:00
|
|
|
|
|
|
|
.pager-next {
|
|
|
|
> a,
|
|
|
|
> span {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.pager-prev {
|
|
|
|
> a,
|
|
|
|
> span {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
}
|