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.
638 lines
12 KiB
SCSS
638 lines
12 KiB
SCSS
@font-face {
|
|
font-family: 'SpaceMono';
|
|
src: url('../fonts/SpaceMono-Regular.ttf') format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'SpaceMono';
|
|
src: url('../fonts/SpaceMono-Bold.ttf') format('truetype');
|
|
font-weight: bold;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'SpaceMono';
|
|
src: url('../fonts/SpaceMono-Italic.ttf') format('truetype');
|
|
font-style: italic;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'SpaceMono';
|
|
src: url('../fonts/SpaceMono-BoldItalic.ttf') format('truetype');
|
|
font-weight: bold;
|
|
font-style: italic;
|
|
}
|
|
@font-face {
|
|
font-family: 'Wasa';
|
|
src: url('../fonts/Wasa-Bold.otf') format('opentype');
|
|
font-weight: bold;
|
|
}
|
|
|
|
// Session Colors
|
|
$session-font-family: 'Wasa';
|
|
|
|
$session-color-green: #00f782;
|
|
$session-color-green-alt-1: #00f480;
|
|
$session-color-green-alt-2: #00fd73;
|
|
$session-color-green-alt-3: #00f782;
|
|
|
|
$session-shade-1: #0c0c0c;
|
|
$session-shade-2: #161616;
|
|
$session-shade-3: #191818;
|
|
$session-shade-4: #1b1b1b;
|
|
$session-shade-5: #222325;
|
|
$session-shade-6: #232323;
|
|
$session-shade-7: #2e2e2e;
|
|
$session-shade-8: #2f2f2f;
|
|
$session-shade-9: #313131;
|
|
$session-shade-10: #3e3e3e;
|
|
$session-shade-11: #3f3f3f;
|
|
$session-shade-12: #3f4146;
|
|
$session-shade-13: #474646;
|
|
$session-shade-14: #535865;
|
|
$session-shade-15: #5b6c72;
|
|
$session-shade-16: #979797;
|
|
$session-shade-17: #d8d8d8;
|
|
|
|
$session-opaque-dark-1: rgba(0, 0, 0, 0.25);
|
|
$session-opaque-dark-2: rgba(0, 0, 0, 0.37);
|
|
$session-opaque-dark-3: rgba(0, 0, 0, 0.5);
|
|
|
|
$session-color-white: #fff;
|
|
$session-color-dark-grey: #353535;
|
|
$session-color-black: #000;
|
|
$session-color-danger: #FF453A;
|
|
$session-color-primary: $session-shade-13;
|
|
$session-color-secondary: $session-shade-16;
|
|
|
|
$session-color-info: $session-shade-11;
|
|
$session-color-success: #35d388;
|
|
$session-color-error: #edd422;
|
|
$session-color-warning: $session-shade-17;
|
|
|
|
$session-color-light-grey: #a0a0a0;
|
|
|
|
$session-shadow-opacity: 0.15;
|
|
$session-overlay-opacity: 0.3;
|
|
|
|
$session-margin-sm: 10px;
|
|
$session-margin-md: 15px;
|
|
$session-margin-lg: 20px;
|
|
|
|
@mixin session-color-subtle($color) {
|
|
color: rgba($color, 0.6);
|
|
}
|
|
|
|
$session-transition-duration: 0.25s;
|
|
|
|
$session-icon-size-sm: 15px;
|
|
$session-icon-size-md: 20px;
|
|
$session-icon-size-lg: 30px;
|
|
|
|
$session-conversation-header-height: 60px;
|
|
|
|
@mixin fontWasaBold {
|
|
font-weight: 700;
|
|
font-family: $session-font-family;
|
|
}
|
|
|
|
a,
|
|
div,
|
|
span,
|
|
label {
|
|
user-select: none;
|
|
}
|
|
|
|
$session-gradient-green: linear-gradient(
|
|
270deg,
|
|
rgba($session-color-green-alt-1, 1),
|
|
rgba($session-color-green-alt-1, 0.6)
|
|
);
|
|
$session-gradient-black: linear-gradient(
|
|
90deg,
|
|
rgba($session-shade-3, 1),
|
|
rgba($session-shade-4, 0.6)
|
|
);
|
|
|
|
$session-dark-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.37);
|
|
|
|
$session_message-container-border-radius: 5px;
|
|
|
|
.shadowed {
|
|
opacity: $session-shadow-opacity;
|
|
}
|
|
.overlayed {
|
|
opacity: $session-overlay-opacity;
|
|
pointer-events: none;
|
|
}
|
|
.overlay {
|
|
display: block !important;
|
|
z-index: 1;
|
|
}
|
|
|
|
.button-group > div {
|
|
margin-left: 5px;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.session-button {
|
|
@mixin transparent-background($textAndBorderColor) {
|
|
background-color: Transparent;
|
|
background-repeat: no-repeat;
|
|
overflow: hidden;
|
|
outline: none;
|
|
color: $textAndBorderColor;
|
|
border: 2px solid $textAndBorderColor;
|
|
}
|
|
|
|
width: auto;
|
|
display: flex;
|
|
justify-content: center;
|
|
font-weight: 700;
|
|
user-select: none;
|
|
cursor: pointer;
|
|
transition: $session-transition-duration;
|
|
|
|
&.default,
|
|
&.square,
|
|
&.brand {
|
|
color: $session-color-white;
|
|
|
|
&.green {
|
|
border: 2px solid $session-color-green;
|
|
background-color: $session-color-green;
|
|
&:hover {
|
|
@include transparent-background($session-color-green);
|
|
}
|
|
}
|
|
&.white {
|
|
background-color: $session-color-white;
|
|
}
|
|
&.primary {
|
|
background-color: $session-color-primary;
|
|
}
|
|
&.secondary {
|
|
background-color: $session-color-secondary;
|
|
}
|
|
&.danger {
|
|
background-color: $session-color-danger;
|
|
}
|
|
&.warning {
|
|
background-color: $session-color-warning;
|
|
}
|
|
}
|
|
|
|
&.brand-outline,
|
|
&.default-outline,
|
|
&.square-outline {
|
|
&.green {
|
|
@include transparent-background($session-color-green);
|
|
|
|
&:hover {
|
|
@include transparent-background($session-color-white);
|
|
}
|
|
}
|
|
&.white {
|
|
@include transparent-background($session-color-white);
|
|
&:hover {
|
|
@include transparent-background($session-color-green);
|
|
}
|
|
}
|
|
&.primary {
|
|
@include transparent-background($session-color-primary);
|
|
}
|
|
&.secondary {
|
|
@include transparent-background($session-color-secondary);
|
|
}
|
|
&.danger {
|
|
@include transparent-background($session-color-danger);
|
|
}
|
|
&.warning {
|
|
@include transparent-background($session-color-warning);
|
|
}
|
|
}
|
|
|
|
&.brand {
|
|
min-width: 165px;
|
|
height: 45px;
|
|
line-height: 45px;
|
|
padding: 0;
|
|
font-size: 15px;
|
|
font-family: $session-font-family;
|
|
border-radius: 500px;
|
|
}
|
|
|
|
&.default,
|
|
&.square,
|
|
&.default-outline,
|
|
&.square-outline {
|
|
border-radius: 2px;
|
|
height: 33px;
|
|
padding: 0px 18px;
|
|
line-height: 33px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
&.square,
|
|
&.square-outline {
|
|
border-radius: 0px;
|
|
}
|
|
}
|
|
|
|
@mixin set-icon-margin($size) {
|
|
margin: $size / 3;
|
|
}
|
|
.session-icon {
|
|
&.padded-left {
|
|
@include set-icon-margin($session-icon-size-md);
|
|
}
|
|
}
|
|
.session-icon-button {
|
|
opacity: 0.4;
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
transition: opacity $session-transition-duration;
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
&.small.padded {
|
|
@include set-icon-margin($session-icon-size-sm);
|
|
}
|
|
|
|
&.medium.padded {
|
|
@include set-icon-margin($session-icon-size-md);
|
|
}
|
|
|
|
&.large.padded {
|
|
@include set-icon-margin($session-icon-size-lg);
|
|
}
|
|
}
|
|
|
|
.session-icon {
|
|
fill: $session-color-white;
|
|
}
|
|
|
|
/* CONVERSATION AND MESSAGES */
|
|
|
|
@mixin standard-icon-button() {
|
|
color: $session-color-white;
|
|
opacity: 0.9;
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.module-conversation-header__title-flex,
|
|
.module-conversation-header__title {
|
|
width: 100%;
|
|
|
|
.module-contact-name {
|
|
width: 100%;
|
|
}
|
|
|
|
.module-contact-name__profile-number {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
.module-message__author__profile-name {
|
|
font-style: normal;
|
|
}
|
|
|
|
.module-message__author-avatar {
|
|
flex-direction: column;
|
|
display: inline-flex;
|
|
margin-right: 20px;
|
|
padding-top: 5px;
|
|
}
|
|
|
|
.module-message__container {
|
|
border-radius: $session_message-container-border-radius;
|
|
}
|
|
label {
|
|
user-select: none;
|
|
}
|
|
|
|
.module-message__attachment-container,
|
|
.module-image--curved-bottom-right,
|
|
.module-image--curved-bottom-left {
|
|
border-top-left-radius: 0px;
|
|
border-top-right-radius: 0px;
|
|
border-bottom-left-radius: $session_message-container-border-radius;
|
|
border-bottom-right-radius: $session_message-container-border-radius;
|
|
}
|
|
|
|
.conversation-header .session-icon-button {
|
|
@include standard-icon-button();
|
|
}
|
|
|
|
.module-conversation-header,
|
|
.message-selection-overlay {
|
|
height: $session-conversation-header-height;
|
|
}
|
|
|
|
.message-selection-overlay {
|
|
position: absolute;
|
|
left: 15px;
|
|
right: 15px;
|
|
display: none;
|
|
|
|
.close-button {
|
|
float: left;
|
|
margin-top: 17px;
|
|
margin-left: 7px;
|
|
}
|
|
}
|
|
.message-selection-overlay div[role='button'] {
|
|
display: inline-block;
|
|
}
|
|
|
|
.message-selection-overlay .button-group {
|
|
float: right;
|
|
margin-top: 13.5px;
|
|
}
|
|
|
|
.hidden {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.input-with-label-container {
|
|
height: 46.5px;
|
|
width: 280px;
|
|
color: $session-color-white;
|
|
padding: 2px 0 2px 0;
|
|
transition: opacity $session-transition-duration;
|
|
opacity: 1;
|
|
position: relative;
|
|
|
|
label {
|
|
line-height: 14px;
|
|
opacity: 0;
|
|
color: #737373;
|
|
font-size: 10px;
|
|
line-height: 11px;
|
|
position: absolute;
|
|
top: 0px;
|
|
}
|
|
|
|
&.filled {
|
|
opacity: 1;
|
|
}
|
|
|
|
input {
|
|
border: none;
|
|
outline: 0;
|
|
height: 14px;
|
|
width: 280px;
|
|
background: transparent;
|
|
color: $session-color-white;
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
}
|
|
|
|
hr {
|
|
border: 1px solid $session-color-white;
|
|
width: 100%;
|
|
position: absolute;
|
|
bottom: 0px;
|
|
}
|
|
|
|
button {
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
right: 0px;
|
|
}
|
|
}
|
|
|
|
#session-toast-container {
|
|
position: fixed;
|
|
right: $session-margin-lg;
|
|
bottom: $session-margin-lg;
|
|
|
|
z-index: 100;
|
|
}
|
|
|
|
.session-toast {
|
|
position: relative;
|
|
padding: $session-margin-md $session-margin-md;
|
|
background-color: rgba($session-shade-6, 0.8);
|
|
margin-bottom: $session-margin-md;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
|
|
.toast-icon,
|
|
.toast-info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.toast-icon {
|
|
padding-right: $session-icon-size-md;
|
|
}
|
|
.toast-info {
|
|
margin-right: $session-icon-size-sm + $session-icon-size-sm;
|
|
width: 350px;
|
|
|
|
&-container {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.title,
|
|
.description {
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.title {
|
|
font-size: 15px;
|
|
line-height: 13px;
|
|
margin-bottom: $session-margin-sm;
|
|
color: $session-color-white;
|
|
}
|
|
|
|
.description {
|
|
font-size: 12px;
|
|
@include session-color-subtle($session-color-white);
|
|
}
|
|
|
|
.toast-close {
|
|
@include session-color-subtle($session-color-white);
|
|
position: absolute;
|
|
top: $session-margin-md;
|
|
right: $session-margin-md;
|
|
|
|
&:hover {
|
|
color: $session-color-white;
|
|
}
|
|
}
|
|
|
|
@mixin set-toast-theme($color) {
|
|
border-left: 4px solid $color;
|
|
}
|
|
&.info {
|
|
@include set-toast-theme($session-color-info);
|
|
}
|
|
&.success {
|
|
@include set-toast-theme($session-color-success);
|
|
}
|
|
&.warning {
|
|
@include set-toast-theme($session-color-warning);
|
|
}
|
|
&.error {
|
|
@include set-toast-theme($session-color-error);
|
|
}
|
|
}
|
|
|
|
.session-modal {
|
|
z-index: 150;
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
|
|
box-sizing: border-box;
|
|
height: 529px;
|
|
width: 345px;
|
|
background-color: $session-shade-4;
|
|
border: 1px solid $session-shade-8;
|
|
|
|
.header {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
padding: $session-margin-lg;
|
|
|
|
font-family: 'Wasa';
|
|
text-align: center;
|
|
line-height: 18px;
|
|
font-size: 15px;
|
|
font-weight: 700;
|
|
|
|
.close,
|
|
.icons {
|
|
width: 70px;
|
|
}
|
|
.close > div {
|
|
float: left;
|
|
}
|
|
.icons > div {
|
|
float: right;
|
|
}
|
|
}
|
|
}
|
|
|
|
.session-toggle {
|
|
width: 51px;
|
|
height: 31px;
|
|
border: 1.5px solid #e5e5ea;
|
|
border-radius: 16px;
|
|
position: relative;
|
|
|
|
cursor: pointer;
|
|
background-color: rgba(0, 0, 0, 0);
|
|
|
|
.knob {
|
|
position: absolute;
|
|
top: 0.5px;
|
|
left: 0.5px;
|
|
height: 27px;
|
|
width: 27px;
|
|
border-radius: 28px;
|
|
background-color: $session-color-white;
|
|
box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.05), 0 3px 1px 0 rgba(0, 0, 0, 0.05),
|
|
0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 3px 3px 0 rgba(0, 0, 0, 0.05);
|
|
|
|
transition: transform 0.25s ease, background-color 0.25s ease;
|
|
}
|
|
|
|
&.active {
|
|
background-color: $session-color-green;
|
|
border-color: $session-color-green;
|
|
|
|
.knob {
|
|
transform: translateX(20px);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// .react-contextmenu {
|
|
// padding: 0px;
|
|
// margin: 0px;
|
|
|
|
// border: none !important;
|
|
// border-radius: 0px;
|
|
// }
|
|
|
|
// .react-contextmenu-item {
|
|
// display: flex;
|
|
// align-items: center;
|
|
|
|
// height: 25px;
|
|
// padding: 0px 10px;
|
|
|
|
// background-color: #1B1B1B;
|
|
|
|
// color: $session-color-white;
|
|
// font-family: 'Wasa';
|
|
// font-size: 12px;
|
|
// line-height: $session-icon-size-sm;
|
|
// font-weight: 700;
|
|
|
|
// &--active, &--selected{
|
|
// background-color: $session-shade-7 !important;
|
|
// }
|
|
// }
|
|
|
|
|
|
.session-dropdown{
|
|
position: absolute;
|
|
top: 50px;
|
|
left: 50px;
|
|
display: inline-block;
|
|
|
|
ul {
|
|
display: block;
|
|
list-style: none;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
|
|
li {
|
|
cursor: pointer;
|
|
|
|
height: 25px;
|
|
padding-right: 7px;
|
|
background-color: #1B1B1B;
|
|
|
|
color: $session-color-white;
|
|
font-family: 'Wasa';
|
|
font-size: 12px;
|
|
line-height: $session-icon-size-sm;
|
|
font-weight: 700;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.session-icon {
|
|
margin-left: 6px;
|
|
}
|
|
.item-content {
|
|
margin-left: 6px;
|
|
}
|
|
|
|
&.active, &:hover{
|
|
background-color: $session-shade-7;
|
|
}
|
|
|
|
&.danger {
|
|
color: $session-color-danger;
|
|
}
|
|
}
|
|
}
|
|
} |