//
// Pager pagination
// --------------------------------------------------


.#{$class-prefix}-pager {
  padding-left: 0;
  margin: $line-height-computed 0;
  list-style: none;
  text-align: center;
  @include clearfix;
  .#{$class-prefix}-html-li {
    display: inline;
    > .#{$class-prefix}-html-a,
    > .#{$class-prefix}-html-span {
      display: inline-block;
      padding: 5px 14px;
      background-color: $pager-bg;
      border: 1px solid $pager-border;
      border-radius: $pager-border-radius;
    }

    > .#{$class-prefix}-html-a:hover,
    > .#{$class-prefix}-html-a:focus {
      text-decoration: none;
      background-color: $pager-hover-bg;
    }
  }

  .#{$class-prefix}-next {
    > .#{$class-prefix}-html-a,
    > .#{$class-prefix}-html-span {
      float: right;
    }
  }

  .#{$class-prefix}-previous {
    > .#{$class-prefix}-html-a,
    > .#{$class-prefix}-html-span {
      float: left;
    }
  }

  .#{$class-prefix}-disabled {
    > .#{$class-prefix}-html-a,
    > .#{$class-prefix}-html-a:hover,
    > .#{$class-prefix}-html-a:focus,
    > .#{$class-prefix}-html-span {
      color: $pager-disabled-color;
      background-color: $pager-bg;
      cursor: $cursor-disabled;
    }
  }
}
