fix: input style error #3073
parent
41a0251a5b
commit
ddd50fe153
@ -0,0 +1,48 @@
|
|||||||
|
@import './index';
|
||||||
|
@import './mixin';
|
||||||
|
|
||||||
|
@input-affix-margin: 4px;
|
||||||
|
|
||||||
|
.@{ant-prefix}-input {
|
||||||
|
&-affix-wrapper {
|
||||||
|
.input();
|
||||||
|
display: inline-flex;
|
||||||
|
|
||||||
|
&-disabled {
|
||||||
|
.@{ant-prefix}-input[disabled] {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
> input.@{ant-prefix}-input {
|
||||||
|
padding: 0;
|
||||||
|
border: none;
|
||||||
|
outline: none;
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
width: 0;
|
||||||
|
visibility: hidden;
|
||||||
|
content: '\a0';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&-prefix,
|
||||||
|
&-suffix {
|
||||||
|
display: flex;
|
||||||
|
flex: none;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
&-prefix {
|
||||||
|
margin-right: @input-affix-margin;
|
||||||
|
}
|
||||||
|
|
||||||
|
&-suffix {
|
||||||
|
margin-left: @input-affix-margin;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue