AdminLTE/build/bootstrap-less/mixins/pagination.less

25 lines
485 B
Plaintext
Raw Normal View History

2015-02-01 21:25:09 +00:00
// Pagination
2015-09-23 06:43:22 +00:00
.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
2015-02-01 21:25:09 +00:00
> li {
> a,
> span {
padding: @padding-vertical @padding-horizontal;
font-size: @font-size;
2015-09-23 06:43:22 +00:00
line-height: @line-height;
2015-02-01 21:25:09 +00:00
}
&:first-child {
> a,
> span {
.border-left-radius(@border-radius);
}
}
&:last-child {
> a,
> span {
.border-right-radius(@border-radius);
}
}
}
}