OSDN Git Service

new repo
[bytom/vapor.git] / tools / side_chain_tool / web / node_modules / bootstrap / less / mixins / pagination.less
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 }