mirror of https://github.com/openspug/spug
U 优化应用选择样式
parent
1f6d23c97a
commit
e63942a8aa
|
@ -65,7 +65,7 @@ export default observer(function AppSelector(props) {
|
||||||
<div className={styles.right}>
|
<div className={styles.right}>
|
||||||
<Spin spinning={fetching}>
|
<Spin spinning={fetching}>
|
||||||
<div className={styles.title}>
|
<div className={styles.title}>
|
||||||
<div>{lds.get(envStore.idMap, `${env_id}.name`)}</div>
|
<div className={styles.text}>{lds.get(envStore.idMap, `${env_id}.name`)}</div>
|
||||||
<Input
|
<Input
|
||||||
allowClear
|
allowClear
|
||||||
style={{width: 200}}
|
style={{width: 200}}
|
||||||
|
|
|
@ -160,12 +160,13 @@
|
||||||
min-height: 500px;
|
min-height: 500px;
|
||||||
|
|
||||||
.left {
|
.left {
|
||||||
flex: 2;
|
flex: 220px;
|
||||||
border-right: 1px solid #e8e8e8;
|
border-right: 1px solid #e8e8e8;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.right {
|
.right {
|
||||||
flex: 7;
|
flex: 580px;
|
||||||
padding: 8px 40px;
|
padding: 8px 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -178,10 +179,17 @@
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
line-height: 28px;
|
line-height: 28px;
|
||||||
|
|
||||||
|
.text {
|
||||||
|
padding-right: 12px;
|
||||||
|
width: 300px;
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.appItem {
|
.appItem {
|
||||||
width: 560px;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 12px 16px;
|
padding: 12px 16px;
|
||||||
|
|
Loading…
Reference in New Issue