Sha256: cd665bd8e717d4026fddfbb77da82ea149f02f283e81cd0c0df90b200f0c3875

Contents?: true

Size: 1.06 KB

Versions: 36

Compression:

Stored size: 1.06 KB

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;
    }
  }

  .tabs.horizontal li {
    width: auto;
    float: left;
    display: block;
    border-bottom: none;
    border-right: 1px solid $defaultBorderColor;

    &:last-child { border-right: none; }

    &.active {
      border-bottom: 2px solid $defaultLinkColor;
    }
  }

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

    &.active {
      display: block;
    }
  }
}

Version data entries

36 entries across 36 versions & 1 rubygems

Version Path
atlas_assets-0.6.8 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.6.7 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.6.6.1 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.6.6 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.6.5 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.6.4 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.6.3 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.6.2 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.6.1 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.6.0 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.5.10 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.5.9 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.5.8 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.5.7 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.5.6 lib/assets/stylesheets/atlas_assets/_tabs.scss
atlas_assets-0.5.5 lib/assets/stylesheets/atlas_assets/_tabs.scss