Sha256: 6b44da3de45a55c57f2189ed205baf48e61e2a01f9077fd6ff9a3ff20b826806

Contents?: true

Size: 1.08 KB

Versions: 1

Compression:

Stored size: 1.08 KB

Contents

.header #tabs {
  width: $header-width;
  height: calc(100% - 60px);
  position: fixed;
  top: 60px;
  left: 0;
  background-color: $sidebar-background;
  border-right: 1px solid $sidebar-border-color;
  z-index: 1;

  li {
    width: 100%;
    font-size: 14px;
    line-height: 38px;
    cursor: pointer;

    a {
      width: 100%;
      height: 100%;
      display: inline-block;
      color: $text-color;
      padding: 0 20px;

      &:hover {
        background-color: $left-menu-item-hover-background;
      }
    }

    &.current {
      a {
        color: $primary-color;
      }
    }

    &.has_nested {
      ul {
        border-top: 1px solid $sidebar-border-color;
        border-bottom: 1px solid $sidebar-border-color;
        background-color: $body-background;
        padding: 10px 0;
        cursor: auto;

        a {
          padding: 0px 15px 0px 40px;
          color: $text-color;

          &:hover {
            background-color: $left-menu-item-nested-hover-background;
          }
        }

        .current a {
          color: $primary-color;
        }
      }
    }
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
arctic_admin-1.0.3 app/assets/stylesheets/layouts/_sidebar.scss