Fix some styling issues in Quality Profile and Release Profiles

This commit is contained in:
Mark McDowall 2020-05-30 10:11:34 -07:00 committed by Qstick
parent 70a2da0f74
commit 1209e3cefb
4 changed files with 44 additions and 26 deletions

View File

@ -8,7 +8,16 @@
}
}
.inputWrapper {
flex: 1 0 0;
}
.buttonWrapper {
flex: 0 0 22px;
}
.keyInput,
.valueInput {
width: 100%;
border: none;
}

View File

@ -63,34 +63,41 @@ class KeyValueListInputItem extends Component {
return (
<div className={styles.itemContainer}>
<TextInput
className={styles.keyInput}
name="key"
value={keyValue}
placeholder={keyPlaceholder}
onChange={this.onKeyChange}
onFocus={this.onFocus}
onBlur={this.onBlur}
/>
<div className={styles.inputWrapper}>
<TextInput
className={styles.keyInput}
name="key"
value={keyValue}
placeholder={keyPlaceholder}
onChange={this.onKeyChange}
onFocus={this.onFocus}
onBlur={this.onBlur}
/>
</div>
<TextInput
className={styles.valueInput}
name="value"
value={value}
placeholder={valuePlaceholder}
onChange={this.onValueChange}
onFocus={this.onFocus}
onBlur={this.onBlur}
/>
<div className={styles.inputWrapper}>
<TextInput
className={styles.valueInput}
name="value"
value={value}
placeholder={valuePlaceholder}
onChange={this.onValueChange}
onFocus={this.onFocus}
onBlur={this.onBlur}
/>
</div>
{
!isNew &&
<IconButton
name={icons.REMOVE}
tabIndex={-1}
onPress={this.onRemovePress}
/>
}
<div className={styles.buttonWrapper}>
{
isNew ?
null :
<IconButton
name={icons.REMOVE}
tabIndex={-1}
onPress={this.onRemovePress}
/>
}
</div>
</div>
);
}

View File

@ -48,6 +48,7 @@
composes: buton from '~Components/Link/IconButton.css';
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
margin-right: 5px;

View File

@ -74,6 +74,7 @@
composes: buton from '~Components/Link/IconButton.css';
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
margin-right: 5px;