Sha256: d8e3faa5de2de2dee95968566df5a53d657d885d3cbfaf0638ed2605f43fa6db

Contents?: true

Size: 1.62 KB

Versions: 2

Compression:

Stored size: 1.62 KB

Contents

//
// Pagination (multiple pages)
// --------------------------------------------------
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: $line-height-computed 0;
  border-radius: $border-radius-base;

  > li {
    display: inline; // Remove list-style and block-level defaults
    > a,
    > span {
      float: left; // Collapse white-space
      padding: $padding-base-vertical $padding-base-horizontal;
      line-height: $line-height-base;
      text-decoration: none;
      background-color: $pagination-bg;
      border: 1px solid $pagination-border;
      border-left-width: 0;
    }
    &:first-child {
      > a,
      > span {
        border-left-width: 1px;
        @include border-left-radius($border-radius-base);
      }
    }
    &:last-child {
      > a,
      > span {
        @include border-right-radius($border-radius-base);
      }
    }
  }

  > li > a:hover,
  > li > a:focus,
  > .active > a,
  > .active > span {
    background-color: $pagination-active-bg;
  }
  > .active > a,
  > .active > span {
    color: $pagination-active-color;
    cursor: default;
  }

  > .disabled {
    > span,
    > a,
    > a:hover,
    > a:focus {
      color: $pagination-disabled-color;
      background-color: $pagination-bg;
      cursor: not-allowed;
    }
  }
}

// Sizing
// --------------------------------------------------

// Large
.pagination-lg {
  @include pagination-size($padding-large-vertical, $padding-large-horizontal, $font-size-large, $border-radius-large);
}

// Small
.pagination-sm {
  @include pagination-size($padding-small-vertical, $padding-small-horizontal, $font-size-small, $border-radius-small);
}

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
anjlab-bootstrap-rails-3.0.0.rc2 app/assets/stylesheets/twitter/bootstrap/_pagination.scss
bootstrap-sass-rails-3.0.0.0.rc2 app/assets/stylesheets/twitter/bootstrap/_pagination.scss