@import '../../style/themes/index.less';

@input-number-prefix-cls: ~'@{ant-prefix}-input-number';
@icon-prefix-cls: ~'@{ant-prefix}-icon';

// 尺寸样式
.input-number-size(@input-height, @padding, @icon-size, @handler-width) {
	padding: 0;

	input {
		height: @input-height - 2px;
		padding: 0 @padding;
	}

	.@{input-number-prefix-cls}-handler-wrap,
	.@{input-number-prefix-cls}-disabled &-handler-wrap {
		width: @handler-width - 1px;
		height: @input-height - 2px;

		.@{icon-prefix-cls} {
			font-size: @icon-size !important;
		}
	}
}
