You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
933 B
62 lines
933 B
7 years ago
|
// Pagination
|
||
|
.pagination {
|
||
|
display: flex;
|
||
|
list-style: none;
|
||
|
margin: $unit-1 0;
|
||
|
padding: $unit-1 0;
|
||
|
|
||
|
.page-item {
|
||
|
margin: $unit-1 $unit-o;
|
||
|
|
||
|
span {
|
||
|
display: inline-block;
|
||
|
padding: $unit-1 $unit-1;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
border-radius: $border-radius;
|
||
|
color: $gray-color-dark;
|
||
|
display: inline-block;
|
||
|
padding: $unit-1 $unit-2;
|
||
|
text-decoration: none;
|
||
|
&:focus,
|
||
|
&:hover {
|
||
|
color: $primary-color;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&.disabled {
|
||
|
a {
|
||
|
cursor: default;
|
||
|
opacity: .5;
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&.active {
|
||
|
a {
|
||
|
background: $primary-color;
|
||
|
color: $light-color;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&.page-prev,
|
||
|
&.page-next {
|
||
|
flex: 1 0 50%;
|
||
|
}
|
||
|
|
||
|
&.page-next {
|
||
|
text-align: right;
|
||
|
}
|
||
|
|
||
|
.page-item-title {
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
.page-item-subtitle {
|
||
|
margin: 0;
|
||
|
opacity: .5;
|
||
|
}
|
||
|
}
|
||
|
}
|