Sha256: 39ebd3b2d2e508a47185bd3e4e102c6be555b5053d4f112f50ade9bb6fe1333d

Contents?: true

Size: 1018 Bytes

Versions: 1

Compression:

Stored size: 1018 Bytes

Contents

.sidebar {
  @include sidebar-icons;
  background-color: $gray-900;
  height: 100%;
  min-height: calc(100vh - #{$navbar-base-height});
  width: $sidebar-collapsed-width;

  .nav-item {
    .nav-link {
      color: fade-out($white, .5);

      &:active,
      &:focus,
      &:hover {
        color: fade-out($white, .25);
      }
    }
  }

  &.toggled {
    overflow: hidden;
    width: 0;
  }
}

@media (min-width: 768px) {
  .sidebar {
    width: $sidebar-base-width;

    .nav-item {
      .nav-link {
        display: block;
        padding: 1rem;
        text-align: left;
        width: $sidebar-base-width;

        span {
          display: inline;
          font-size: 1rem;
        }
      }

      .dropdown-menu {
        margin: 0 1rem;
        position: static !important;
        top: 0;
      }

      &.dropdown .dropdown-toggle::after {
        display: block;
      }
    }

    &.toggled {
      @include sidebar-icons;
      overflow: visible;
      width: $sidebar-collapsed-width;
    }
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
archangel-0.4.0 app/themes/default/assets/stylesheets/default/backend/_sidebar.scss