Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
// Pagination
2
 
3
@mixin pagination-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) {
4
  .page-link {
5
    padding: $padding-y $padding-x;
6
    @include font-size($font-size);
7
    line-height: $line-height;
8
  }
9
 
10
  .page-item {
11
    &:first-child {
12
      .page-link {
13
        @include border-left-radius($border-radius);
14
      }
15
    }
16
    &:last-child {
17
      .page-link {
18
        @include border-right-radius($border-radius);
19
      }
20
    }
21
  }
22
}