Sha256: 56938049cb5683afc67361ec0a352b3e4d1cc98e783ff0af59fdcb73ed459ec7

Contents?: true

Size: 834 Bytes

Versions: 8

Compression:

Stored size: 834 Bytes

Contents

.tabs-container {
  @include clearfix();

  .tabs {
    list-style: none;
    margin-top: 0;
    padding: 0;
  }

  .tabs li {
    @include box-sizing(border-box);
    background: $lightest_gray;
    list-style: none;
    font-weight: bold;
    margin: 0;
    padding: 0;
    padding: 1em;
    width: 100%;
    border-left: 2px solid $lighter_gray;
    border-right: 2px solid $lighter_gray;
    border-top: 2px solid $lighter_gray;

    .icon-arrow-right-2 {
      display: none;
    }

    &:last-child {
      border-bottom: 2px solid $lighter_gray;
    }

    &:hover {
      color: $blue;
      cursor: pointer;
    }

    &.active .icon-arrow-right-2 {
      display: block;

      float: right;
    }
  }

  .tab-pane {
    @include box-sizing(border-box);
    display: none;

    &.active {
      display: block;
    }
  }
}

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
atlas_assets-0.3.1 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.3.0 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.2.4 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.2.3 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.2.2 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.2.1 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.2.0 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.1.15 lib/assets/stylesheets/atlas_assets/_tabs.scss