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.
25 lines
485 B
25 lines
485 B
2 years ago
|
// Pagination
|
||
|
|
||
|
.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
|
||
|
> li {
|
||
|
> a,
|
||
|
> span {
|
||
|
padding: @padding-vertical @padding-horizontal;
|
||
|
font-size: @font-size;
|
||
|
line-height: @line-height;
|
||
|
}
|
||
|
&:first-child {
|
||
|
> a,
|
||
|
> span {
|
||
|
.border-left-radius(@border-radius);
|
||
|
}
|
||
|
}
|
||
|
&:last-child {
|
||
|
> a,
|
||
|
> span {
|
||
|
.border-right-radius(@border-radius);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|