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.
433 lines
7.3 KiB
SCSS
433 lines
7.3 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;
|
|
}
|
|
|
|
input,
|
|
textarea {
|
|
caret-color: var(--input-text-color) !important;
|
|
}
|
|
|
|
* {
|
|
user-select: none;
|
|
|
|
.text-selectable,
|
|
input,
|
|
textarea {
|
|
user-select: text;
|
|
a {
|
|
word-break: break-all;
|
|
}
|
|
}
|
|
}
|
|
|
|
::selection {
|
|
background: var(--text-selection-color);
|
|
}
|
|
|
|
.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-label {
|
|
font-weight: 700;
|
|
color: var(--white-color);
|
|
padding: var(--margins-sm);
|
|
width: 100%;
|
|
border-radius: 2px;
|
|
text-align: center;
|
|
&.primary {
|
|
background-color: var(--primary-color);
|
|
}
|
|
&.danger {
|
|
background-color: var(--danger-color);
|
|
}
|
|
}
|
|
|
|
.session-icon-button {
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
position: relative;
|
|
transform: translateZ(0);
|
|
}
|
|
|
|
/* 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: var(--font-size-md);
|
|
|
|
&-text {
|
|
color: var(--text-primary-color);
|
|
font-weight: 400;
|
|
font-size: var(--font-size-sm);
|
|
line-height: var(--font-size-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--incoming {
|
|
margin-inline-start: 0;
|
|
margin-inline-end: auto;
|
|
}
|
|
.module-message--outgoing {
|
|
margin-inline-end: 0;
|
|
margin-inline-start: auto;
|
|
}
|
|
|
|
.module-message__container {
|
|
position: relative;
|
|
display: inline-block;
|
|
min-width: 30px;
|
|
// To limit messages with things forcing them wider, like long attachment names.
|
|
width: 100%;
|
|
align-items: center;
|
|
border-radius: var(--border-radius-message-box);
|
|
}
|
|
|
|
label {
|
|
user-select: none;
|
|
}
|
|
|
|
.conversation-header {
|
|
.module-avatar img {
|
|
box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 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-modal {
|
|
animation: fadein var(--default-duration);
|
|
z-index: 150;
|
|
min-width: 300px;
|
|
box-sizing: border-box;
|
|
max-height: 90vh;
|
|
max-width: calc(min(70vw, 800px));
|
|
font-family: var(--font-default);
|
|
background-color: var(--modal-background-content-color);
|
|
color: var(--modal-text-color);
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 14px;
|
|
box-shadow: var(--modal-drop-shadow);
|
|
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
&__header {
|
|
font-family: var(--font-default);
|
|
font-size: var(--font-size-lg);
|
|
font-weight: 500;
|
|
text-align: center;
|
|
line-height: 18px;
|
|
}
|
|
|
|
&__body {
|
|
padding: 0px var(--margins-lg) var(--margins-lg) var(--margins-lg);
|
|
font-family: var(--font-default);
|
|
line-height: var(--font-size-md);
|
|
font-size: var(--font-size-md);
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
|
|
.message {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
.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);
|
|
font-weight: 500;
|
|
}
|
|
|
|
&__center {
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
.session-button {
|
|
margin: var(--margins-xs);
|
|
}
|
|
}
|
|
}
|
|
|
|
&__text-highlight {
|
|
@include text-highlight(var(--primary-color));
|
|
|
|
color: var(--black-color);
|
|
|
|
font-family: var(--font-mono);
|
|
font-style: normal;
|
|
font-size: var(--font-size-xs);
|
|
}
|
|
}
|
|
|
|
.session-modal__body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.session-confirm {
|
|
&-wrapper {
|
|
.session-modal__body .session-modal__centered {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
&-main-message {
|
|
font-size: var(--font-size-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: var(--font-size-md);
|
|
|
|
background-color: var(--right-panel-item-background-color);
|
|
color: var(--right-panel-item-text-color);
|
|
|
|
&:hover {
|
|
background: var(--right-panel-item-background-hover-color);
|
|
}
|
|
}
|
|
|
|
&__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(--right-panel-item-background-color);
|
|
color: var(--right-panel-item-text-color);
|
|
|
|
font-size: 0.8rem;
|
|
width: -webkit-fill-available;
|
|
transition: var(--default-duration);
|
|
|
|
&:first-child {
|
|
border-top: 1px solid var(--border-color);
|
|
}
|
|
&:last-child {
|
|
border-top: 1px solid var(--border-color);
|
|
}
|
|
|
|
.session-icon {
|
|
margin-inline-start: 6px;
|
|
}
|
|
.item-content {
|
|
margin-inline-start: 6px;
|
|
}
|
|
|
|
&.active,
|
|
&:hover {
|
|
background: var(--right-panel-item-background-hover-color);
|
|
}
|
|
|
|
&.danger {
|
|
color: var(--danger-color);
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
background: var(--right-panel-item-background-hover-color);
|
|
}
|
|
}
|
|
|
|
.image-upload-section {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: absolute;
|
|
cursor: pointer;
|
|
width: 80px;
|
|
height: 80px;
|
|
border-radius: 100%;
|
|
background-color: var(--lightbox-background-color);
|
|
opacity: 0;
|
|
transition: var(--default-duration);
|
|
|
|
&:after {
|
|
content: 'Edit';
|
|
color: var(--white-color);
|
|
}
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.conversation-loader {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
margin: -40px 0 0 -40px;
|
|
|
|
& > div {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.session-settings {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: var(--background-secondary-color);
|
|
}
|
|
|
|
.messages li {
|
|
transition: var(--default-duration) !important;
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|
|
|
|
.group-member-list {
|
|
&__selection {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
.module-message__text {
|
|
white-space: pre-wrap;
|
|
}
|