2020-03-20 14:43:32 +08:00
|
|
|
@import '../../style/themes/index';
|
|
|
|
@import '../../style/mixins/index';
|
|
|
|
@import '../../input/style/mixin';
|
|
|
|
|
|
|
|
@input-number-prefix-cls: ~'@{ant-prefix}-input-number';
|
|
|
|
|
|
|
|
.@{input-number-prefix-cls} {
|
2020-04-09 12:39:10 +08:00
|
|
|
&-rtl {
|
|
|
|
direction: rtl;
|
|
|
|
}
|
|
|
|
|
2020-03-20 14:43:32 +08:00
|
|
|
&-handler-wrap {
|
|
|
|
.@{input-number-prefix-cls}-rtl & {
|
|
|
|
right: auto;
|
|
|
|
left: 0;
|
|
|
|
border-right: @border-width-base @border-style-base @input-number-handler-border-color;
|
|
|
|
border-left: 0;
|
|
|
|
border-radius: @border-radius-base 0 0 @border-radius-base;
|
|
|
|
}
|
2021-02-01 17:06:20 +08:00
|
|
|
|
|
|
|
.@{input-number-prefix-cls}-rtl.@{input-number-prefix-cls}-borderless & {
|
|
|
|
border-right-width: 0;
|
|
|
|
}
|
2020-03-20 14:43:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-input {
|
|
|
|
.@{input-number-prefix-cls}-rtl & {
|
2020-06-22 14:48:44 +08:00
|
|
|
direction: ltr;
|
2020-03-20 14:43:32 +08:00
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|