1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

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,6 +63,7 @@ class KeyValueListInputItem extends Component {
return (
<div className={styles.itemContainer}>
<div className={styles.inputWrapper}>
<TextInput
className={styles.keyInput}
name="key"
@ -72,7 +73,9 @@ class KeyValueListInputItem extends Component {
onFocus={this.onFocus}
onBlur={this.onBlur}
/>
</div>
<div className={styles.inputWrapper}>
<TextInput
className={styles.valueInput}
name="value"
@ -82,9 +85,12 @@ class KeyValueListInputItem extends Component {
onFocus={this.onFocus}
onBlur={this.onBlur}
/>
</div>
<div className={styles.buttonWrapper}>
{
!isNew &&
isNew ?
null :
<IconButton
name={icons.REMOVE}
tabIndex={-1}
@ -92,6 +98,7 @@ class KeyValueListInputItem extends Component {
/>
}
</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;