diff options
author | 2023-03-11 10:49:44 +0100 | |
---|---|---|
committer | 2023-03-11 10:49:44 +0100 | |
commit | cb2f84e551727bd1852ed5fd93777289d3439bbf (patch) | |
tree | bb4d3cd8c3ae66a58d939b9252837fe4b7e421ce /web/source/settings/admin/federation/import-export/process.jsx | |
parent | [feature] Provide .well-known/host-meta endpoint (#1604) (diff) | |
download | gotosocial-cb2f84e551727bd1852ed5fd93777289d3439bbf.tar.xz |
[frontend/fix] Mobile css tweaks (#1605)
* mobile css tweaks
* bulk process list mobile css
Diffstat (limited to 'web/source/settings/admin/federation/import-export/process.jsx')
-rw-r--r-- | web/source/settings/admin/federation/import-export/process.jsx | 37 |
1 files changed, 20 insertions, 17 deletions
diff --git a/web/source/settings/admin/federation/import-export/process.jsx b/web/source/settings/admin/federation/import-export/process.jsx index 6b9d98f01..feb3631e1 100644 --- a/web/source/settings/admin/federation/import-export/process.jsx +++ b/web/source/settings/admin/federation/import-export/process.jsx @@ -127,11 +127,13 @@ function ImportList({ list, data: blockedInstances }) { } /> } - <DomainCheckList - field={form.domains} - blockedInstances={blockedInstances} - commentType={showComment.value} - /> + <div className="checkbox-list-wrapper"> + <DomainCheckList + field={form.domains} + blockedInstances={blockedInstances} + commentType={showComment.value} + /> + </div> <TextArea field={form.privateComment} @@ -182,7 +184,6 @@ function DomainCheckList({ field, blockedInstances, commentType }) { field={field} header={<> <b>Domain</b> - <b></b> <b> {commentType == "public_comment" && "Public comment"} {commentType == "private_comment" && "Private comment"} @@ -287,16 +288,18 @@ function DomainEntry({ entry, onChange, extraProps: { alreadyExists, comment } } return ( <> - <TextInput - field={domainField} - onChange={(e) => { - domainField.onChange(e); - onChange({ domain: e.target.value, checked: true }); - }} - /> - <span id="icon" onClick={clickIcon}> - <DomainEntryIcon alreadyExists={alreadyExists} suggestion={entry.suggest} onChange={onChange} /> - </span> + <div className="domain-input"> + <TextInput + field={domainField} + onChange={(e) => { + domainField.onChange(e); + onChange({ domain: e.target.value, checked: true }); + }} + /> + <span id="icon" onClick={clickIcon}> + <DomainEntryIcon alreadyExists={alreadyExists} suggestion={entry.suggest} onChange={onChange} /> + </span> + </div> <p>{comment}</p> </> ); @@ -320,7 +323,7 @@ function DomainEntryIcon({ alreadyExists, suggestion }) { return ( <> - <i className={`fa ${icon}`} aria-hidden="true" title={text}></i> + <i className={`fa fa-fw ${icon}`} aria-hidden="true" title={text}></i> <span className="sr-only">{text}</span> </> ); |