diff --git a/stylesheets/_session.scss b/stylesheets/_session.scss index 4bff6e90e..02a25d1a9 100644 --- a/stylesheets/_session.scss +++ b/stylesheets/_session.scss @@ -1081,3 +1081,37 @@ label { input { user-select: text; } + +.dark-theme .invite-friends-dialog .member-item { + height: 64px; + background-color: $session-shade-4; + border: $session-separator-element-border; + display: flex; + transition: $session-transition-duration; + + .module-avatar, + .name-part { + margin: auto $session-margin-md; + } + + .check-mark{ + margin: auto $session-margin-xs; + } + + .name-part { + flex-grow: 1; + } + +} + +.dark-theme .modal .content{ + background-color: $session-shade-4; +} + +.loki-dialog button { + border:none; +} + +.friend-selection-list { + width: 40vh; +} diff --git a/ts/components/conversation/InviteFriendsDialog.tsx b/ts/components/conversation/InviteFriendsDialog.tsx index 2a1fc9c16..ddf3d6e1e 100644 --- a/ts/components/conversation/InviteFriendsDialog.tsx +++ b/ts/components/conversation/InviteFriendsDialog.tsx @@ -1,5 +1,6 @@ import React from 'react'; import { Contact, MemberList } from './MemberList'; +import { SessionIconButton, SessionIconType, SessionIconSize } from '../session/icon'; interface Props { friendList: Array; @@ -63,6 +64,13 @@ export class InviteFriendsDialog extends React.Component { return (
+
+ +

{titleText}

{ const mark = markType === 'kicked' ? '✘' : '✔'; + const nameAndPubKey = `${name} ${window.shortenPubkey(pubkey)}`; + return (
{ onClick={this.handleClick} > {this.renderAvatar()} - {name} - {pubkey} + {nameAndPubKey} {mark}
);