Sha256: 3ab5cd2d9d02e92867db0b3f0eb6dd8fd1eff825cf70737f506037a253191671

Contents?: true

Size: 816 Bytes

Versions: 16

Compression:

Stored size: 816 Bytes

Contents

.tabs-container {
  @include clearfix();

  .tabs {
    list-style: none;
    margin-top: 0;
    padding: 0;
    background: $defaultBackgroundColor;
    border: 1px solid $defaultBorderColor;
    @include border-radius($defaultBorderRadius);
  }

  .tabs li {
    @include box-sizing(border-box);
    list-style: none;
    font-weight: bold;
    margin: 0;
    padding: 0;
    padding: 1em;
    width: 100%;
    border-bottom: 1px dashed $defaultBorderColor;

    &:last-child {
      border: none;
    }

    .list-icon {
      display: none;
    }

    &: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

16 entries across 16 versions & 1 rubygems

Version Path
atlas_assets-0.5.4 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.5.3 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.5.2 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.5.1 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.5.0 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.4.10 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.4.9 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.4.8 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.4.7 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.4.6 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.4.5 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.4.4 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.4.3 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.4.2 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.4.1 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.4.0 lib/assets/stylesheets/atlas_assets/_tabs.scss