// Button variants
//
// Over rides and additions to the default bootstrap buttons

.button-variant(@color; @background; @border) {

  &:hover,
  &:focus,
  &.focus,
  &:active,
  &.active {
    background-color: @background;
        border-color: @border;
  }
  .open > .dropdown-toggle& {
    &,
    &:hover,
    &:focus,
    &.focus {
      background-color: @background;
          border-color: @border;
    }
  }

}
