23 lines
394 B
Plaintext
23 lines
394 B
Plaintext
// Pagination
|
|
|
|
#pagination-size(@padding-y, @padding-x, @font-size, @line-height, @border-radius) {
|
|
.page-link {
|
|
padding: @padding-y @padding-x;
|
|
#font-size(@font-size);
|
|
line-height: @line-height;
|
|
}
|
|
|
|
.page-item {
|
|
&:first-child {
|
|
.page-link {
|
|
#border-left-radius(@border-radius);
|
|
}
|
|
}
|
|
&:last-child {
|
|
.page-link {
|
|
#border-right-radius(@border-radius);
|
|
}
|
|
}
|
|
}
|
|
}
|