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.
24 lines
485 B
24 lines
485 B
// 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); |
|
} |
|
} |
|
} |
|
}
|
|
|