2014-12-03 06:02:35 +08:00
|
|
|
//
|
|
|
|
// Pagination (multiple pages)
|
|
|
|
// --------------------------------------------------
|
2015-04-19 02:38:47 +08:00
|
|
|
|
|
|
|
|
2014-12-03 06:02:35 +08:00
|
|
|
.pagination {
|
|
|
|
display: inline-block;
|
|
|
|
padding-left: 0;
|
2015-04-30 03:00:11 +08:00
|
|
|
margin-top: $spacer-y;
|
|
|
|
margin-bottom: $spacer-y;
|
2014-12-03 06:02:35 +08:00
|
|
|
@include border-radius();
|
|
|
|
|
|
|
|
> li {
|
|
|
|
display: inline; // Remove list-style and block-level defaults
|
|
|
|
|
|
|
|
> a,
|
|
|
|
> span {
|
|
|
|
position: relative;
|
|
|
|
float: left; // Collapse white-space
|
2015-06-23 09:57:56 +08:00
|
|
|
padding: $padding-y $padding-x;
|
2014-12-12 04:05:29 +08:00
|
|
|
margin-left: -1px;
|
2014-12-03 06:02:35 +08:00
|
|
|
line-height: $line-height-base;
|
|
|
|
color: $pagination-color;
|
2014-12-12 04:05:29 +08:00
|
|
|
text-decoration: none;
|
2014-12-03 06:02:35 +08:00
|
|
|
background-color: $pagination-bg;
|
|
|
|
border: 1px solid $pagination-border;
|
|
|
|
}
|
|
|
|
&:first-child {
|
|
|
|
> a,
|
|
|
|
> span {
|
|
|
|
margin-left: 0;
|
2015-06-23 09:53:04 +08:00
|
|
|
@include border-left-radius($border-radius);
|
2014-12-03 06:02:35 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
&:last-child {
|
|
|
|
> a,
|
|
|
|
> span {
|
2015-06-23 09:53:04 +08:00
|
|
|
@include border-right-radius($border-radius);
|
2014-12-03 06:02:35 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> li > a,
|
|
|
|
> li > span {
|
2015-01-01 17:05:01 +08:00
|
|
|
@include hover-focus {
|
2014-12-03 06:02:35 +08:00
|
|
|
color: $pagination-hover-color;
|
|
|
|
background-color: $pagination-hover-bg;
|
|
|
|
border-color: $pagination-hover-border;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .active > a,
|
|
|
|
> .active > span {
|
2015-01-01 17:05:01 +08:00
|
|
|
@include plain-hover-focus {
|
2014-12-03 06:02:35 +08:00
|
|
|
z-index: 2;
|
|
|
|
color: $pagination-active-color;
|
2014-12-12 04:05:29 +08:00
|
|
|
cursor: default;
|
2014-12-03 06:02:35 +08:00
|
|
|
background-color: $pagination-active-bg;
|
|
|
|
border-color: $pagination-active-border;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .disabled {
|
|
|
|
> span,
|
2015-01-01 17:05:01 +08:00
|
|
|
> a {
|
|
|
|
@include plain-hover-focus {
|
|
|
|
color: $pagination-disabled-color;
|
|
|
|
cursor: $cursor-disabled;
|
|
|
|
background-color: $pagination-disabled-bg;
|
|
|
|
border-color: $pagination-disabled-border;
|
|
|
|
}
|
2014-12-03 06:02:35 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-19 02:38:47 +08:00
|
|
|
|
|
|
|
//
|
2014-12-03 06:02:35 +08:00
|
|
|
// Sizing
|
2015-04-19 02:38:47 +08:00
|
|
|
//
|
2014-12-03 06:02:35 +08:00
|
|
|
|
|
|
|
.pagination-lg {
|
2015-06-23 07:33:17 +08:00
|
|
|
@include pagination-size($padding-lg-y, $padding-lg-x, $font-size-lg, $line-height-lg, $border-radius-lg);
|
2014-12-03 06:02:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.pagination-sm {
|
2015-06-23 07:33:17 +08:00
|
|
|
@include pagination-size($padding-sm-y, $padding-sm-x, $font-size-sm, $line-height-sm, $border-radius-sm);
|
2014-12-03 06:02:35 +08:00
|
|
|
}
|