corrade-nucleus-nucleons – Blame information for rev 20

Subversion Repositories:
Rev:
Rev Author Line No. Line
20 office 1 // Pagination
2  
3 .pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
4 > li {
5 > a,
6 > span {
7 padding: @padding-vertical @padding-horizontal;
8 font-size: @font-size;
9 line-height: @line-height;
10 }
11 &:first-child {
12 > a,
13 > span {
14 .border-left-radius(@border-radius);
15 }
16 }
17 &:last-child {
18 > a,
19 > span {
20 .border-right-radius(@border-radius);
21 }
22 }
23 }
24 }