##// END OF EJS Templates
bump version to 1.1.1
bump version to 1.1.1

File last commit:

r0:548a840d
r134:b9b70494 1.1.1 stable
Show More
pagination.less
24 lines | 485 B | text/x-less | LessCssLexer
project: initial commit
r0 // 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);
}
}
}
}