.igloo-input-date-disable {
  &:hover {
    border: 1px solid @disabled-border-color;
  }
}

.igloo-input {
  font-style: normal;
  font-weight: normal;
  font-size: @font-size-base;
  line-height: 24px;
  height: @height-base;
  border-color: @border-color;
  color: @text-color;
}

//Antd Input组件底层实现不全是用input dom元素， Igloo Input的衍生组件希望统一套用igloo-input样式的话这里得这样限定处理
input.igloo-input {
  padding: 12px 16px;
}

.ant-input-status-error:not(.ant-input-disabled):not(
    .ant-input-borderless
  ).ant-input {
  border-color: @error-color;

  &:hover {
    border-color: @error-color;
  }

  &:active {
    border-color: @error-color;
  }
}

.ant-input-affix-wrapper-status-error:not(
    .ant-input-affix-wrapper-disabled
  ):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper {
  border-color: @error-color;

  &:hover {
    border-color: @error-color;
  }

  &:active {
    border-color: @error-color;
  }
}
