ausybenelux / Ocelot

Ocelot is a theming starter kit for drupal 7.
5 stars 2 forks source link

Add pager component styling #102

Closed driesd closed 8 years ago

driesd commented 9 years ago
.pager {
  @include pie-clearfix;
  float: left;
  list-style-type: none;
  text-align: center;
  width: 100%;

  &__item {
    @include inline-block;
    color: $c-white;
    margin: rh(.2) rh(.125);

    &--current {
      background: $c-red;
      padding: rhythm(.25) rhythm(.5);
    }

    &--ellipsis {
      background: $c-gray-medium;
      padding: rhythm(.25) rhythm(.5);
    }

    a {
      background: $c-gray-dark;
      color: $c-white;
      display: block;
      padding: rhythm(.25) rhythm(.5);
      text-decoration: none;

      &:hover,
      &:focus {
        background: lighten($c-gray-dark, 10%);
      }
    }
  }
}
driesd commented 9 years ago

Needs modification