2015-08-20 16:55:42 +08:00
|
|
|
@input-number-prefix-cls: ant-input-number;
|
2015-07-01 14:48:47 +08:00
|
|
|
|
|
|
|
@import "../mixins/iconfont";
|
2015-07-09 20:06:03 +08:00
|
|
|
@import "../mixins/input";
|
2015-07-01 14:48:47 +08:00
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{input-number-prefix-cls} {
|
2015-07-15 15:02:18 +08:00
|
|
|
.input();
|
2015-07-01 14:48:47 +08:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2015-07-20 17:28:29 +08:00
|
|
|
line-height: 28px;
|
2015-07-01 14:48:47 +08:00
|
|
|
font-size: 12px;
|
2015-07-20 17:28:29 +08:00
|
|
|
height: 28px;
|
2015-07-01 14:48:47 +08:00
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
border: 1px solid #D9D9D9;
|
2015-07-20 17:28:29 +08:00
|
|
|
border-radius: @border-radius-base;
|
2015-07-07 17:30:24 +08:00
|
|
|
overflow: hidden;
|
2015-07-01 14:48:47 +08:00
|
|
|
|
|
|
|
&-handler {
|
|
|
|
text-align: center;
|
2015-07-09 20:06:03 +08:00
|
|
|
line-height: 0;
|
2015-07-20 17:28:29 +08:00
|
|
|
height: 14px;
|
2015-07-01 14:48:47 +08:00
|
|
|
overflow: hidden;
|
2015-07-15 15:50:44 +08:00
|
|
|
color: #999;
|
2015-07-20 20:03:45 +08:00
|
|
|
&:hover &-up-inner,
|
2015-07-20 19:25:34 +08:00
|
|
|
&:hover &-down-inner {
|
2015-07-20 17:28:29 +08:00
|
|
|
color: tint(@primary-color, 20%);
|
2015-07-15 15:50:44 +08:00
|
|
|
}
|
2015-07-01 14:48:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-handler-up-inner, &-handler-down-inner {
|
2015-07-09 20:06:03 +08:00
|
|
|
.iconfont-mixin();
|
|
|
|
line-height: 12px;
|
2015-07-01 14:48:47 +08:00
|
|
|
user-select: none;
|
|
|
|
-webkit-user-select: none;
|
2015-07-09 20:06:03 +08:00
|
|
|
position: absolute;
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
2015-07-20 11:46:48 +08:00
|
|
|
.iconfont-size-under-12px(8px);
|
2015-07-09 20:06:03 +08:00
|
|
|
right: 4px;
|
2015-07-20 19:25:34 +08:00
|
|
|
color: #999;
|
2015-07-07 17:30:24 +08:00
|
|
|
}
|
|
|
|
|
2015-07-01 14:48:47 +08:00
|
|
|
&:hover {
|
2015-07-09 20:06:03 +08:00
|
|
|
.hover();
|
2015-07-01 14:48:47 +08:00
|
|
|
}
|
|
|
|
|
2015-07-09 20:06:03 +08:00
|
|
|
&-focused {
|
|
|
|
.active();
|
|
|
|
}
|
2015-07-01 14:48:47 +08:00
|
|
|
|
2015-07-09 20:06:03 +08:00
|
|
|
&-disabled {
|
|
|
|
.disabled();
|
2015-07-01 14:48:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-input-wrap {
|
|
|
|
overflow: hidden;
|
2015-07-20 17:28:29 +08:00
|
|
|
height: 28px;
|
2015-07-01 14:48:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-input {
|
|
|
|
width: 100%;
|
2015-07-20 17:28:29 +08:00
|
|
|
text-align: left;
|
2015-07-01 14:48:47 +08:00
|
|
|
outline: 0;
|
|
|
|
-moz-appearance: textfield;
|
2015-07-20 17:28:29 +08:00
|
|
|
line-height: 28px;
|
|
|
|
height: 28px;
|
2015-07-01 14:48:47 +08:00
|
|
|
transition: all 0.3s ease;
|
2015-08-20 16:55:42 +08:00
|
|
|
color: #666;
|
2015-07-01 14:48:47 +08:00
|
|
|
border: 0;
|
2015-07-20 17:28:29 +08:00
|
|
|
border-radius: @border-radius-base;
|
|
|
|
padding: 0 7px;
|
2015-07-09 20:06:03 +08:00
|
|
|
|
|
|
|
&[disabled] {
|
|
|
|
.disabled();
|
|
|
|
}
|
2015-07-01 14:48:47 +08:00
|
|
|
}
|
2015-08-20 16:55:42 +08:00
|
|
|
|
2015-08-10 15:39:50 +08:00
|
|
|
&-lg {
|
|
|
|
padding: 0;
|
|
|
|
.ant-input-number-handler-wrap {
|
2015-08-08 17:59:57 +08:00
|
|
|
height: 32px;
|
|
|
|
}
|
2015-08-10 15:39:50 +08:00
|
|
|
.ant-input-number-input-wrap {
|
2015-08-08 17:59:57 +08:00
|
|
|
height: 32px;
|
|
|
|
}
|
2015-08-10 15:39:50 +08:00
|
|
|
.ant-input-number-handler {
|
2015-08-08 17:59:57 +08:00
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
|
2015-08-10 15:39:50 +08:00
|
|
|
input {
|
2015-08-08 17:59:57 +08:00
|
|
|
height: 32px;
|
|
|
|
line-height: 32px;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2015-08-10 15:39:50 +08:00
|
|
|
.ant-input-number-handler-up-inner {
|
2015-08-08 17:59:57 +08:00
|
|
|
top: 2px;
|
|
|
|
}
|
2015-08-10 15:39:50 +08:00
|
|
|
.ant-input-number-handler-down-inner {
|
2015-08-08 17:59:57 +08:00
|
|
|
top: 18px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-10 15:39:50 +08:00
|
|
|
&-sm {
|
|
|
|
padding: 0;
|
|
|
|
.ant-input-number-handler-wrap {
|
2015-08-08 17:59:57 +08:00
|
|
|
height: 22px;
|
|
|
|
}
|
2015-08-10 15:39:50 +08:00
|
|
|
.ant-input-number-input-wrap {
|
2015-08-08 17:59:57 +08:00
|
|
|
height: 22px;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
}
|
2015-08-10 15:39:50 +08:00
|
|
|
.ant-input-number-handler {
|
2015-08-08 17:59:57 +08:00
|
|
|
height: 11px;
|
|
|
|
}
|
|
|
|
|
2015-08-10 15:39:50 +08:00
|
|
|
input {
|
2015-08-08 17:59:57 +08:00
|
|
|
height: 22px;
|
|
|
|
line-height: 22px;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
}
|
2015-08-10 15:39:50 +08:00
|
|
|
.ant-input-number-handler-up-inner {
|
2015-08-08 17:59:57 +08:00
|
|
|
top: -1px;
|
|
|
|
}
|
2015-08-10 15:39:50 +08:00
|
|
|
.ant-input-number-handler-down-inner {
|
2015-08-08 17:59:57 +08:00
|
|
|
top: 10px;
|
|
|
|
}
|
|
|
|
}
|
2015-07-01 14:48:47 +08:00
|
|
|
|
|
|
|
&-handler-wrap {
|
|
|
|
float: right;
|
|
|
|
border-left: 1px solid #D9D9D9;
|
2015-07-09 20:06:03 +08:00
|
|
|
width: 22px;
|
2015-07-20 17:28:29 +08:00
|
|
|
height: 28px;
|
2015-07-09 20:06:03 +08:00
|
|
|
position: relative;
|
2015-09-23 11:40:18 +08:00
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 0.2s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover &-handler-wrap {
|
|
|
|
opacity: 1;
|
2015-07-01 14:48:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-handler-up {
|
|
|
|
border-bottom: 1px solid #D9D9D9;
|
2015-07-07 17:30:24 +08:00
|
|
|
cursor: pointer;
|
2015-07-01 14:48:47 +08:00
|
|
|
&-inner {
|
2015-07-20 17:28:29 +08:00
|
|
|
top: 1px;
|
2015-08-20 15:38:57 +08:00
|
|
|
.ie-rotate(2);
|
2015-07-01 14:48:47 +08:00
|
|
|
&:before {
|
2015-08-20 15:38:57 +08:00
|
|
|
text-align: center;
|
2015-07-10 16:16:32 +08:00
|
|
|
content: "\e600";
|
|
|
|
transform: rotate(180deg);
|
2015-07-21 14:28:29 +08:00
|
|
|
-webkit-transform-origin: 47.5% 51%; /* fix chrome position */
|
2015-07-01 14:48:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-handler-down {
|
2015-07-07 17:30:24 +08:00
|
|
|
cursor: pointer;
|
2015-07-01 14:48:47 +08:00
|
|
|
&-inner {
|
|
|
|
&:before {
|
2015-08-20 15:38:57 +08:00
|
|
|
text-align: center;
|
2015-07-10 16:16:32 +08:00
|
|
|
content: "\e600";
|
2015-07-01 14:48:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.handler-disabled() {
|
|
|
|
opacity: 0.72;
|
2015-08-10 15:39:50 +08:00
|
|
|
color: #ccc !important;
|
2015-07-07 17:30:24 +08:00
|
|
|
cursor: default;
|
2015-07-01 14:48:47 +08:00
|
|
|
&:hover {
|
2015-07-09 20:06:03 +08:00
|
|
|
color: #ccc;
|
2015-07-07 17:30:24 +08:00
|
|
|
cursor: default;
|
2015-07-01 14:48:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-09 20:06:03 +08:00
|
|
|
&-handler-down-disabled, &-handler-up-disabled, &-disabled {
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{input-number-prefix-cls}-handler-down-inner,
|
|
|
|
.@{input-number-prefix-cls}-handler-up-inner {
|
2015-07-09 20:06:03 +08:00
|
|
|
.handler-disabled();
|
|
|
|
}
|
2015-07-01 14:48:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-disabled {
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{input-number-prefix-cls}-input {
|
2015-07-01 14:48:47 +08:00
|
|
|
opacity: 0.72;
|
|
|
|
cursor: not-allowed;
|
|
|
|
background-color: #f3f3f3;
|
|
|
|
}
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{input-number-prefix-cls}-handler {
|
2015-07-01 14:48:47 +08:00
|
|
|
.handler-disabled();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|