All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.resources.bower_components.bootstrap.less.mixins.pagination.less Maven / Gradle / Ivy

There is a newer version: 0.66.0.1
Show newest version
// Pagination

.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
  > li {
    > a,
    > span {
      padding: @padding-vertical @padding-horizontal;
      font-size: @font-size;
      line-height: @line-height;
    }
    &:first-child {
      > a,
      > span {
        .border-left-radius(@border-radius);
      }
    }
    &:last-child {
      > a,
      > span {
        .border-right-radius(@border-radius);
      }
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy