You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

139 lines
2.3 KiB

10 years ago
@inputNumberPrefixCls: ant-input-number;
@import "../mixins/iconfont";
@import "../mixins/input";
10 years ago
.@{inputNumberPrefixCls} {
margin: 0;
padding: 0;
line-height: 29px;
10 years ago
font-size: 12px;
height: 29px;
10 years ago
display: inline-block;
vertical-align: middle;
border: 1px solid #D9D9D9;
border-radius: 5px;
overflow: hidden;
10 years ago
&-handler {
text-align: center;
line-height: 0;
height: 15px;
10 years ago
overflow: hidden;
}
&-handler-down {
height: 14px;
}
10 years ago
&-handler-up-inner, &-handler-down-inner {
.iconfont-mixin();
line-height: 12px;
color: #999;
10 years ago
user-select: none;
-webkit-user-select: none;
position: absolute;
width: 12px;
height: 12px;
right: 4px;
&:hover {
color: #666;
}
}
10 years ago
&:hover {
.hover();
10 years ago
}
&-focused {
.active();
}
10 years ago
&-disabled {
.disabled();
10 years ago
}
&-input-wrap {
overflow: hidden;
height: 29px;
10 years ago
}
&-input {
width: 100%;
text-align: center;
outline: 0;
-moz-appearance: textfield;
line-height: 29px;
height: 22px;
10 years ago
transition: all 0.3s ease;
color: #666666;
border: 0;
border-radius: 5px;
padding: 0 8px;
&[disabled] {
.disabled();
}
10 years ago
}
&-handler-wrap {
float: right;
border-left: 1px solid #D9D9D9;
width: 22px;
height: 29px;
10 years ago
margin-top: -1px;
position: relative;
10 years ago
}
&-handler-up {
border-bottom: 1px solid #D9D9D9;
cursor: pointer;
10 years ago
&-inner {
top: 2px;
10 years ago
&:before {
content: "\e600";
.ie-rotate(2);
transform: rotate(180deg);
10 years ago
}
}
}
&-handler-down {
cursor: pointer;
10 years ago
&-inner {
bottom: 2px;
10 years ago
&:before {
content: "\e600";
10 years ago
}
}
}
.handler-disabled() {
opacity: 0.72;
color: #ccc;
cursor: default;
10 years ago
&:hover {
color: #ccc;
cursor: default;
10 years ago
}
}
&-handler-down-disabled, &-handler-up-disabled, &-disabled {
.@{inputNumberPrefixCls}-handler-down-inner,
.@{inputNumberPrefixCls}-handler-up-inner {
.handler-disabled();
}
10 years ago
}
&-disabled {
.@{inputNumberPrefixCls}-input {
opacity: 0.72;
cursor: not-allowed;
background-color: #f3f3f3;
}
.@{inputNumberPrefixCls}-handler {
.handler-disabled();
}
}
}