ui_modern.scss 883 Bytes
/**
 * This file represent some UI that can be changed
 * during web app restyle or theme select.
 *
 * Next items should be placed there
 * - link colors
 * - header restyles
 *
 */
.ui_modern {
  /*
   *  Application Header
   *
   */
  header {
    @extend .header-dark;
    &.navbar-gitlab {
      .navbar-inner {
        background: #00AC7E;
        border-bottom: 1px solid #00AC7E;
        .app_logo, .navbar-toggle {
          &:hover {
            background-color: #009C6E;
          }
        }
        .separator {
          background: #009C6F;
          border-left: 1px solid #10BC8E;
        }
        .nav > li > a {
          color: #ADC;
        }
        .search-input {
          border-color: #7fd5be;
        }
      }
    }
  }

  .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    background: #00AC7E;
  }
}