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