@import "../../style/themes/index";
@import "../../style/mixins/index";
@import "../input/mixin";
@import "./affix";
@import "./status";

@input-number-prefix-cls: ~"@{ant-prefix}-input-number";
@form-item-prefix-cls: ~"@{ant-prefix}-form-item";

.@{input-number-prefix-cls} {
  .reset-component();
  .input();

  //== Style for input-group: input with label, with button or dropdown...
  &-group {
    .reset-component();
    .input-group(~"@{input-number-prefix-cls}");

    &-wrapper {
      display: inline-block;
      text-align: start;
      vertical-align: top; // https://github.com/ant-design/ant-design/issues/6403
    }
  }

  display: inline-block;
  width: 90px;
  margin: 0;
  padding: 0;
  border: @border-width-base @border-style-base @input-border-color;
  border-radius: @control-border-radius;

  &-handler {
    position: relative;
    display: block;
    width: 100%;
    height: 50%;
    overflow: hidden;
    color: @text-color-secondary;
    font-weight: bold;
    line-height: 0;
    text-align: center;
    transition: all 0.1s linear;
  }

  &-handler-up-inner,
  &-handler-down-inner {
    .iconfont-mixin();

    position: absolute;
    right: 4px;
    width: 12px;
    height: 12px;
    color: @text-color-secondary;
    line-height: 12px;
    transition: all 0.1s linear;
    user-select: none;
  }

  &:hover {
    .hover(@input-number-hover-border-color);
    & + .@{form-item-prefix-cls}-children-icon {
      opacity: 0;
      transition: opacity 0.24s linear 0.24s;
    }
  }

  &&-focused {
    .active();
  }

  &-disabled {
    .disabled();
    .@{input-number-prefix-cls}-input {
      cursor: not-allowed;
    }
    .@{input-number-prefix-cls}-handler-wrap {
      display: none;
    }
  }

  &-readonly {
    .@{input-number-prefix-cls}-handler-wrap {
      display: none;
    }
  }

  &-input {
    width: 100%;
    height: @input-height-base - 2px;
    padding: 0 @control-padding-horizontal - 1px;
    text-align: left;
    background-color: transparent;
    border: 0;
    border-radius: @control-border-radius;
    outline: 0;
    transition: all 0.3s linear;
    appearance: textfield !important;
    .placeholder();

    &[type="number"]::-webkit-inner-spin-button,
    &[type="number"]::-webkit-outer-spin-button {
      margin: 0;
      /* stylelint-disable-next-line property-no-vendor-prefix */
      -webkit-appearance: none;
      appearance: none;
    }
  }

  &-lg {
    padding: 0;
    font-size: @font-size-lg;

    .@{input-number-prefix-cls}-input {
      padding: 0 @padding-md - 1px;
      height: @input-height-lg - 2px;
    }

    .@{input-number-prefix-cls}-handler-up,
    .@{input-number-prefix-cls}-handler-down {
      height: 16px;

      &-inner {
        height: 16px !important;
      }
    }

    .@{input-number-prefix-cls}-handler-down {
      top: 19px;
    }
  }

  &-sm {
    padding: 0;

    .@{input-number-prefix-cls}-input {
      height: @input-height-sm - 2px;
      padding: 0 @control-padding-horizontal-sm - 1px;
    }

    .@{input-number-prefix-cls}-handler-up,
    .@{input-number-prefix-cls}-handler-down {
      height: 8px;

      &-inner {
        height: 8px !important;
      }
    }

    .@{input-number-prefix-cls}-handler-down {
      top: 11px;
    }
  }

  &-handler-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 100%;
    background: @input-number-handler-bg;
    border-radius: 0 @control-border-radius @control-border-radius 0;
    opacity: 0;
    transition: opacity 0.24s linear 0.1s;

    // Fix input number inside Menu makes icon too large
    // We arise the selector priority by nest selector here
    // https://github.com/ant-design/ant-design/issues/14367
    .@{input-number-prefix-cls}-handler {
      .@{input-number-prefix-cls}-handler-up-inner,
      .@{input-number-prefix-cls}-handler-down-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: auto;
        margin-right: 0;
        font-size: 8px;
        height: @font-size-sm;
        color: @text-color;
        //background-color: @color-neutral-bg-2;
      }
    }

    .@{input-number-prefix-cls}-borderless & {
      border-left-width: 0;
    }
  }

  &:hover &-handler-wrap,
  &-focused &-handler-wrap {
    opacity: 1;
  }

  &-handler-up,
  &-handler-down {
    height: 12px;
    width: 20px;
    background: @color-neutral-bg-2;
  }

  &-handler-up {
    position: absolute;
    top: 3px;
    border-top-right-radius: 1px;
    border-top-left-radius: 1px;
    cursor: pointer;

    &:not(.@{input-number-prefix-cls}-handler-up-disabled):hover {
      background-color: @grey-4;
    }

    &-inner {
      bottom: 0;
      text-align: center;
    }
  }

  &-handler-down {
    position: absolute;
    top: 15px;
    border-bottom-right-radius: 1px;
    border-bottom-left-radius: 1px;
    cursor: pointer;

    &:not(.@{input-number-prefix-cls}-handler-down-disabled):hover {
      background-color: @grey-4;
    }

    &-inner {
      top: 0;
      text-align: center;
    }

    .@{input-number-prefix-cls}-borderless & {
      border-top-width: 0;
    }
  }

  &-handler-up-disabled,
  &-handler-down-disabled {
    cursor: not-allowed;

    .@{input-number-prefix-cls}-handler-up-inner,
    .@{input-number-prefix-cls}-handler-down-inner {
      color: @disabled-color !important;
    }
  }

  &-handler-up-disabled:hover &-handler-up-inner,
  &-handler-down-disabled:hover &-handler-down-inner {
    color: @disabled-color;
  }

  &-borderless {
    box-shadow: none;
  }

  // ===================== Out Of Range =====================
  &-out-of-range {
    input {
      color: @error-color;
    }
  }
}

.@{input-number-prefix-cls}-lg + .@{input-number-prefix-cls}-group-addon {
  padding: 0 @padding-md;
  font-size: @font-size-lg;
}

.@{input-number-prefix-cls}-sm + .@{input-number-prefix-cls}-group-addon {
  padding: 0 @padding-xs;
  font-size: @font-size-sm;
}

@import "./rtl";
