parent
cb9d78064a
commit
5951992bd5
|
@ -8,7 +8,16 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.inputWrapper {
|
||||||
|
flex: 1 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.buttonWrapper {
|
||||||
|
flex: 0 0 22px;
|
||||||
|
}
|
||||||
|
|
||||||
.keyInput,
|
.keyInput,
|
||||||
.valueInput {
|
.valueInput {
|
||||||
|
width: 100%;
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
|
@ -63,6 +63,7 @@ class KeyValueListInputItem extends Component {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={styles.itemContainer}>
|
<div className={styles.itemContainer}>
|
||||||
|
<div className={styles.inputWrapper}>
|
||||||
<TextInput
|
<TextInput
|
||||||
className={styles.keyInput}
|
className={styles.keyInput}
|
||||||
name="key"
|
name="key"
|
||||||
|
@ -72,7 +73,9 @@ class KeyValueListInputItem extends Component {
|
||||||
onFocus={this.onFocus}
|
onFocus={this.onFocus}
|
||||||
onBlur={this.onBlur}
|
onBlur={this.onBlur}
|
||||||
/>
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className={styles.inputWrapper}>
|
||||||
<TextInput
|
<TextInput
|
||||||
className={styles.valueInput}
|
className={styles.valueInput}
|
||||||
name="value"
|
name="value"
|
||||||
|
@ -82,14 +85,17 @@ class KeyValueListInputItem extends Component {
|
||||||
onFocus={this.onFocus}
|
onFocus={this.onFocus}
|
||||||
onBlur={this.onBlur}
|
onBlur={this.onBlur}
|
||||||
/>
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
{
|
{
|
||||||
!isNew &&
|
!isNew &&
|
||||||
|
<div className={styles.buttonWrapper}>
|
||||||
<IconButton
|
<IconButton
|
||||||
name={icons.REMOVE}
|
name={icons.REMOVE}
|
||||||
tabIndex={-1}
|
tabIndex={-1}
|
||||||
onPress={this.onRemovePress}
|
onPress={this.onRemovePress}
|
||||||
/>
|
/>
|
||||||
|
</div>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
.episodeNumber {
|
.episodeNumber {
|
||||||
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
||||||
|
|
||||||
width: 70px;
|
width: 65px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.size {
|
.size {
|
||||||
|
|
Loading…
Reference in New Issue