样式修复

This commit is contained in:
rickcole 2020-04-28 20:20:02 +08:00
parent 3246c66e73
commit 30c6ec579b
2 changed files with 7 additions and 16 deletions

View File

@ -109,7 +109,7 @@
} }
&-menu { &-menu {
min-width: px2rem(120px); width: px2rem(160px);
max-height: px2rem(300px); max-height: px2rem(300px);
background: $Form-select-menu-bg; background: $Form-select-menu-bg;
color: $Form-select-menu-color; color: $Form-select-menu-color;
@ -134,6 +134,9 @@
> label { > label {
flex: 1; flex: 1;
cursor: pointer; cursor: pointer;
span {
display: inline-flex;
}
} }
&.is-active { &.is-active {

View File

@ -417,11 +417,7 @@ export default class NestedSelectControl extends React.Component<
return ( return (
<> <>
{stack.map((options, index) => ( {stack.map((options, index) => (
<div <div key={index} className={cx('NestedSelect-menu')}>
key={index}
className={cx('NestedSelect-menu')}
style={{width: this.target.offsetWidth}}
>
{index === 0 ? searchInput : null} {index === 0 ? searchInput : null}
{multiple && index === 0 ? ( {multiple && index === 0 ? (
<div <div
@ -519,10 +515,7 @@ export default class NestedSelectControl extends React.Component<
disabled={!this.state.isOpened} disabled={!this.state.isOpened}
onRootClose={this.close} onRootClose={this.close}
> >
<div <div className={cx('NestedSelect-menuOuter')}>
className={cx('NestedSelect-menuOuter')}
style={{minWidth: this.target.offsetWidth}}
>
{this.renderOptions()} {this.renderOptions()}
</div> </div>
</RootCloseWrapper> </RootCloseWrapper>
@ -534,12 +527,7 @@ export default class NestedSelectControl extends React.Component<
target={this.getTarget} target={this.getTarget}
show show
> >
<PopOver <PopOver className={cx('NestedSelect-popover')}>{body}</PopOver>
className={cx('NestedSelect-popover')}
style={{minWidth: this.target.offsetWidth}}
>
{body}
</PopOver>
</Overlay> </Overlay>
); );
} }