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

10 years ago
  1. // Pagination
  2. .pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
  3. > li {
  4. > a,
  5. > span {
  6. padding: @padding-vertical @padding-horizontal;
  7. font-size: @font-size;
  8. line-height: @line-height;
  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. }