From b15984aa08dca84bce29ae50d720caa0ac20b333 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Wed, 13 Jan 2021 14:06:27 +1100 Subject: [PATCH] cosmetic UI for updateGroupMembersDialog --- _locales/en/messages.json | 2 +- stylesheets/_mentions.scss | 8 ---- stylesheets/_session.scss | 6 --- .../conversation/ModeratorsAddDialog.tsx | 4 +- .../conversation/ModeratorsRemoveDialog.tsx | 4 +- .../conversation/UpdateGroupMembersDialog.tsx | 43 +++---------------- 6 files changed, 8 insertions(+), 59 deletions(-) diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 136851103..02d669bc0 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -1753,7 +1753,7 @@ "description": "Toast title when the user tries to remove the creator from a closed group v2 member list." }, "cannotRemoveCreatorFromGroupDesc": { - "message": "You cannot remove this user as he is the creator of the group.", + "message": "You cannot remove this user as they are the creator of the group.", "description": "Toast description when the user tries to remove the creator from a closed group v2 member list." }, "noContactsForGroup": { diff --git a/stylesheets/_mentions.scss b/stylesheets/_mentions.scss index 878c335d2..37948c381 100644 --- a/stylesheets/_mentions.scss +++ b/stylesheets/_mentions.scss @@ -21,14 +21,6 @@ } } -.dark-theme { - .contact-selection-list { - .check-mark { - color: rgb(230, 230, 230); - } - } -} - .member-list-container { margin: 0; padding: 0; diff --git a/stylesheets/_session.scss b/stylesheets/_session.scss index 7d8c6ab01..b641ac5a2 100644 --- a/stylesheets/_session.scss +++ b/stylesheets/_session.scss @@ -556,12 +556,6 @@ label { .contact-selection-list { width: unset; } - - .create-group-dialog__member-count { - text-align: center; - margin-top: -25px; - opacity: 0.6; - } } .session-confirm { diff --git a/ts/components/conversation/ModeratorsAddDialog.tsx b/ts/components/conversation/ModeratorsAddDialog.tsx index 401244474..37335fc49 100644 --- a/ts/components/conversation/ModeratorsAddDialog.tsx +++ b/ts/components/conversation/ModeratorsAddDialog.tsx @@ -150,9 +150,7 @@ export class AddModeratorsDialog extends React.Component { onMemberClicked={this.onMemberClicked} /> - {hasContacts ? null : ( -

{i18n('noContactsToAdd')}

- )} + {hasContacts ? null :

{i18n('noContactsToAdd')}

}
- {hasMods ? null : ( -

{i18n('noModeratorsToRemove')}

- )} + {hasMods ? null :

{i18n('noModeratorsToRemove')}

}