Sha256: fa5f5678e6d659acb93bb7ab015359c6fa77a9703358128b4f05420ee23e10e5

Contents?: true

Size: 816 Bytes

Versions: 3

Compression:

Stored size: 816 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;

    .list-icon {
      display: none;
    }

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

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

    &.active .list-icon {
      display: block;

      float: right;
    }
  }

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

    &.active {
      display: block;
    }
  }
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
atlas_assets-0.3.4 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.3.3 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.3.2 lib/assets/stylesheets/atlas_assets/_tabs.scss