You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
889 lines
16 KiB
SCSS
889 lines
16 KiB
SCSS
#root {
|
|
height: 100%;
|
|
}
|
|
.subtle {
|
|
opacity: $session-subtle-factor;
|
|
}
|
|
|
|
.soft {
|
|
opacity: 0.4;
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.fullwidth {
|
|
width: 100%;
|
|
}
|
|
|
|
.break-word {
|
|
word-break: break-all;
|
|
}
|
|
|
|
.session-icon-button svg path {
|
|
transition: fill 0.3s ease;
|
|
}
|
|
|
|
input,
|
|
textarea {
|
|
caret-color: var(--color-text) !important;
|
|
}
|
|
|
|
* {
|
|
user-select: none;
|
|
|
|
.text-selectable,
|
|
input,
|
|
textarea {
|
|
user-select: text;
|
|
a {
|
|
word-break: break-all;
|
|
}
|
|
}
|
|
}
|
|
|
|
::selection {
|
|
background: var(--color-text-highlight);
|
|
}
|
|
|
|
.shadowed {
|
|
opacity: $session-shadow-opacity;
|
|
}
|
|
.overlayed {
|
|
opacity: $session-overlay-opacity;
|
|
pointer-events: none;
|
|
}
|
|
.overlay {
|
|
display: flex !important;
|
|
z-index: 1;
|
|
}
|
|
|
|
#main-view {
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-grow: 1;
|
|
position: relative;
|
|
}
|
|
|
|
.button-group > div {
|
|
display: inline-flex;
|
|
margin-inline-start: 5px;
|
|
margin-inline-end: 5px;
|
|
}
|
|
|
|
.session-button {
|
|
@mixin transparent-background($textAndBorderColor) {
|
|
background-color: Transparent;
|
|
background-repeat: no-repeat;
|
|
overflow: hidden;
|
|
outline: none;
|
|
color: $textAndBorderColor;
|
|
border: 1px solid $textAndBorderColor;
|
|
}
|
|
|
|
width: auto;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-weight: 700;
|
|
user-select: none;
|
|
white-space: nowrap;
|
|
cursor: pointer;
|
|
transition: var(--default-duration);
|
|
background-color: var(--color-transparent-color);
|
|
|
|
&.disabled {
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
&.default,
|
|
&.square,
|
|
&.brand {
|
|
color: var(--color-foreground-primary);
|
|
|
|
&:not(.disabled):hover {
|
|
background: var(--color-clickable-hovered);
|
|
}
|
|
|
|
&.green {
|
|
background-color: var(--color-accent-button);
|
|
color: var(--color-text-opposite);
|
|
}
|
|
|
|
&.white {
|
|
color: var(--color-text);
|
|
}
|
|
&.primary {
|
|
background-color: var(--color-background-primary);
|
|
color: var(--color-white-color);
|
|
|
|
.session-icon {
|
|
fill: var(--color-foreground-primary);
|
|
}
|
|
}
|
|
&.secondary {
|
|
background-color: var(--color-darkest-gray-color);
|
|
}
|
|
&.success {
|
|
/* TODO is this correct? */
|
|
background-color: var(--color-text);
|
|
}
|
|
&.danger {
|
|
background-color: var(--color-destructive);
|
|
}
|
|
&.danger-alt {
|
|
background-color: var(--color-destructive-alt);
|
|
}
|
|
&.warning {
|
|
background-color: var(--color-light-gray-color);
|
|
}
|
|
}
|
|
|
|
&.brand-outline,
|
|
&.default-outline,
|
|
&.square-outline {
|
|
border: none;
|
|
|
|
&.green {
|
|
@include transparent-background(var(--color-button-green));
|
|
}
|
|
&.white {
|
|
@include transparent-background(var(--color-text));
|
|
}
|
|
&.primary {
|
|
@include transparent-background(var(--color-dark-gray-color));
|
|
}
|
|
&.secondary {
|
|
@include transparent-background(var(--color-darkest-gray-color));
|
|
}
|
|
&.danger {
|
|
@include transparent-background(var(--color-destructive));
|
|
}
|
|
&.warning {
|
|
@include transparent-background(var(--color-warning));
|
|
}
|
|
&.warning,
|
|
&.danger,
|
|
&.secondary,
|
|
&.primary,
|
|
&.white,
|
|
&.green {
|
|
&.disabled {
|
|
@include transparent-background(var(--color-text-subtle));
|
|
|
|
&:hover {
|
|
@include transparent-background(var(--color-text-subtle));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&.brand {
|
|
min-width: 165px;
|
|
height: 34px;
|
|
align-items: center;
|
|
padding: 0px var(--margins-lg);
|
|
font-size: $session-font-md;
|
|
font-family: $session-font-accent;
|
|
border-radius: 500px;
|
|
|
|
&:not(.disabled):hover {
|
|
color: var(--color-text);
|
|
border-color: var(--color-text);
|
|
}
|
|
}
|
|
|
|
&.default,
|
|
&.square,
|
|
&.default-outline,
|
|
&.square-outline {
|
|
border-radius: 2px;
|
|
height: 33px;
|
|
padding: 0px 18px;
|
|
font-size: $session-font-sm;
|
|
}
|
|
|
|
&.square,
|
|
&.square-outline {
|
|
border-radius: 0px;
|
|
}
|
|
|
|
& > *:hover:not(svg) {
|
|
filter: brightness(80%);
|
|
}
|
|
}
|
|
|
|
.session-label {
|
|
color: var(--color-white-color);
|
|
padding: var(--margins-sm);
|
|
width: 100%;
|
|
border-radius: 2px;
|
|
text-align: center;
|
|
&.primary {
|
|
background-color: var(--color-dark-gray-color);
|
|
}
|
|
&.secondary {
|
|
background-color: var(--color-darkest-gray-color);
|
|
}
|
|
&.success {
|
|
/* TODO is this correct? */
|
|
background-color: var(--color-text);
|
|
}
|
|
&.danger {
|
|
background-color: var(--color-destructive);
|
|
}
|
|
/* TODO Is this correct? */
|
|
&.warning {
|
|
background-color: var(--color-warning);
|
|
}
|
|
}
|
|
|
|
.session-icon-button {
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
position: relative;
|
|
opacity: 0.4;
|
|
transform: translateZ(0);
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
transition: opacity var(--default-duration);
|
|
|
|
&.no-opacity {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
/* CONVERSATION AND MESSAGES */
|
|
.module-conversation-header {
|
|
height: var(--main-view-header-height);
|
|
}
|
|
|
|
.module-conversation-header__title-flex,
|
|
.module-conversation-header__title {
|
|
font-weight: bold;
|
|
width: 100%;
|
|
display: flex;
|
|
font-size: $session-font-md;
|
|
|
|
&-text {
|
|
color: var(--color-text-subtle);
|
|
font-weight: 400;
|
|
font-size: $session-font-sm;
|
|
line-height: $session-font-sm;
|
|
}
|
|
|
|
.module-contact-name {
|
|
width: 100%;
|
|
}
|
|
|
|
.module-contact-name__profile-number {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
.module-conversation-header__title {
|
|
flex-direction: column;
|
|
}
|
|
.module-conversation-header__title-flex {
|
|
flex-direction: row;
|
|
}
|
|
.module-conversation__user__profile-name,
|
|
.module-message__author__profile-name {
|
|
font-style: normal;
|
|
}
|
|
|
|
.module-message__author-avatar {
|
|
position: relative;
|
|
margin-inline-end: 20px;
|
|
padding-top: 5px;
|
|
padding-inline-end: 4px;
|
|
}
|
|
|
|
.module-message--incoming {
|
|
margin-inline-start: 0;
|
|
margin-inline-end: auto;
|
|
}
|
|
.module-message--outgoing {
|
|
margin-inline-end: 0;
|
|
margin-inline-start: auto;
|
|
}
|
|
|
|
pre {
|
|
backdrop-filter: brightness(0.8);
|
|
padding: var(--margins-xs);
|
|
}
|
|
|
|
.module-message__container {
|
|
position: relative;
|
|
display: inline-block;
|
|
overflow: hidden;
|
|
min-width: 30px;
|
|
// To limit messages with things forcing them wider, like long attachment names
|
|
max-width: calc(100vw - 380px - 100px);
|
|
align-items: center;
|
|
}
|
|
label {
|
|
user-select: none;
|
|
}
|
|
.module-message__attachment-container {
|
|
// Entirely to ensure that images are centered if they aren't full width of bubble
|
|
text-align: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
|
|
border-top-left-radius: $session_message-container-border-radius;
|
|
border-bottom-left-radius: $session_message-container-border-radius;
|
|
border-top-right-radius: 5px;
|
|
border-bottom-right-radius: 5px;
|
|
}
|
|
|
|
.conversation-header {
|
|
.module-avatar img {
|
|
box-shadow: 0px 0px 5px 0px rgba(var(--color-white-color-rgb), 0.2);
|
|
}
|
|
|
|
.search-icon {
|
|
margin-inline-end: 10px;
|
|
}
|
|
}
|
|
|
|
.module-conversation-header {
|
|
position: relative;
|
|
padding: 0px var(--margins-lg) 0px var(--margins-sm);
|
|
}
|
|
|
|
.title-wrapper {
|
|
position: relative;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.session-button div[role='button'] {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.Toastify__toast {
|
|
background: var(--color-cell-background);
|
|
color: var(--color-text);
|
|
|
|
.Toastify__close-button {
|
|
color: subtle(var(--color-text));
|
|
}
|
|
@mixin set-toast-theme($color) {
|
|
border-left: 4px solid $color;
|
|
}
|
|
&--success {
|
|
/* TODO is this correct? */
|
|
@include set-toast-theme(var(--color-session-green-color));
|
|
}
|
|
&--info {
|
|
@include set-toast-theme(var(--color-darker-gray-color));
|
|
}
|
|
&--warning {
|
|
@include set-toast-theme(var(--color-warning));
|
|
}
|
|
&--error {
|
|
/* TODO is this correct?*/
|
|
@include set-toast-theme(var(--color-warning));
|
|
}
|
|
|
|
.Toastify__progress-bar {
|
|
background-color: rgba(var(--color-text-rgb), 0.1);
|
|
}
|
|
}
|
|
|
|
.session-modal {
|
|
animation: fadein var(--default-duration);
|
|
z-index: 150;
|
|
min-width: 300px;
|
|
box-sizing: border-box;
|
|
max-height: 70vh;
|
|
max-width: calc(min(70vw, 800px));
|
|
font-family: $session-font-default;
|
|
background-color: var(--color-modal-background);
|
|
color: var(--color-text);
|
|
border: var(--border-session);
|
|
border-radius: 14px;
|
|
box-shadow: var(--color-session-shadow);
|
|
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
&__header {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
padding: var(--margins-lg);
|
|
|
|
font-family: $session-font-default;
|
|
text-align: center;
|
|
line-height: 18px;
|
|
font-size: $session-font-md;
|
|
font-weight: 700;
|
|
|
|
&.reverse {
|
|
flex-direction: row-reverse;
|
|
|
|
.session-modal__header__close > div {
|
|
float: right;
|
|
}
|
|
|
|
.session-modal__header__icons > div {
|
|
float: left;
|
|
padding-inline-start: 0px;
|
|
padding-inline-end: 10px;
|
|
}
|
|
}
|
|
|
|
&__icons,
|
|
&__close {
|
|
width: 60px;
|
|
}
|
|
&__icons {
|
|
float: right;
|
|
}
|
|
&__close > div {
|
|
float: left;
|
|
padding: var(--margins-xs);
|
|
margin: 0px;
|
|
}
|
|
&__icons > div {
|
|
float: right;
|
|
padding-inline-start: 10px;
|
|
}
|
|
}
|
|
|
|
&__body {
|
|
padding: 0px var(--margins-lg) var(--margins-lg) var(--margins-lg);
|
|
font-family: $session-font-default;
|
|
line-height: $session-font-md;
|
|
font-size: $session-font-md;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
|
|
.message {
|
|
text-align: center;
|
|
}
|
|
|
|
.session-id-editable {
|
|
width: 30vw;
|
|
max-width: 700px;
|
|
}
|
|
}
|
|
|
|
.group-member-list__selection {
|
|
overflow-y: auto;
|
|
width: 100%;
|
|
}
|
|
|
|
&__centered {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
// to allow new lines
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
&__button-group {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
|
|
.session-button {
|
|
margin: var(--margins-xs);
|
|
}
|
|
|
|
&__center {
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
.session-button {
|
|
margin: var(--margins-xs);
|
|
}
|
|
}
|
|
}
|
|
|
|
&__text-highlight {
|
|
@include text-highlight(var(--color-session-green-color));
|
|
|
|
color: black;
|
|
|
|
font-family: monospace;
|
|
font-style: normal;
|
|
font-size: $session-font-xs;
|
|
}
|
|
}
|
|
|
|
.session-modal__body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.session-confirm {
|
|
&-wrapper {
|
|
.session-modal__body .session-modal__centered {
|
|
margin: var(--margins-lg);
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
&-main-message {
|
|
font-size: $session-font-md;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
&-sub-message {
|
|
text-align: center;
|
|
margin-top: 20px;
|
|
}
|
|
}
|
|
|
|
.session-dropdown {
|
|
position: relative;
|
|
width: 100%;
|
|
|
|
&__label {
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 50px;
|
|
padding: 0px var(--margins-md);
|
|
font-size: $session-font-sm;
|
|
|
|
color: var(--color-text);
|
|
background: var(--color-cell-background);
|
|
|
|
&:hover {
|
|
background: var(--color-clickable-hovered);
|
|
}
|
|
}
|
|
|
|
&__list-container {
|
|
z-index: 99;
|
|
display: block;
|
|
position: absolute;
|
|
top: 50px;
|
|
left: 0px;
|
|
right: 0px;
|
|
list-style: none;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
max-height: 40vh;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
&__item {
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 35px;
|
|
padding: 0 var(--margins-md);
|
|
background: var(--color-cell-background);
|
|
color: var(--color-text);
|
|
|
|
font-size: 0.8rem;
|
|
width: -webkit-fill-available;
|
|
transition: var(--default-duration);
|
|
|
|
&:first-child {
|
|
border-top: var(--border-session);
|
|
}
|
|
&:last-child {
|
|
border-top: var(--border-session);
|
|
}
|
|
|
|
&:hover {
|
|
background: var(--color-clickable-hovered);
|
|
}
|
|
|
|
.session-icon {
|
|
margin-inline-start: 6px;
|
|
}
|
|
.item-content {
|
|
margin-inline-start: 6px;
|
|
}
|
|
|
|
&.active,
|
|
&:hover {
|
|
background: var(--color-clickable-hovered);
|
|
}
|
|
|
|
&.danger {
|
|
color: var(--color-destructive);
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
background: var(--color-clickable-hovered);
|
|
|
|
.session-icon {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
.image-upload-section {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: absolute;
|
|
cursor: pointer;
|
|
width: 80px;
|
|
height: 80px;
|
|
border-radius: 100%;
|
|
background-color: rgba(var(--color-black-color-rgb), 0.72);
|
|
opacity: 0;
|
|
transition: var(--default-duration);
|
|
|
|
&:after {
|
|
content: 'Edit';
|
|
}
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.qr-image {
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
background: var(--color-white-color);
|
|
padding: 0.5rem;
|
|
svg {
|
|
width: 135px;
|
|
height: 135px;
|
|
border-radius: 3px;
|
|
padding: var(--margins-xs);
|
|
background-color: var(--color-white-color);
|
|
}
|
|
}
|
|
|
|
.conversation-loader {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
margin: -40px 0 0 -40px;
|
|
|
|
& > div {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.session-loader {
|
|
display: inline-block;
|
|
position: relative;
|
|
width: 80px;
|
|
height: 80px;
|
|
flex-shrink: 0;
|
|
|
|
div {
|
|
position: absolute;
|
|
top: 33px;
|
|
width: 13px;
|
|
height: 13px;
|
|
border-radius: 50%;
|
|
background: var(--color-session-green-color);
|
|
animation-timing-function: cubic-bezier(0, 1, 1, 0);
|
|
}
|
|
div:nth-child(1) {
|
|
left: 8px;
|
|
animation: session-loader1 0.6s infinite;
|
|
}
|
|
div:nth-child(2) {
|
|
left: 8px;
|
|
animation: session-loader2 0.6s infinite;
|
|
}
|
|
div:nth-child(3) {
|
|
left: 32px;
|
|
animation: session-loader2 0.6s infinite;
|
|
}
|
|
div:nth-child(4) {
|
|
left: 56px;
|
|
animation: session-loader3 0.6s infinite;
|
|
}
|
|
@keyframes session-loader1 {
|
|
0% {
|
|
transform: scale(0);
|
|
}
|
|
100% {
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
@keyframes session-loader3 {
|
|
0% {
|
|
transform: scale(1);
|
|
}
|
|
100% {
|
|
transform: scale(0);
|
|
}
|
|
}
|
|
@keyframes session-loader2 {
|
|
0% {
|
|
transform: translate(0, 0);
|
|
}
|
|
100% {
|
|
transform: translate(24px, 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
.session-settings {
|
|
width: 100%;
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
&__password-lock {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-grow: 1;
|
|
|
|
&-box {
|
|
padding: 45px 60px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
max-width: 90%;
|
|
width: 600px;
|
|
|
|
background: var(--color-cell-background);
|
|
color: var(--color-text);
|
|
|
|
border: 1px solid var(--color-darker-gray-color);
|
|
border-radius: 5px;
|
|
}
|
|
}
|
|
}
|
|
|
|
#qr svg,
|
|
.qr-image svg {
|
|
width: $session-modal-size-sm;
|
|
height: $session-modal-size-sm;
|
|
padding: var(--margins-xs);
|
|
background-color: var(--color-white-color);
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.messages li {
|
|
transition: var(--default-duration) !important;
|
|
}
|
|
|
|
.session-id-editable {
|
|
padding: var(--margins-lg);
|
|
|
|
textarea {
|
|
width: 30vh;
|
|
}
|
|
}
|
|
.session-id-editable textarea {
|
|
resize: none;
|
|
overflow: hidden;
|
|
user-select: all;
|
|
overflow-y: auto;
|
|
padding: 0px 5px 20px 5px;
|
|
|
|
&.session-id-editable-textarea:placeholder-shown {
|
|
padding: 10px 5px 0px 5px;
|
|
font-family: var(--font-default);
|
|
}
|
|
|
|
&.group-id-editable-textarea {
|
|
margin-top: 15px;
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
|
|
input {
|
|
user-select: text;
|
|
}
|
|
|
|
.contact-selection-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 20vw;
|
|
}
|
|
|
|
.session-confirm-wrapper {
|
|
position: absolute;
|
|
height: 100%;
|
|
width: 100%;
|
|
display: flex;
|
|
|
|
.session-modal {
|
|
margin: auto auto;
|
|
}
|
|
}
|
|
|
|
.messages-container {
|
|
.session-icon-button {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 40px;
|
|
width: 40px;
|
|
border-radius: 50%;
|
|
opacity: 1;
|
|
background-color: var(--color-cell-background);
|
|
box-shadow: var(--color-session-shadow);
|
|
|
|
svg path {
|
|
transition: var(--default-duration);
|
|
opacity: 0.6;
|
|
fill: var(--color-text);
|
|
}
|
|
|
|
&:hover svg path {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
.group-member-list {
|
|
&__selection {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
.create-group-name-input {
|
|
display: flex;
|
|
justify-content: center;
|
|
width: 100%;
|
|
|
|
.session-id-editable {
|
|
height: 60px !important;
|
|
|
|
textarea {
|
|
padding-bottom: 0px !important;
|
|
}
|
|
|
|
&-disabled {
|
|
border: 1px solid var(--color-darker-gray-color) !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.module-message-detail {
|
|
.module-message {
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
|
|
.module-message__text {
|
|
white-space: pre-wrap;
|
|
}
|