forked from p96170835/amis
Select 样式优化
This commit is contained in:
parent
4302ce2325
commit
c16f4f0c20
|
@ -33,8 +33,7 @@
|
|||
position: relative;
|
||||
flex-grow: 1;
|
||||
line-height: 1;
|
||||
max-width: 100%;
|
||||
overflow: hidden;
|
||||
width: 0; // ! 没有这个会撑开。
|
||||
}
|
||||
|
||||
&-placeholder {
|
||||
|
@ -48,6 +47,9 @@
|
|||
&-value {
|
||||
line-height: $Form-input-lineHeight * $Form-input-fontSize;
|
||||
white-space: nowrap;
|
||||
max-width: 100%;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
|
||||
|
@ -292,6 +294,7 @@
|
|||
.#{$ns}Form-control--sizeMd>.#{$ns}Select,
|
||||
.#{$ns}Form-control--sizeLg>.#{$ns}Select {
|
||||
min-width: 100%;
|
||||
max-width: 100%;
|
||||
display: inline-flex !important;
|
||||
}
|
||||
}
|
|
@ -59,7 +59,8 @@ export default class Dialog extends React.Component<DialogProps, DialogState> {
|
|||
'show',
|
||||
'body',
|
||||
'showCloseButton',
|
||||
'actions'
|
||||
'actions',
|
||||
'popOverContainer'
|
||||
];
|
||||
static defaultProps: Partial<DialogProps> = {
|
||||
title: '弹框',
|
||||
|
|
|
@ -55,7 +55,8 @@ export default class Drawer extends React.Component<DrawerProps, object> {
|
|||
'show',
|
||||
'resizable',
|
||||
'overlay',
|
||||
'body'
|
||||
'body',
|
||||
'popOverContainer'
|
||||
];
|
||||
static defaultProps: Partial<DrawerProps> = {
|
||||
title: '',
|
||||
|
|
Loading…
Reference in New Issue