fix: transfer customize disable Input style

This commit is contained in:
ycjcl868 2019-12-31 15:32:09 +08:00
parent eb005a17cb
commit b2722078a2
2 changed files with 6 additions and 6 deletions

View File

@ -159,9 +159,3 @@ class App extends React.Component {
ReactDOM.render(<App />, mountNode);
```
<style>
[data-theme="dark"] .ant-transfer .ant-input[disabled] {
background-color: transparent;
}
</style>

View File

@ -1,6 +1,7 @@
@import './index.less';
@table-prefix-cls: ~'@{ant-prefix}-table';
@input-prefix-cls: ~'@{ant-prefix}-input';
.@{transfer-prefix-cls}-customize-list {
display: flex;
@ -59,4 +60,9 @@
margin: 16px 0 4px;
}
}
.@{input-prefix-cls} {
&[disabled] {
background-color: transparent;
}
}
}