Minor styles improvements

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
merge-requests/939/head
marcin mikołajczak 3 years ago
parent 52dabed829
commit ab886e647c

@ -215,6 +215,9 @@ class Filters extends ImmutablePureComponent {
<Button className='button button-primary setup' text={intl.formatMessage(messages.add_new)} onClick={this.handleAddNew} /> <Button className='button button-primary setup' text={intl.formatMessage(messages.add_new)} onClick={this.handleAddNew} />
</div>
</SimpleForm>
<ColumnSubheading text={intl.formatMessage(messages.subheading_filters)} /> <ColumnSubheading text={intl.formatMessage(messages.subheading_filters)} />
<ScrollableList <ScrollableList
@ -256,13 +259,6 @@ class Filters extends ImmutablePureComponent {
</div> </div>
))} ))}
</ScrollableList> </ScrollableList>
</div>
</SimpleForm>
</Column> </Column>
); );
} }

@ -69,7 +69,7 @@ class ListAdder extends ImmutablePureComponent {
const { accountId, listIds, intl } = this.props; const { accountId, listIds, intl } = this.props;
return ( return (
<div className='modal-root__modal compose-modal'> <div className='modal-root__modal compose-modal list-editor__content'>
<div className='compose-modal__header'> <div className='compose-modal__header'>
<h3 className='compose-modal__header__title'> <h3 className='compose-modal__header__title'>
<FormattedMessage id='list_adder.header_title' defaultMessage='Add or Remove from Lists' /> <FormattedMessage id='list_adder.header_title' defaultMessage='Add or Remove from Lists' />

@ -70,7 +70,7 @@ class ListEditor extends ImmutablePureComponent {
</h3> </h3>
<IconButton className='compose-modal__close' title={intl.formatMessage(messages.close)} src={require('@tabler/icons/icons/x.svg')} onClick={this.onClickClose} /> <IconButton className='compose-modal__close' title={intl.formatMessage(messages.close)} src={require('@tabler/icons/icons/x.svg')} onClick={this.onClickClose} />
</div> </div>
<div className='compose-modal__content'> <div className='compose-modal__content list-editor__content'>
<div className='list-editor'> <div className='list-editor'>
<ColumnSubheading text={intl.formatMessage(messages.changeTitle)} /> <ColumnSubheading text={intl.formatMessage(messages.changeTitle)} />
<EditListForm /> <EditListForm />

@ -14,6 +14,10 @@
border-radius: 8px 8px 0 0; border-radius: 8px 8px 0 0;
} }
&__content {
padding: 0;
}
&__accounts { &__accounts {
background: var(--background-color); background: var(--background-color);
overflow-y: auto; overflow-y: auto;
@ -33,7 +37,7 @@
.search { .search {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
margin: 10px 0; margin: 10px;
> label { > label {
flex: 1 1; flex: 1 1;

@ -246,6 +246,10 @@
} }
} }
article:last-child > .domain {
border-bottom: none;
}
.domain__wrapper { .domain__wrapper {
display: flex; display: flex;
} }

Loading…
Cancel
Save