a, .link {
  cursor: pointer;
  color: rgba($font-color, .5);
  outline: none;
  text-decoration: none;

  &:focus {
    // @include control-shadow();
  }

  &:focus,
  &:hover,
  &:active,
  &.active {
    color: rgba($font-color, 1);
  }

  &:visited {
    color: rgba($font-color, .8);
  }

  &[disabled],
  &:disabled,
  &.disabled {
    @include disabled();
  }

  &.link-padding {
    margin-right: $control-padding / 2;
  }
}
