comparison dep/fmt/doc/bootstrap/mixins/pagination.less @ 343:1faa72660932

*: transfer back to cmake from autotools autotools just made lots of things more complicated than they should have and many things broke (i.e. translations)
author Paper <paper@paper.us.eu.org>
date Thu, 20 Jun 2024 05:56:06 -0400
parents
children
comparison
equal deleted inserted replaced
342:adb79bdde329 343:1faa72660932
1 // Pagination
2
3 .pagination-size(@padding-vertical; @padding-horizontal; @font-size; @border-radius) {
4 > li {
5 > a,
6 > span {
7 padding: @padding-vertical @padding-horizontal;
8 font-size: @font-size;
9 }
10 &:first-child {
11 > a,
12 > span {
13 .border-left-radius(@border-radius);
14 }
15 }
16 &:last-child {
17 > a,
18 > span {
19 .border-right-radius(@border-radius);
20 }
21 }
22 }
23 }