fix theme of unlock settings with password

pull/1387/head
Audric Ackermann 4 years ago
parent 94b445983d
commit d0bf8d54bc
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -107,18 +107,12 @@ const {
MessageDetail, MessageDetail,
} = require('../../ts/components/conversation/MessageDetail'); } = require('../../ts/components/conversation/MessageDetail');
const { Quote } = require('../../ts/components/conversation/Quote'); const { Quote } = require('../../ts/components/conversation/Quote');
const {
ResetSessionNotification,
} = require('../../ts/components/conversation/ResetSessionNotification');
const { const {
TimerNotification, TimerNotification,
} = require('../../ts/components/conversation/TimerNotification'); } = require('../../ts/components/conversation/TimerNotification');
const { const {
TypingBubble, TypingBubble,
} = require('../../ts/components/conversation/TypingBubble'); } = require('../../ts/components/conversation/TypingBubble');
const {
VerificationNotification,
} = require('../../ts/components/conversation/VerificationNotification');
// State // State
const { createLeftPane } = require('../../ts/state/roots/createLeftPane'); const { createLeftPane } = require('../../ts/state/roots/createLeftPane');
@ -297,13 +291,11 @@ exports.setup = (options = {}) => {
MessageBody, MessageBody,
MessageDetail, MessageDetail,
Quote, Quote,
ResetSessionNotification,
TimerNotification, TimerNotification,
Types: { Types: {
Message: MediaGalleryMessage, Message: MediaGalleryMessage,
}, },
TypingBubble, TypingBubble,
VerificationNotification,
}; };
const Roots = { const Roots = {

@ -12,7 +12,7 @@
*/ */
// eslint-disable-next-line func-names // eslint-disable-next-line func-names
(function () { (function() {
'use strict'; 'use strict';
window.Whisper = window.Whisper || {}; window.Whisper = window.Whisper || {};

@ -42,19 +42,6 @@
this.onUnload(); this.onUnload();
}, },
getRenderInfo() { getRenderInfo() {
const { Components } = window.Signal;
if (this.model.propsForVerificationNotification) {
return {
Component: Components.VerificationNotification,
props: this.model.propsForVerificationNotification,
};
} else if (this.model.isSessionRestoration()) {
return {
Component: Components.ResetSessionNotification,
props: this.model.getPropsForResetSessionNotification(),
};
}
return null; return null;
}, },
render() { render() {

@ -1121,7 +1121,10 @@ label {
max-width: 90%; max-width: 90%;
width: 600px; width: 600px;
background-color: $session-shade-4; @include themify($themes) {
background: themed('composeViewBackground');
color: themed('textColor');
}
border: 1px solid $session-shade-8; border: 1px solid $session-shade-8;
border-radius: 5px; border-radius: 5px;
@ -1132,8 +1135,10 @@ label {
input { input {
width: 100%; width: 100%;
color: $session-color-white; @include themify($themes) {
background-color: $session-shade-7; background: themed('inputBackground');
color: themed('textColor');
}
padding: $session-margin-xs $session-margin-md; padding: $session-margin-xs $session-margin-md;
margin-bottom: $session-margin-lg; margin-bottom: $session-margin-lg;
outline: none; outline: none;

@ -13,14 +13,19 @@ interface Contact {
} }
type Props = { type Props = {
// tslint:disable: react-unused-props-and-state
type: 'markVerified' | 'markNotVerified'; type: 'markVerified' | 'markNotVerified';
isLocal: boolean; isLocal: boolean;
contact: Contact; contact: Contact;
}; };
export const VerificationNotification = (props: Props) => { export const VerificationNotification = (props: Props) => {
const { type } = props;
const suffix =
type === 'markVerified' ? 'mark-verified' : 'mark-not-verified';
const getStringId = () => { const getStringId = () => {
const { isLocal, type } = props; const { isLocal } = props;
switch (type) { switch (type) {
case 'markVerified': case 'markVerified':
@ -60,10 +65,6 @@ export const VerificationNotification = (props: Props) => {
); );
}; };
const { type } = props;
const suffix =
type === 'markVerified' ? 'mark-verified' : 'mark-not-verified';
return ( return (
<div className="module-verification-notification"> <div className="module-verification-notification">
<div className={`module-verification-notification__icon--${suffix}`} /> <div className={`module-verification-notification__icon--${suffix}`} />

2
ts/window.d.ts vendored

@ -12,7 +12,7 @@ import { LibTextsecure } from '../libtextsecure';
import { ConversationType } from '../js/modules/data'; import { ConversationType } from '../js/modules/data';
import { RecoveryPhraseUtil } from '../libloki/modules/mnemonic'; import { RecoveryPhraseUtil } from '../libloki/modules/mnemonic';
import { ConfirmationDialogParams } from '../background'; import { ConfirmationDialogParams } from '../background';
import { } from 'styled-components/cssprop'; import {} from 'styled-components/cssprop';
import { ConversationControllerType } from '../js/ConversationController'; import { ConversationControllerType } from '../js/ConversationController';
import { any } from 'underscore'; import { any } from 'underscore';

Loading…
Cancel
Save