2016-08-22 09:53:39 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2023-03-09 21:26:56 +08:00
|
|
|
`Input.Group` 已废弃,可以使用 [Space.Compact](/components/space-cn#spacecompact) 替代 `Input.Group`。
|
2017-01-02 00:12:41 +08:00
|
|
|
|
2016-08-22 09:53:39 +08:00
|
|
|
## en-US
|
|
|
|
|
2023-03-09 21:26:56 +08:00
|
|
|
`Input.Group` is deprecated. Can use [Space.Compact](/components/space#spacecompact) substitute for `Input.Group`.
|
2017-01-02 00:12:41 +08:00
|
|
|
|
2019-12-25 21:48:54 +08:00
|
|
|
```css
|
|
|
|
.site-input-group-wrapper .site-input-split {
|
2022-03-09 10:38:02 +08:00
|
|
|
background-color: #fff !important;
|
2019-12-25 21:48:54 +08:00
|
|
|
}
|
2020-03-02 12:24:24 +08:00
|
|
|
|
|
|
|
.site-input-group-wrapper .site-input-right {
|
|
|
|
border-left-width: 0;
|
|
|
|
}
|
|
|
|
|
2020-05-09 18:02:18 +08:00
|
|
|
.site-input-group-wrapper .site-input-right:hover,
|
|
|
|
.site-input-group-wrapper .site-input-right:focus {
|
2020-03-02 12:24:24 +08:00
|
|
|
border-left-width: 1px;
|
|
|
|
}
|
2020-05-01 14:50:35 +08:00
|
|
|
|
|
|
|
.site-input-group-wrapper .ant-input-rtl.site-input-right {
|
|
|
|
border-right-width: 0;
|
|
|
|
}
|
|
|
|
|
2020-05-09 18:02:18 +08:00
|
|
|
.site-input-group-wrapper .ant-input-rtl.site-input-right:hover,
|
|
|
|
.site-input-group-wrapper .ant-input-rtl.site-input-right:focus {
|
2020-05-01 14:50:35 +08:00
|
|
|
border-right-width: 1px;
|
|
|
|
}
|
2019-12-25 21:48:54 +08:00
|
|
|
```
|