Sha256: 301c8f22417422cf2d4912f22bc34912bd9437d0f4a93709930c50c2767e2235

Contents?: true

Size: 1.41 KB

Versions: 1

Compression:

Stored size: 1.41 KB

Contents

.navbar-nav {
  .form-inline .input-group {
    width: 100%;
  }

  .nav-item {
    &.active {
      .nav-link {
        color: $white;
      }
    }

    &.dropdown {
      .dropdown-toggle {
        &::after {
          border: 0;
          content: '\f105';
          float: right;
          font-family: 'Font Awesome 5 Free';
          font-weight: 900;
          text-align: center;
          vertical-align: 0;
          width: 1rem;
        }
      }

      &.show {
        .dropdown-toggle::after {
          content: '\f107';
        }
      }

      &.no-arrow {
        .dropdown-toggle::after {
          display: none;
        }
      }
    }

    .nav-link {
      &:focus {
        outline: none;
      }

      .badge {
        font-size: .5rem;
        font-weight: 400;
        margin-left: .75rem;
        position: absolute;
        top: .3rem;
      }
    }
  }

  @media(min-width: 768px) {
    .form-inline .input-group {
      width: auto;
    }
  }
}

.dropdown-item {
  font-size: $font-size-sm;
  font-weight: 300;
  padding-bottom: .75rem;
  padding-top: .75rem;
}

.nav-tabs {
  .nav-link {
    &,
    &.disabled,
    &.disabled:hover,
    &.disabled:focus {
      background-color: $gray-200;
      border-color: $nav-tabs-border-color;
    }

    &:hover,
    &:focus {
      background-color: lighten($gray-200, 5%);
    }
  }
}

.nav-pills {
  .active {
    border: 1px solid darken($primary, 5%);
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
archangel-0.4.0 app/themes/default/assets/stylesheets/default/common/_navbar.scss