This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
2014-12-10 11:36:38 +00:00
|
|
|
// Pagination
|
|
|
|
|
2015-08-12 07:06:27 +00:00
|
|
|
@mixin pagination-size($padding-vertical, $padding-horizontal, $font-size, $line-height, $border-radius) {
|
2014-12-10 11:36:38 +00:00
|
|
|
> li {
|
|
|
|
> a,
|
|
|
|
> span {
|
|
|
|
padding: $padding-vertical $padding-horizontal;
|
|
|
|
font-size: $font-size;
|
2015-08-12 07:06:27 +00:00
|
|
|
line-height: $line-height;
|
2014-12-10 11:36:38 +00:00
|
|
|
}
|
|
|
|
&:first-child {
|
|
|
|
> a,
|
|
|
|
> span {
|
|
|
|
@include border-left-radius($border-radius);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&:last-child {
|
|
|
|
> a,
|
|
|
|
> span {
|
|
|
|
@include border-right-radius($border-radius);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|