/** Branch/tag selector **/
.project-refs-form {
  margin:0;
  span {
    background:none !important;
    position:static !important;
    width:auto !important;
    height:auto !important;
  }
}
.project-refs-select {
  width:120px;
}

.project-refs-form .chzn-container {
  position: relative;
  top: 0;
  left: 0;
  margin-right: 10px;

  .chzn-drop {
    margin:7px 0;
    min-width: 400px;
    border: 2px solid $blue_link;
    @include border-radius(4px);

    .chzn-results {
      max-height:300px;

      .group-result {
        color: $blue_link;
      }
      .active-result {
        &.highlighted {
          background: $blue_link;
        }
      }
    }

    .chzn-search input {
      min-width:365px;
    }
  }

  .chzn-single {
    @include bg-gray-gradient;

    div {
      background:transparent;
      border-left:none;
    }

    span {
      font-weight: normal;
    }
  }
}

/** Fix for Search Dropdown Border **/
.chzn-container {
  .chzn-search {
    input:focus {
      -webkit-box-shadow: none;
      -moz-box-shadow: none;
      box-shadow: none;
    }
  }
}