Updating tos & privacy links

pull/851/head
Vincent 5 years ago
parent 4fb178c092
commit 4d65fe76ab

@ -2609,7 +2609,7 @@
}, },
"ByUsingThisService...": { "ByUsingThisService...": {
"message": "message":
"By using this service, you agree to our <a href=\"https://getsession.org/privacy-policy/\">Terms and Conditions</a> and <a href=\"https://getsession.org/privacy-policy/\" target=\"_blank\">Privacy Statement</a>" "By using this service, you agree to our <a href=\"https://getsession.org/legal/#tos\">Terms of Service</a> and <a href=\"https://getsession.org/privacy-policy/\" target=\"_blank\">Privacy Policy</a>"
}, },
"beginYourSession": { "beginYourSession": {
"message": "Begin<br />your<br />Session." "message": "Begin<br />your<br />Session."

@ -36,7 +36,6 @@
} }
// Module: Message // Module: Message
.module-message { .module-message {
position: relative; position: relative;
display: inline-flex; display: inline-flex;

@ -136,7 +136,7 @@ div.spacer-lg {
// Blur for modals // Blur for modals
.loki-dialog ~ .index.inbox { .loki-dialog ~ .index.inbox {
filter: blur(1px); filter: blur(2px);
transition: filter 0.1s; transition: filter 0.1s;
} }
@ -156,10 +156,6 @@ div.spacer-lg {
width: 100%; width: 100%;
} }
::selection {
background: rgba($session-color-green, 0.6);
}
input, input,
textarea { textarea {
caret-color: $session-color-green !important; caret-color: $session-color-green !important;
@ -200,14 +196,15 @@ $session-conversation-header-height: 60px;
font-family: $session-font-family; font-family: $session-font-family;
} }
a, * {
div, user-select: none;
span, }
label {
.text-selectable {
user-select: text; user-select: text;
&::selection { ::selection {
background: $session-shade-17; background: rgba($session-color-green, 0.6);
} }
} }
@ -592,6 +589,11 @@ label {
.close-button { .close-button {
float: left; float: left;
} }
.session-button.default.danger {
display: flex;
width: 80px;
}
} }
.message-selection-overlay div[role='button'] { .message-selection-overlay div[role='button'] {
display: inline-block; display: inline-block;

@ -1,4 +1,5 @@
import React from 'react'; import React from 'react';
import classNames from 'classnames';
import { QRCode } from 'react-qr-svg'; import { QRCode } from 'react-qr-svg';
import { Avatar } from './Avatar'; import { Avatar } from './Avatar';
@ -109,7 +110,7 @@ export class EditProfileDialog extends React.Component<Props, State> {
<div className="panel-text-divider"> <div className="panel-text-divider">
<span>{window.i18n('yourSessionID')}</span> <span>{window.i18n('yourSessionID')}</span>
</div> </div>
<p className="session-id-section-display">{sessionID}</p> <p className={classNames('text-selectable', 'session-id-section-display')}>{sessionID}</p>
<div className="spacer-lg" /> <div className="spacer-lg" />

@ -88,7 +88,7 @@ export class MessageBody extends React.Component<Props> {
const { i18n, textPending } = this.props; const { i18n, textPending } = this.props;
return ( return (
<span> <span className="text-selectable">
{jsx} {jsx}
{textPending ? ( {textPending ? (
<span className="module-message-body__highlight"> <span className="module-message-body__highlight">

Loading…
Cancel
Save