signal-desktop/stylesheets/_modules.scss

7272 lines
144 KiB
SCSS
Raw Normal View History

2023-01-03 19:55:46 +00:00
// Copyright 2018 Signal Messenger, LLC
2020-10-30 20:34:04 +00:00
// SPDX-License-Identifier: AGPL-3.0-only
// Using BEM syntax explained here: https://csswizardry.com/2013/01/mindbemding-getting-your-head-round-bem-syntax/
// CAUTION: these styles are often overridden by other components
// if you make changes to these, you must check EVERY component that uses <Modal.../>
#app-container {
height: 100%;
}
.inbox {
height: 100%;
overflow: hidden;
position: relative;
}
2021-02-01 20:01:25 +00:00
.module-title-bar-drag-area {
-webkit-app-region: drag;
height: var(--title-bar-drag-area-height);
2023-04-20 17:03:43 +00:00
inset-inline-start: 0;
2021-02-01 20:01:25 +00:00
position: fixed;
top: 0;
width: 100%;
2021-12-01 23:13:09 +00:00
z-index: $z-index-on-top-of-everything;
2021-02-01 20:01:25 +00:00
}
.module-splash-screen {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.module-splash-screen__logo {
@include color-svg('../images/signal-logo.svg', $color-white);
2023-04-20 17:03:43 +00:00
margin-block: 24px;
margin-inline: 0;
&.module-img--256 {
height: 256px;
width: 256px;
}
&.module-img--200 {
height: 200px;
width: 200px;
}
&.module-img--150 {
height: 150px;
width: 150px;
}
&.module-img--128 {
height: 128px;
width: 128px;
}
&.module-logo-blue {
2021-05-28 16:15:17 +00:00
background-color: $color-ultramarine-icon;
}
}
// Module: Message
.module-message {
position: relative;
display: flex;
flex-direction: row;
align-items: stretch;
2019-11-07 21:36:16 +00:00
outline: none;
2023-04-20 17:03:43 +00:00
padding-inline: 16px;
2023-03-20 22:23:53 +00:00
transition-property: background, translate;
transition-duration: 0.1s;
transition-timing-function: ease-out;
}
.module-message__quote-story-reaction-header {
@include font-subtitle;
margin-bottom: 6px;
.module-message__container-outgoing & {
color: $color-white-alpha-80;
}
.module-message__container-incoming & {
color: $color-gray-60;
}
}
.module-message--expired {
animation: module-message__shake 0.2s linear infinite;
}
@keyframes module-message__shake {
0% {
2023-04-20 17:03:43 +00:00
/* stylelint-disable-next-line declaration-property-value-disallowed-list */
transform: translateX(0px);
}
25% {
2023-04-20 17:03:43 +00:00
/* stylelint-disable-next-line declaration-property-value-disallowed-list */
transform: translateX(-5px);
}
50% {
2023-04-20 17:03:43 +00:00
/* stylelint-disable-next-line declaration-property-value-disallowed-list */
transform: translateX(0px);
}
75% {
2023-04-20 17:03:43 +00:00
/* stylelint-disable-next-line declaration-property-value-disallowed-list */
transform: translateX(5px);
}
100% {
2023-04-20 17:03:43 +00:00
/* stylelint-disable-next-line declaration-property-value-disallowed-list */
transform: translateX(0px);
}
}
@keyframes module-message__highlight {
0% {
filter: none;
}
33% {
filter: brightness(50%);
}
66% {
filter: brightness(50%);
}
100% {
filter: none;
}
}
@keyframes module-message__highlight-lighter {
0% {
filter: none;
}
33% {
filter: brightness(76%);
}
66% {
filter: brightness(76%);
}
100% {
filter: none;
}
}
.module-message--outgoing {
flex-direction: row-reverse;
}
.module-message__buttons {
display: inline-flex;
flex-direction: row;
align-items: center;
opacity: 0;
}
.module-message:hover .module-message__buttons {
opacity: 1;
}
.module-message__buttons--incoming {
2023-04-20 17:03:43 +00:00
padding-inline-start: 8px;
& > * {
2023-04-20 17:03:43 +00:00
margin-inline-start: 12px;
&:first-child {
2023-04-20 17:03:43 +00:00
margin-inline-start: 0;
}
}
}
.module-message__buttons--outgoing {
2023-04-20 17:03:43 +00:00
padding-inline-end: 8px;
2020-01-23 23:57:37 +00:00
flex-direction: row-reverse;
& > * {
2023-04-20 17:03:43 +00:00
margin-inline-end: 12px;
&:first-child {
2023-04-20 17:03:43 +00:00
margin-inline-end: 0;
}
}
}
@mixin module-message__buttons__button($light-icon, $dark-icon: $light-icon) {
cursor: pointer;
2023-05-04 18:04:22 +00:00
height: 20px;
width: 20px;
2019-10-04 18:06:17 +00:00
@include light-theme {
@include color-svg($light-icon, $color-gray-45);
2019-10-04 18:06:17 +00:00
&:hover {
@include color-svg($light-icon, $color-gray-90);
2019-10-04 18:06:17 +00:00
}
}
2019-10-04 18:06:17 +00:00
@include dark-theme {
@include color-svg($dark-icon, $color-gray-45);
2019-10-04 18:06:17 +00:00
&:hover {
@include color-svg($dark-icon, $color-gray-02);
2019-10-04 18:06:17 +00:00
}
}
2023-03-20 22:23:53 +00:00
.module-message--targeted & {
@include mouse-mode {
background-color: $color-gray-60;
2020-01-23 23:57:37 +00:00
}
@include dark-mouse-mode {
background-color: $color-white;
2020-01-23 23:57:37 +00:00
}
}
2019-10-04 18:06:17 +00:00
.module-message:focus & {
@include keyboard-mode {
background-color: $color-gray-60;
2019-10-04 18:06:17 +00:00
}
@include dark-keyboard-mode {
background-color: $color-white;
2019-10-04 18:06:17 +00:00
}
}
}
.module-message__buttons__download {
2023-05-04 18:04:22 +00:00
@include module-message__buttons__button('../images/icons/v3/save/save.svg');
}
2019-10-04 18:06:17 +00:00
.module-message__buttons__react {
@include module-message__buttons__button(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/heart/heart-plus.svg'
);
}
.module-message__buttons__reply {
@include module-message__buttons__button(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/reply/reply.svg'
);
}
.module-message__buttons__menu {
2023-05-04 18:04:22 +00:00
@include module-message__buttons__button('../images/icons/v3/more/more.svg');
&--container {
border-radius: 4px;
2023-05-04 18:04:22 +00:00
height: 20px;
// the z-index here is so that this container is above the message and when
// clicked on, doesn't propagate the click event to the message.
2021-12-01 23:13:09 +00:00
z-index: $z-index-above-base;
}
}
.module-message__error-container {
min-width: 28px;
position: relative;
}
.module-message__error {
width: 20px;
height: 20px;
display: inline-block;
position: absolute;
bottom: 4px;
2019-10-04 18:06:17 +00:00
@include light-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/error/error-circle.svg',
2019-10-04 18:06:17 +00:00
$color-accent-red
);
}
@include dark-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/error/error-circle.svg',
2019-10-04 18:06:17 +00:00
$color-accent-red
);
}
}
.module-message__error--paused {
@include light-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/error/error-circle.svg',
$color-gray-60
);
}
@include dark-theme {
2023-05-04 18:04:22 +00:00
@include color-svg(
'../images/icons/v3/error/error-circle.svg',
$color-gray-45
);
}
}
.module-message__error--outgoing {
2023-04-20 17:03:43 +00:00
inset-inline-start: 8px;
}
.module-message__error--incoming {
2023-04-20 17:03:43 +00:00
inset-inline-end: 8px;
}
2021-01-27 21:15:43 +00:00
.module-message__container-outer {
line-height: 0;
display: flex;
flex-direction: column;
min-width: 0;
2023-03-20 22:23:53 +00:00
max-width: min(306px, calc(100% - 16px - 22px));
2021-10-14 16:54:20 +00:00
.module-timeline--width-wide &,
.module-message-detail & {
// NOTE(evanhahn): I wanted this to be 66% of the timeline, but I could not make that
// work without introducing layout bugs for some message types. This constant,
// though not ideal, fixes those bugs.
max-width: 50vw;
}
.module-timeline--width-medium & {
max-width: 370px;
}
2021-01-27 21:15:43 +00:00
}
2022-05-11 20:59:58 +00:00
$message-padding-vertical: 8px;
$message-padding-horizontal: 12px;
.module-message__container {
$collapsed-border-radius: 4px;
position: relative;
display: inline-block;
border-radius: 18px;
2023-03-21 21:00:03 +00:00
outline: none;
margin-bottom: 6px;
margin-top: 6px;
min-width: 0px;
overflow: hidden;
2023-04-20 17:03:43 +00:00
padding-inline: $message-padding-horizontal;
padding-top: $message-padding-vertical;
padding-bottom: $message-padding-vertical;
.module-message--collapsed-above & {
margin-top: 1px;
}
.module-message--collapsed-below & {
margin-bottom: 1px;
}
.module-message--incoming.module-message--collapsed-above & {
2023-04-20 17:03:43 +00:00
border-start-start-radius: $collapsed-border-radius;
}
.module-message--incoming.module-message--collapsed-below & {
2023-04-20 17:03:43 +00:00
border-end-start-radius: $collapsed-border-radius;
}
.module-message--outgoing.module-message--collapsed-above & {
2023-04-20 17:03:43 +00:00
border-start-end-radius: $collapsed-border-radius;
}
.module-message--outgoing.module-message--collapsed-below & {
2023-04-20 17:03:43 +00:00
border-end-end-radius: $collapsed-border-radius;
}
2019-11-07 21:36:16 +00:00
}
2023-03-20 22:23:53 +00:00
.module-message__container--targeted {
@include mouse-mode {
animation: module-message__highlight 1.2s cubic-bezier(0.17, 0.17, 0, 1);
}
}
2023-03-20 22:23:53 +00:00
.module-message__container--targeted-lighter {
@include mouse-mode {
animation: module-message__highlight-lighter 1.2s
cubic-bezier(0.17, 0.17, 0, 1);
}
2019-11-07 21:36:16 +00:00
}
2023-03-20 22:23:53 +00:00
.module-message__wrapper {
position: relative;
transition: background 0.1s ease-out;
}
.module-message__wrapper--select-mode {
.module-message--incoming {
2023-04-20 17:03:43 +00:00
&:dir(ltr) {
/* stylelint-disable-next-line declaration-property-value-disallowed-list */
translate: calc(16px + 22px) 0;
}
&:dir(rtl) {
/* stylelint-disable-next-line declaration-property-value-disallowed-list */
translate: calc(-16px - 22px) 0;
}
2023-03-20 22:23:53 +00:00
}
}
.module-message__alt-accessibility-tree {
@include sr-only;
}
.module-message__wrapper--selected {
background: rgba($color-ultramarine, 8%);
}
.module-message__select-checkbox {
position: absolute;
top: 50%;
2023-04-20 17:03:43 +00:00
inset-inline-start: 16px;
transform: translateY(-50%);
2023-05-04 18:04:22 +00:00
width: 20px;
height: 20px;
2023-03-20 22:23:53 +00:00
border-radius: 9999px;
background: transparent;
border: 1px solid $color-gray-20;
animation: module-message__select-checkbox--fadeIn 0.2s ease-out;
transition: background 0.1s ease-out, border-color 0.1s ease-out;
&::before {
content: '';
display: block;
2023-05-04 18:04:22 +00:00
width: 14px;
height: 14px;
margin: 2px;
@include color-svg(
'../images/icons/v3/check/check-compact-bold.svg',
$color-white
);
2023-03-20 22:23:53 +00:00
opacity: 0;
transition: opacity 0.1s ease-out;
}
.module-message__wrapper--selected & {
background: $color-ultramarine;
border-color: $color-ultramarine;
&::before {
opacity: 1;
}
}
}
@keyframes module-message__select-checkbox--fadeIn {
from {
opacity: 0;
}
}
.module-message:focus-within {
@include keyboard-mode {
background: $color-selected-message-background-light;
}
@include dark-keyboard-mode {
background: $color-selected-message-background-dark;
}
}
2021-10-06 17:37:53 +00:00
.module-message__container--emoji {
padding-top: 4px;
2021-10-07 22:27:08 +00:00
.module-message__text--outgoing {
2023-04-20 17:03:43 +00:00
text-align: end;
2021-10-07 22:27:08 +00:00
}
2021-10-06 17:37:53 +00:00
}
.module-message__container--outgoing {
2019-10-04 18:06:17 +00:00
@include light-theme {
2021-05-28 16:15:17 +00:00
background-color: $color-ultramarine;
2019-10-04 18:06:17 +00:00
color: $color-white;
}
2021-05-28 16:15:17 +00:00
@include dark-theme {
background-color: $color-ultramarine;
2019-10-04 18:06:17 +00:00
color: $color-gray-05;
}
}
// In case the color gets messed up
.module-message__container--incoming {
2021-05-28 16:15:17 +00:00
background-color: $color-gray-05;
color: $color-gray-90;
2021-05-28 16:15:17 +00:00
@include dark-theme {
2019-10-04 18:06:17 +00:00
background-color: $color-gray-75;
color: $color-gray-05;
}
}
2019-10-04 18:06:17 +00:00
@each $color, $value in $conversation-colors {
2021-05-28 16:15:17 +00:00
.module-message__container--outgoing-#{$color} {
2019-10-04 18:06:17 +00:00
background-color: $value;
2021-05-28 16:15:17 +00:00
@include dark-theme {
background-color: $value;
}
2019-10-04 18:06:17 +00:00
}
}
2021-05-28 16:15:17 +00:00
.module-message__container--outgoing-custom {
background-attachment: fixed;
2019-06-26 19:33:13 +00:00
}
2021-05-28 16:15:17 +00:00
@each $color, $value in $conversation-colors-gradient {
.module-message__container--outgoing-#{$color} {
background-attachment: fixed;
background-image: linear-gradient(
map-get($value, 'deg'),
map-get($value, 'start'),
map-get($value, 'end')
);
2019-10-04 18:06:17 +00:00
}
}
2021-05-28 16:15:17 +00:00
.module-message__container--with-tap-to-view {
min-width: 148px;
cursor: pointer;
2021-07-12 19:58:45 +00:00
user-select: none;
2019-06-26 19:33:13 +00:00
}
2019-10-04 18:06:17 +00:00
2021-05-28 16:15:17 +00:00
.module-message__container--with-tap-to-view-pending {
background-color: $color-gray-15;
2019-06-26 19:33:13 +00:00
}
.module-message__container--with-tap-to-view-pending {
cursor: default;
}
.module-message__container--with-tap-to-view-expired {
2019-10-04 18:06:17 +00:00
@include light-theme {
border: 1px solid $color-gray-15;
background-color: $color-white;
}
@include dark-theme {
border: 1px solid $color-gray-60;
background-color: $color-gray-95;
2019-10-04 18:06:17 +00:00
}
2019-06-26 19:33:13 +00:00
}
.module-message__container--with-tap-to-view-error {
width: auto;
cursor: default;
2019-10-04 18:06:17 +00:00
@include light-theme {
background-color: $color-white;
border: 1px solid $color-deep-red;
}
2021-05-28 16:15:17 +00:00
@include dark-theme {
2019-10-04 18:06:17 +00:00
background-color: $color-black;
border: 1px solid $color-deep-red;
}
2019-06-26 19:33:13 +00:00
}
.module-message__container--deleted-for-everyone {
@include light-theme {
color: $color-gray-90;
border: 1px solid $color-gray-25;
2022-11-04 13:22:07 +00:00
background-color: transparent;
background-image: none;
}
@include dark-theme {
color: $color-gray-05;
border: 1px solid $color-gray-75;
2022-11-04 13:22:07 +00:00
background-color: transparent;
background-image: none;
}
}
2019-06-26 19:33:13 +00:00
.module-message__tap-to-view {
margin-top: 2px;
display: flex;
flex-direction: row;
align-items: center;
}
.module-message__tap-to-view--with-content-above {
margin-top: 8px;
}
.module-message__tap-to-view--with-content-below {
margin-bottom: 8px;
}
.module-message__tap-to-view__spinner-container {
2023-04-20 17:03:43 +00:00
margin-inline-end: 6px;
2019-06-26 19:33:13 +00:00
flex-grow: 0;
flex-shrink: 0;
width: 20px;
height: 20px;
}
.module-message__tap-to-view__icon {
2023-04-20 17:03:43 +00:00
margin-inline-end: 6px;
2019-06-26 19:33:13 +00:00
flex-grow: 0;
flex-shrink: 0;
width: 20px;
height: 20px;
2019-10-04 18:06:17 +00:00
@include light-theme {
2023-05-04 18:04:22 +00:00
@include color-svg(
'../images/icons/v3/view_once/view_once.svg',
$color-gray-90
);
2019-10-04 18:06:17 +00:00
}
2021-05-28 16:15:17 +00:00
@include dark-theme {
2023-05-04 18:04:22 +00:00
@include color-svg(
'../images/icons/v3/view_once/view_once.svg',
$color-gray-05
);
2019-10-04 18:06:17 +00:00
}
2019-06-26 19:33:13 +00:00
}
.module-message__tap-to-view__icon--expired {
2019-10-04 18:06:17 +00:00
@include light-theme {
2023-05-04 18:04:22 +00:00
@include color-svg(
'../images/icons/v3/view_once/view_once-dash.svg',
$color-gray-75
);
2019-10-04 18:06:17 +00:00
}
@include dark-theme {
2023-05-04 18:04:22 +00:00
@include color-svg(
'../images/icons/v3/view_once/view_once-dash.svg',
$color-gray-05
);
2019-10-04 18:06:17 +00:00
}
2019-06-26 19:33:13 +00:00
}
2021-06-02 19:52:25 +00:00
.module-message__tap-to-view__icon--outgoing {
background-color: $color-gray-05;
}
2019-06-26 19:33:13 +00:00
.module-message__tap-to-view__text {
2019-10-04 18:06:17 +00:00
@include font-body-1-bold;
2019-06-26 19:33:13 +00:00
2021-06-02 19:52:25 +00:00
color: $color-gray-05;
2019-06-26 19:33:13 +00:00
}
.module-message__tap-to-view__text--incoming {
2019-10-04 18:06:17 +00:00
@include light-theme {
color: $color-gray-90;
}
2021-05-28 16:15:17 +00:00
@include dark-theme {
2019-10-04 18:06:17 +00:00
color: $color-gray-05;
}
2019-06-26 19:33:13 +00:00
}
.module-message__tap-to-view__text--incoming-expired {
2019-10-04 18:06:17 +00:00
@include light-theme {
color: $color-gray-90;
}
@include dark-theme {
color: $color-gray-05;
}
2019-06-26 19:33:13 +00:00
}
.module-message__tap-to-view__text--incoming-error {
2019-10-04 18:06:17 +00:00
@include light-theme {
color: $color-gray-60;
}
@include dark-theme {
color: $color-gray-25;
}
}
.module-message__tap-to-view__text--outgoing {
2021-05-28 16:15:17 +00:00
color: $color-white;
2019-10-04 18:06:17 +00:00
}
.module-message__tap-to-view__text--outgoing-expired {
2021-06-02 19:52:25 +00:00
color: $color-gray-05;
2019-06-26 19:33:13 +00:00
}
.module-message__attachment-container {
// To ensure that images are centered if they aren't full width of bubble
text-align: center;
position: relative;
2023-04-20 17:03:43 +00:00
margin-inline: -$message-padding-horizontal;
margin-top: -$message-padding-vertical;
margin-bottom: -$message-padding-vertical;
2020-08-12 22:47:20 +00:00
line-height: 0;
overflow: hidden;
2019-10-04 18:06:17 +00:00
@include light-theme {
background-color: $color-white;
}
@include dark-theme {
background-color: $color-gray-95;
}
&--with-content-below {
margin-bottom: 7px;
}
&--with-content-above {
margin-top: 4px;
2021-04-27 22:11:59 +00:00
}
}
.module-message__sticker-container {
// To ensure that images are centered if they aren't full width of bubble
text-align: center;
2023-04-20 17:03:43 +00:00
margin-inline: -$message-padding-horizontal;
margin-top: -$message-padding-vertical - 1px;
margin-bottom: -$message-padding-vertical + 3px;
&--with-content-below {
margin-bottom: 5px;
}
&--with-content-above {
margin-top: 4px;
}
}
.module-message__img-attachment {
margin-bottom: -3px;
// redundant with attachment-container, but we get cursor flashing on move otherwise
cursor: pointer;
}
.module-message__generic-attachment {
2019-11-07 21:36:16 +00:00
@include button-reset;
width: 100%;
display: flex;
flex-direction: row;
align-items: center;
2019-11-07 21:36:16 +00:00
@include keyboard-mode {
&:focus {
2021-05-28 16:15:17 +00:00
box-shadow: 0px 0px 0px 2px $color-ultramarine;
}
2019-11-07 21:36:16 +00:00
}
}
.module-message__generic-attachment--with-content-below {
padding-bottom: 6px;
}
.module-message__generic-attachment--with-content-above {
padding-top: 4px;
}
2020-05-27 21:37:06 +00:00
.module-message__generic-attachment--not-active {
cursor: default;
pointer-events: none;
}
2018-10-04 01:12:42 +00:00
.module-message__generic-attachment__icon-container {
position: relative;
2021-07-12 19:58:45 +00:00
user-select: none;
2018-10-04 01:12:42 +00:00
}
.module-message__generic-attachment__spinner-container {
2023-04-20 17:03:43 +00:00
padding-inline: 4px;
}
2018-10-04 01:12:42 +00:00
.module-message__generic-attachment__icon {
background: url('../images/file-gradient.svg') no-repeat center;
height: 44px;
width: 56px;
2023-04-20 17:03:43 +00:00
margin-inline: -13px -14px;
margin-bottom: -4px;
// So we can center the extension text inside this icon
display: flex;
flex-direction: row;
align-items: center;
}
2018-10-04 01:12:42 +00:00
.module-message__generic-attachment__icon-dangerous-container {
position: absolute;
top: -1px;
2023-04-20 17:03:43 +00:00
inset-inline-end: -4px;
2018-10-04 01:12:42 +00:00
height: 16px;
width: 16px;
border-radius: 50%;
background-color: $color-white;
}
.module-message__generic-attachment__icon-dangerous {
height: 16px;
width: 16px;
2019-10-04 18:06:17 +00:00
@include color-svg(
'../images/icons/v2/error-solid-24.svg',
$color-accent-red
);
2018-10-04 01:12:42 +00:00
}
.module-message__generic-attachment__icon__extension {
font-size: 10px;
line-height: 13px;
letter-spacing: 0.1px;
text-transform: uppercase;
// Along with flow layout in parent item, centers text
text-align: center;
width: 25px;
2023-04-20 17:03:43 +00:00
margin-inline: auto;
// We don't have much room for text here, cut it off without ellipse
overflow-x: hidden;
white-space: nowrap;
text-overflow: clip;
color: $color-gray-90;
}
.module-message__generic-attachment__text {
flex-grow: 1;
2023-04-20 17:03:43 +00:00
margin-inline-start: 8px;
// The width of the icon plus our 8px margin plus 1px leeway
max-width: calc(100% - 36px);
}
.module-message__generic-attachment__file-name {
2019-10-04 18:06:17 +00:00
@include font-body-2-bold;
margin-top: 2px;
2021-07-12 19:58:45 +00:00
user-select: none;
// Handling really long filenames - cut them off
overflow-x: hidden;
white-space: nowrap;
text-overflow: ellipsis;
2019-10-04 18:06:17 +00:00
@include light-theme {
2021-05-28 16:15:17 +00:00
color: $color-white;
2019-10-04 18:06:17 +00:00
}
@include dark-theme {
color: $color-gray-02;
}
}
.module-message__generic-attachment__file-name--incoming {
color: $color-white;
2019-10-04 18:06:17 +00:00
2021-05-28 16:15:17 +00:00
@include light-theme {
2019-10-04 18:06:17 +00:00
color: $color-gray-90;
}
2021-05-28 16:15:17 +00:00
@include dark-theme {
2019-10-04 18:06:17 +00:00
color: $color-gray-25;
}
}
.module-message__generic-attachment__file-size {
2019-10-04 18:06:17 +00:00
@include font-body-2;
margin-top: 3px;
2021-07-12 19:58:45 +00:00
user-select: none;
2019-10-04 18:06:17 +00:00
@include light-theme {
2021-05-28 16:15:17 +00:00
color: $color-white;
2019-10-04 18:06:17 +00:00
}
@include dark-theme {
color: $color-gray-02;
}
}
2019-01-16 03:03:56 +00:00
.module-message__generic-attachment__file-size--incoming {
color: $color-white;
2019-10-04 18:06:17 +00:00
2021-05-28 16:15:17 +00:00
@include light-theme {
2019-10-04 18:06:17 +00:00
color: $color-gray-90;
}
2021-05-28 16:15:17 +00:00
@include dark-theme {
2019-10-04 18:06:17 +00:00
color: $color-gray-25;
}
2019-01-16 03:03:56 +00:00
}
.module-message__link-preview {
cursor: pointer;
&--nonclickable {
cursor: inherit;
.module-image__image,
.module-image__border-overlay--with-click-handler {
cursor: inherit;
}
}
2019-11-19 23:03:00 +00:00
display: block;
2019-11-07 21:36:16 +00:00
2023-04-20 17:03:43 +00:00
margin-inline: -$message-padding-horizontal;
2019-11-19 23:03:00 +00:00
width: calc(100% + 24px);
2021-04-15 18:31:31 +00:00
outline: none;
2019-11-19 23:03:00 +00:00
2022-05-11 20:59:58 +00:00
margin-top: -$message-padding-vertical;
2019-01-16 03:03:56 +00:00
margin-bottom: 5px;
overflow: hidden;
2019-11-07 21:36:16 +00:00
@include keyboard-mode {
&:focus {
2021-05-28 16:15:17 +00:00
box-shadow: 0px 0px 0px 2px $color-ultramarine;
}
2019-11-07 21:36:16 +00:00
}
2019-01-16 03:03:56 +00:00
}
.module-message__link-preview--with-content-above {
margin-top: 4px;
}
.module-message__link-preview__content {
2023-04-20 17:03:43 +00:00
padding-block: $message-padding-vertical;
padding-inline: $message-padding-horizontal;
2019-01-16 03:03:56 +00:00
display: flex;
flex-direction: row;
align-items: flex-start;
2019-10-04 18:06:17 +00:00
@include light-theme {
background-color: $color-gray-02;
2019-10-04 18:06:17 +00:00
}
@include dark-theme {
background-color: $color-gray-80;
2019-10-04 18:06:17 +00:00
}
2019-01-16 03:03:56 +00:00
}
.module-message__link-preview__icon_container {
margin: -2px;
2023-04-20 17:03:43 +00:00
margin-inline-end: 8px;
2019-01-16 03:03:56 +00:00
display: inline-block;
}
.module-message__link-preview__text--with-icon {
margin-top: 5px;
}
.module-message__link-preview__title {
2019-10-04 18:06:17 +00:00
@include font-body-1-bold;
2019-01-16 03:03:56 +00:00
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
2019-10-04 18:06:17 +00:00
@include light-theme {
color: $color-gray-90;
}
@include dark-theme {
color: $color-gray-05;
}
2019-01-16 03:03:56 +00:00
}
.module-message__link-preview__description {
@include font-body-2;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 5;
-webkit-box-orient: vertical;
@include light-theme {
color: $color-gray-90;
}
@include dark-theme {
color: $color-gray-05;
}
}
.module-message__link-preview__footer {
2019-10-04 18:06:17 +00:00
@include font-body-2;
display: flex;
flex-flow: row wrap;
align-items: center;
margin-top: 2px;
2019-10-04 18:06:17 +00:00
@include light-theme {
color: $color-gray-60;
}
@include dark-theme {
color: $color-gray-25;
}
> *:not(:first-child) {
display: flex;
flex-grow: 1;
&:before {
content: '';
font-size: 50%;
2023-04-20 17:03:43 +00:00
margin-inline: 0.2rem;
}
}
}
.module-message__link-preview__location {
text-transform: lowercase;
2019-01-16 03:03:56 +00:00
}
.module-message__author {
@include font-body-2-bold;
2019-10-04 18:06:17 +00:00
height: 18px;
overflow-x: hidden;
overflow-y: hidden;
white-space: nowrap;
text-overflow: ellipsis;
2021-07-12 19:58:45 +00:00
user-select: none;
}
2019-06-26 19:33:13 +00:00
.module-message__author--with-tap-to-view-expired {
@include font-body-2-bold;
2019-10-04 18:06:17 +00:00
2019-06-26 19:33:13 +00:00
height: 18px;
overflow-x: hidden;
overflow-y: hidden;
white-space: nowrap;
text-overflow: ellipsis;
2019-10-04 18:06:17 +00:00
@include light-theme {
color: $color-gray-75;
}
@include dark-theme {
color: $color-white;
}
2019-06-26 19:33:13 +00:00
}
.module-message__author_with_sticker {
@include font-body-2-bold;
2019-10-04 18:06:17 +00:00
height: 18px;
overflow-x: hidden;
overflow-y: hidden;
white-space: nowrap;
text-overflow: ellipsis;
// Stickers are pretty narrow, so we allow this one element of a sticker
// message to go wider than normal.
// There's a tension here, since this is width and not max-width; things will
// look bad for RTL users if we make it too wide.
width: 300px;
2019-10-04 18:06:17 +00:00
@include light-theme {
color: $color-gray-90;
}
@include dark-theme {
color: $color-gray-05;
}
}
.module-message__text {
2019-10-04 18:06:17 +00:00
@include font-body-1;
text-align: start;
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-word;
white-space: pre-wrap;
2018-08-07 01:22:30 +00:00
2019-10-04 18:06:17 +00:00
@include light-theme {
color: $color-white-alpha-90;
}
2021-05-28 16:15:17 +00:00
@include dark-theme {
2019-10-04 18:06:17 +00:00
color: $color-white-alpha-90;
}
a {
text-decoration: underline;
outline: none;
2019-10-04 18:06:17 +00:00
@include light-theme {
2021-05-28 16:15:17 +00:00
color: $color-white-alpha-90;
}
@include keyboard-mode {
&:focus {
outline: 1px solid $color-gray-90;
2019-11-07 21:36:16 +00:00
}
2019-10-04 18:06:17 +00:00
}
2019-10-04 18:06:17 +00:00
@include dark-theme {
color: $color-white-alpha-90;
}
2021-05-28 16:15:17 +00:00
@include dark-keyboard-mode {
&:focus {
outline: 1px solid $color-white-alpha-90;
2019-11-07 21:36:16 +00:00
}
2019-10-04 18:06:17 +00:00
}
}
}
.module-message__text--incoming {
@include light-theme {
color: $color-gray-90;
}
@include dark-theme {
color: $color-gray-05;
}
a {
text-decoration: underline;
outline: none;
2019-10-04 18:06:17 +00:00
@include light-theme {
color: $color-gray-90;
}
2021-05-28 16:15:17 +00:00
@include keyboard-mode {
&:focus {
outline: 1px solid $color-gray-90;
}
}
2021-05-28 16:15:17 +00:00
@include dark-theme {
2019-10-04 18:06:17 +00:00
color: $color-gray-05;
}
2021-05-28 16:15:17 +00:00
@include dark-keyboard-mode {
&:focus {
outline: 1px solid $color-gray-05;
2019-11-07 21:36:16 +00:00
}
2019-10-04 18:06:17 +00:00
}
}
}
.module-message__text--error {
2019-10-04 18:06:17 +00:00
@include font-body-1-italic;
}
.module-message__text--delete-for-everyone {
user-select: none;
@include light-theme {
color: $color-gray-90;
}
@include dark-theme {
color: $color-gray-05;
}
}
.module-message__metadata {
align-items: center;
display: flex;
flex-direction: row;
justify-content: flex-end;
margin-top: 3px;
font-style: normal;
&--inline {
2023-04-20 17:03:43 +00:00
float: inline-end;
margin-top: -14px;
}
}
2023-03-27 23:48:57 +00:00
.module-message__metadata__edited {
@include button-reset;
@include font-caption;
color: $color-gray-60;
cursor: pointer;
2023-04-20 17:03:43 +00:00
margin-inline-end: 6px;
2023-03-27 23:48:57 +00:00
z-index: $z-index-base;
@include dark-theme {
color: $color-gray-25;
}
}
.module-message__container--outgoing .module-message__metadata__edited {
color: $color-white-alpha-80;
}
// With an image and no caption, this section needs to be on top of the image overlay
.module-message__metadata--with-image-no-caption {
position: absolute;
bottom: 9px;
2021-12-01 23:13:09 +00:00
z-index: $z-index-above-base;
width: 100%;
// Because this is absolutely positioned, we 100% is too big, take it down by parent
// padding sizes.
2023-04-20 17:03:43 +00:00
padding-inline-end: 24px;
2019-11-19 23:03:00 +00:00
// This is so all clicks go right through to the underlying image.
pointer-events: none;
}
.module-message__metadata--deleted-for-everyone {
@include light-theme {
color: $color-gray-60;
}
@include dark-theme {
color: $color-gray-25;
}
}
.module-message__metadata__date {
2019-10-04 18:06:17 +00:00
@include font-caption;
2021-07-12 19:58:45 +00:00
user-select: none;
2021-10-14 16:54:20 +00:00
white-space: nowrap;
2019-10-04 18:06:17 +00:00
@include light-theme {
color: $color-white-alpha-80;
}
2021-05-28 16:15:17 +00:00
@include dark-theme {
2019-10-04 18:06:17 +00:00
color: $color-white-alpha-80;
}
}
2020-08-07 01:22:52 +00:00
.module-message__metadata__tapable {
@include button-reset;
}
.module-message__metadata__date--incoming {
2019-10-04 18:06:17 +00:00
color: $color-white-alpha-80;
2021-05-28 16:15:17 +00:00
@include light-theme {
2019-10-04 18:06:17 +00:00
color: $color-gray-60;
}
2021-05-28 16:15:17 +00:00
@include dark-theme {
2019-10-04 18:06:17 +00:00
color: $color-gray-25;
}
}
.module-message__metadata__date--with-image-no-caption {
2019-10-04 18:06:17 +00:00
@include light-theme {
color: $color-white;
}
@include dark-theme {
color: $color-white-alpha-80;
}
}
.module-message__metadata__date--deleted-for-everyone {
@include light-theme {
color: $color-gray-60;
}
@include dark-theme {
color: $color-gray-25;
}
}
.module-message__metadata__date.module-message__metadata__date--incoming-with-tap-to-view-expired {
2019-06-26 19:33:13 +00:00
color: $color-gray-75;
@include dark-theme {
color: $color-white-alpha-80;
}
}
.module-message__metadata__date.module-message__metadata__date--outgoing-with-tap-to-view-expired {
2021-06-02 19:52:25 +00:00
color: $color-white-alpha-80;
2019-06-26 19:33:13 +00:00
}
2019-10-04 18:06:17 +00:00
.module-message__metadata__date--with-sticker {
2021-05-28 16:15:17 +00:00
@include light-theme {
2019-10-04 18:06:17 +00:00
color: $color-gray-60;
}
}
.module-message__metadata__status-icon {
width: 12px;
height: 12px;
display: inline-block;
2023-04-20 17:03:43 +00:00
margin-inline: 6px;
// High margin to leave space for the increase when we go to two checks
margin-bottom: 2px;
}
.module-message__metadata__status-icon--paused,
.module-message__metadata__status-icon--sending {
@include only-when-page-is-visible {
animation: rotate 4s linear infinite;
}
2023-05-04 21:39:13 +00:00
@include color-svg(
'../images/icons/v3/message_status/messagestatus-sending.svg',
$color-white
);
}
.module-message__metadata__status-icon--sent {
2019-10-04 18:06:17 +00:00
@include light-theme {
@include color-svg(
2023-05-04 21:39:13 +00:00
'../images/icons/v3/message_status/messagestatus-sent.svg',
2019-10-04 18:06:17 +00:00
$color-white-alpha-80
);
}
2021-05-28 16:15:17 +00:00
@include dark-theme {
2019-10-04 18:06:17 +00:00
@include color-svg(
2023-05-04 21:39:13 +00:00
'../images/icons/v3/message_status/messagestatus-sent.svg',
2019-10-04 18:06:17 +00:00
$color-white-alpha-80
);
}
}
.module-message__metadata__status-icon--delivered {
// We reduce the margin size to keep the overall width the same
2023-04-20 17:03:43 +00:00
margin-inline-end: 0px;
width: 18px;
2019-10-04 18:06:17 +00:00
@include light-theme {
2023-05-04 21:39:13 +00:00
@include color-svg(
'../images/icons/v3/message_status/messagestatus-delivered.svg',
$color-white-alpha-80
);
2019-10-04 18:06:17 +00:00
}
2021-05-28 16:15:17 +00:00
@include dark-theme {
2023-05-04 21:39:13 +00:00
@include color-svg(
'../images/icons/v3/message_status/messagestatus-delivered.svg',
$color-white-alpha-80
);
2019-10-04 18:06:17 +00:00
}
}
.module-message__metadata__status-icon--read,
.module-message__metadata__status-icon--viewed {
// We reduce the margin size to keep the overall width the same
2023-04-20 17:03:43 +00:00
margin-inline-end: 0px;
width: 18px;
2019-10-04 18:06:17 +00:00
@include light-theme {
2023-05-04 21:39:13 +00:00
@include color-svg(
'../images/icons/v3/message_status/messagestatus-read.svg',
$color-white-alpha-80
);
2019-10-04 18:06:17 +00:00
}
2021-05-28 16:15:17 +00:00
@include dark-theme {
2023-05-04 21:39:13 +00:00
@include color-svg(
'../images/icons/v3/message_status/messagestatus-read.svg',
$color-white-alpha-80
);
2019-10-04 18:06:17 +00:00
}
}
// When status indicators are overlaid on top of an image, they use different colors
.module-message__metadata__status-icon--with-image-no-caption {
2019-10-04 18:06:17 +00:00
@include dark-theme {
background-color: $color-gray-02;
}
2021-05-28 16:15:17 +00:00
@include light-theme {
2019-10-04 18:06:17 +00:00
background-color: $color-white;
}
}
.module-message__metadata__status-icon--with-sticker {
2021-05-28 16:15:17 +00:00
@include light-theme {
2019-10-04 18:06:17 +00:00
background-color: $color-gray-60;
}
}
.module-message__metadata__status-icon--deleted-for-everyone {
@include light-theme {
background-color: $color-gray-60;
}
@include dark-theme {
background-color: $color-gray-25;
}
}
2019-10-04 18:06:17 +00:00
.module-message__metadata__spinner-container {
2023-04-20 17:03:43 +00:00
margin-inline-start: 6px;
}
.module-message__send-message-button {
2019-11-07 21:36:16 +00:00
@include button-reset;
width: calc(100% + 24px);
2019-10-04 18:06:17 +00:00
@include font-body-2-bold;
2022-05-11 20:59:58 +00:00
margin-top: $message-padding-vertical;
margin-bottom: -$message-padding-vertical;
2023-04-20 17:03:43 +00:00
margin-inline: -$message-padding-horizontal;
text-align: center;
padding: 10px;
border-bottom-left-radius: 18px;
border-bottom-right-radius: 18px;
2019-10-04 18:06:17 +00:00
@include light-theme {
2021-05-28 16:15:17 +00:00
color: $color-ultramarine;
2019-10-04 18:06:17 +00:00
background-color: $color-gray-02;
border: 1px solid $color-black-alpha-20;
}
@include dark-theme {
2021-05-28 16:15:17 +00:00
color: $color-ultramarine-light;
2019-10-04 18:06:17 +00:00
background-color: $color-gray-75;
border: 1px solid $color-gray-45;
}
@include keyboard-mode {
&:focus {
2021-05-28 16:15:17 +00:00
box-shadow: 0px 0px 0px 2px $color-ultramarine;
}
}
}
.module-message__send-message-button--no-bottom-left-curve {
border-bottom-left-radius: 4px;
}
.module-message__send-message-button--no-bottom-right-curve {
border-bottom-right-radius: 4px;
}
2021-01-27 21:15:43 +00:00
.module-message__author-avatar-container {
align-items: flex-end;
display: flex;
justify-content: center;
2023-04-20 17:03:43 +00:00
margin-inline-end: 8px;
padding-bottom: 6px;
2021-01-27 21:15:43 +00:00
&--with-reactions {
padding-bottom: 15px;
2021-01-27 21:15:43 +00:00
}
&--typing {
flex-direction: row-reverse;
overflow-y: clip;
}
2021-01-27 21:15:43 +00:00
}
.module-message__container-outer--typing-bubble {
overflow-y: clip;
2023-09-27 21:23:52 +00:00
}
.module-message__typing-avatar-container {
flex-direction: row-reverse;
overflow-y: clip;
}
.module-message__typing-avatar {
display: flex;
justify-content: center;
position: relative;
z-index: $z-index-base;
&:not(:last-child) {
margin-inline-start: -4px;
}
&--overflow-count {
.module-Avatar__contents {
@include light-theme() {
background: $color-gray-05;
color: $color-gray-60;
}
@include dark-theme() {
background: $color-gray-75;
color: $color-gray-25;
}
}
.module-Avatar__label {
@include font-caption-bold;
}
}
.module-Avatar {
min-width: 28px;
width: 28px;
height: 28px;
}
.module-Avatar__contents {
outline: 3px solid;
@include light-theme() {
outline-color: $color-white;
}
@include dark-theme() {
outline-color: $color-gray-95;
}
}
}
2022-05-11 20:59:58 +00:00
.module-message__unopened-gift-badge {
width: 240px;
height: 132px;
background-color: $color-ultramarine;
position: relative;
2023-04-20 17:03:43 +00:00
margin-inline: -$message-padding-horizontal;
margin-top: -$message-padding-vertical;
margin-bottom: $message-padding-vertical;
2022-05-11 20:59:58 +00:00
2022-05-16 19:54:38 +00:00
&--outgoing {
@include light-theme {
border-bottom: 1px solid $color-white-alpha-80;
}
@include dark-theme {
border-bottom: 1px solid $color-gray-95;
}
2022-05-11 20:59:58 +00:00
}
2022-05-16 19:54:38 +00:00
&__container {
cursor: default;
user-select: none;
2022-05-11 20:59:58 +00:00
}
2022-05-16 19:54:38 +00:00
&__ribbon-horizontal {
position: absolute;
2023-04-20 17:03:43 +00:00
inset-inline: 0;
2022-05-16 19:54:38 +00:00
height: 16px;
top: 50%;
transform: translateY(-50%);
background-color: $color-white;
}
2022-05-11 20:59:58 +00:00
2022-05-16 19:54:38 +00:00
&__ribbon-vertical {
2023-04-20 17:03:43 +00:00
@include position-absolute-center-x;
2022-05-16 19:54:38 +00:00
top: 0;
bottom: 0;
width: 16px;
background-color: $color-white;
}
2022-05-11 20:59:58 +00:00
2022-05-16 19:54:38 +00:00
&__bow {
// Centered
2023-04-20 17:03:43 +00:00
@include position-absolute-center;
2022-05-11 20:59:58 +00:00
2022-05-16 19:54:38 +00:00
// For proper alignment with the ribbons
margin-top: 3px;
2022-05-11 20:59:58 +00:00
2022-05-16 19:54:38 +00:00
// 75.26px by 51.93px in Figma, but there's a buffer in the SVG file
width: 81px;
height: 60px;
2022-05-11 20:59:58 +00:00
}
2022-05-16 19:54:38 +00:00
&__text {
@include font-body-2-italic;
&--incoming {
@include light-theme {
color: $color-gray-60;
}
@include dark-theme {
color: $color-gray-25;
}
}
2022-05-11 20:59:58 +00:00
}
2022-05-16 19:54:38 +00:00
&__container .module-message__text--incoming {
@include font-body-2-italic;
@include light-theme {
color: $color-gray-60;
}
@include dark-theme {
color: $color-gray-25;
}
2022-05-11 20:59:58 +00:00
}
2022-05-16 19:54:38 +00:00
&__container .module-message__text--outgoing {
@include font-body-2-italic;
@include light-theme {
color: $color-white-alpha-80;
}
@include dark-theme {
color: $color-white-alpha-80;
}
2022-05-11 20:59:58 +00:00
}
}
.module-message__redeemed-gift-badge {
display: flex;
flex-direction: row;
&__container {
user-select: none;
}
&__badge {
height: 64px;
width: 64px;
2023-04-20 17:03:43 +00:00
margin-inline: 4px 12px;
2022-05-11 20:59:58 +00:00
margin-top: 8px;
margin-bottom: 16px;
flex-grow: 0;
flex-shrink: 0;
&--missing-incoming {
border-radius: 50%;
@include light-theme {
background-color: $color-gray-15;
}
@include dark-theme {
background-color: $color-gray-60;
}
}
&--missing-outgoing {
border-radius: 50%;
@include light-theme {
background-color: $color-white-alpha-20;
}
@include dark-theme {
background-color: $color-white-alpha-20;
}
}
}
&__text {
flex-grow: 1;
margin-top: 19px;
}
&__title {
margin-bottom: 6px;
@include font-body-1;
}
&__remaining {
@include font-subtitle;
&--incoming {
@include light-theme {
color: $color-gray-75;
}
@include dark-theme {
color: $color-gray-25;
}
}
&--outgoing {
@include light-theme {
color: $color-white-alpha-80;
}
@include dark-theme {
color: $color-white-alpha-80;
}
}
}
&__button {
@include button-reset;
@include button-secondary;
2023-04-20 17:03:43 +00:00
margin-inline: auto;
2022-05-11 20:59:58 +00:00
width: 216px;
margin-bottom: 7px;
text-align: center;
border-radius: 4px;
@include font-body-1-bold;
display: flex;
flex-direction: column;
align-items: center;
cursor: pointer;
&--incoming {
@include light-theme {
color: $color-gray-90;
background-color: $color-white;
}
@include dark-theme {
color: $color-gray-05;
background-color: $color-gray-62;
}
// Disabling hover
&:hover {
@include mouse-mode {
background-color: $color-white;
}
@include dark-mouse-mode {
background-color: $color-gray-62;
}
}
}
&--outgoing {
@include light-theme {
color: $color-gray-90;
background-color: $color-white-alpha-80;
}
@include dark-theme {
color: $color-gray-90;
background-color: $color-white-alpha-80;
}
&:hover {
@include mouse-mode {
background-color: $color-white-alpha-90;
}
@include dark-mouse-mode {
background-color: $color-white-alpha-90;
}
}
&:focus {
@include keyboard-mode {
box-shadow: 0px 0px 0px 3px $color-ultramarine-light;
}
@include dark-keyboard-mode {
box-shadow: 0px 0px 0px 3px $color-ultramarine-light;
}
}
&:active {
// We need to include all four here for specificity precedence
@include mouse-mode {
background-color: $color-white;
}
@include dark-mouse-mode {
background-color: $color-white;
}
@include keyboard-mode {
background-color: $color-white;
}
@include dark-keyboard-mode {
background-color: $color-white;
}
}
}
&__text {
display: flex;
flex-direction: row;
align-items: center;
height: 36px;
}
}
&__icon-check {
height: 19px;
width: 19px;
2023-04-20 17:03:43 +00:00
margin-inline-end: 5px;
2022-05-11 20:59:58 +00:00
display: inline-block;
&--incoming {
@include light-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/check/check-circle.svg',
2022-05-11 20:59:58 +00:00
$color-gray-90
);
}
@include dark-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/check/check-circle.svg',
2022-05-11 20:59:58 +00:00
$color-gray-05
);
}
}
&--outgoing {
@include light-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/check/check-circle.svg',
2022-05-11 20:59:58 +00:00
$color-gray-90
);
}
@include dark-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/check/check-circle.svg',
2022-05-11 20:59:58 +00:00
$color-gray-90
);
}
}
}
}
2023-09-27 21:23:52 +00:00
.module-message__typing-animation-container {
2018-11-14 19:10:32 +00:00
height: 16px;
overflow-y: clip;
2018-11-14 19:10:32 +00:00
display: flex;
flex-direction: row;
align-items: center;
}
2020-01-17 22:23:19 +00:00
.module-message__reactions {
2021-01-27 21:15:43 +00:00
position: relative;
2021-12-01 23:13:09 +00:00
z-index: $z-index-above-base;
height: 22px;
display: flex;
2021-07-12 19:58:45 +00:00
user-select: none;
2021-01-27 21:15:43 +00:00
&--incoming {
align-self: flex-end;
2023-04-20 17:03:43 +00:00
padding-inline-end: 8px;
margin-inline-start: 8px;
2021-01-27 21:15:43 +00:00
}
&--outgoing {
align-self: flex-start;
2023-04-20 17:03:43 +00:00
padding-inline-start: 8px;
margin-inline-end: 8px;
2021-01-27 21:15:43 +00:00
}
2020-01-17 22:23:19 +00:00
}
.module-message__reactions__reaction {
@include button-reset;
min-width: 28px;
height: 22px;
2020-01-17 22:23:19 +00:00
border: 1px solid;
border-radius: 33px;
display: flex;
justify-content: center;
align-items: center;
&--with-count {
min-width: 40px;
2023-04-20 17:03:43 +00:00
padding-block: 0;
padding-inline: 6px;
2020-01-17 22:23:19 +00:00
}
&__count {
@include font-caption-bold;
2020-01-17 22:23:19 +00:00
2023-04-20 17:03:43 +00:00
margin-inline-start: 4px;
&--no-emoji {
2023-04-20 17:03:43 +00:00
margin-inline-start: 0px;
}
@include light-theme {
color: $color-gray-60;
}
@include dark-theme {
color: $color-gray-25;
}
&--is-me {
@include dark-theme {
color: $color-gray-15;
}
}
2020-01-17 22:23:19 +00:00
}
&:focus {
outline: none;
}
@include keyboard-mode {
&:focus {
2021-05-28 16:15:17 +00:00
box-shadow: 0px 0px 0px 2px $color-ultramarine;
2020-01-17 22:23:19 +00:00
}
}
@include light-theme() {
border-color: $color-white;
background: $color-gray-05;
}
@include dark-theme() {
border-color: $color-gray-95;
2021-06-01 23:37:12 +00:00
background: $color-gray-90;
2020-01-17 22:23:19 +00:00
}
&--is-me {
@include dark-theme() {
2021-06-01 23:37:12 +00:00
background: $color-gray-60;
2020-01-17 22:23:19 +00:00
}
2021-05-28 16:15:17 +00:00
@include light-theme() {
2021-06-01 23:37:12 +00:00
background: $color-gray-25;
2020-01-17 22:23:19 +00:00
}
}
}
// Module: Expire Timer
.module-expire-timer {
width: 12px;
height: 12px;
display: inline-block;
2023-04-20 17:03:43 +00:00
margin-inline-start: 6px;
margin-bottom: 2px;
2019-10-04 18:06:17 +00:00
@include dark-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/message_timer/messagetimer-60.svg',
2019-10-04 18:06:17 +00:00
$color-white-alpha-80
);
}
2021-05-28 16:15:17 +00:00
@include light-theme {
2019-10-04 18:06:17 +00:00
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/message_timer/messagetimer-60.svg',
2019-10-04 18:06:17 +00:00
$color-white-alpha-80
);
}
}
2019-10-04 18:06:17 +00:00
$timer-icons: '55', '50', '45', '40', '35', '30', '25', '20', '15', '10', '05',
'00';
2019-10-04 18:06:17 +00:00
@each $timer-icon in $timer-icons {
2019-10-04 18:06:17 +00:00
.module-expire-timer--#{$timer-icon} {
@include dark-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/message_timer/messagetimer-#{$timer-icon}.svg',
2019-10-04 18:06:17 +00:00
$color-white-alpha-80
);
}
2021-05-28 16:15:17 +00:00
@include light-theme {
2019-10-04 18:06:17 +00:00
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/message_timer/messagetimer-#{$timer-icon}.svg',
2019-10-04 18:06:17 +00:00
$color-white-alpha-80
);
}
}
}
.module-expire-timer--incoming {
2019-10-04 18:06:17 +00:00
background-color: $color-white-alpha-80;
2021-05-28 16:15:17 +00:00
@include light-theme {
2019-10-04 18:06:17 +00:00
background-color: $color-gray-60;
}
2021-05-28 16:15:17 +00:00
@include dark-theme {
2019-10-04 18:06:17 +00:00
background-color: $color-gray-25;
}
}
.module-expire-timer.module-expire-timer--incoming-with-tap-to-view-expired {
2019-06-26 19:33:13 +00:00
background-color: $color-gray-75;
@include dark-theme {
background-color: $color-white-alpha-80;
}
}
.module-expire-timer.module-expire-timer--outgoing-with-tap-to-view-expired {
2021-06-02 19:52:25 +00:00
background-color: $color-white-alpha-80;
2019-06-26 19:33:13 +00:00
}
2019-10-04 18:06:17 +00:00
.module-expire-timer--with-sticker {
2021-05-28 16:15:17 +00:00
@include light-theme {
2019-10-04 18:06:17 +00:00
background-color: $color-gray-60;
}
}
// When status indicators are overlaid on top of an image, they use different colors
.module-expire-timer--with-image-no-caption {
2019-10-04 18:06:17 +00:00
@include light-theme {
background-color: $color-white;
}
@include dark-theme {
background-color: $color-gray-02;
}
}
.module-expire-timer--deleted-for-everyone {
@include light-theme {
background-color: $color-gray-60;
}
@include dark-theme {
background-color: $color-gray-25;
}
}
2021-01-26 01:01:19 +00:00
.module-about {
&__container {
2023-04-20 17:03:43 +00:00
margin-inline: auto;
2021-01-26 01:01:19 +00:00
max-width: 248px;
2021-01-28 00:18:50 +00:00
text-align: center;
2021-01-26 01:01:19 +00:00
}
&__text {
@include font-body-1;
@include light-theme {
color: $color-gray-60;
}
@include dark-theme {
color: $color-gray-25;
}
max-width: 400px;
2021-01-28 00:18:50 +00:00
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
2021-01-26 01:01:19 +00:00
img.emoji {
height: 1em;
2023-04-20 17:03:43 +00:00
margin-inline-end: 3px;
2021-01-26 01:01:19 +00:00
margin-bottom: 3px;
vertical-align: middle;
width: 1em;
}
}
}
// Module: Embedded Contact
.module-embedded-contact {
2019-11-07 21:36:16 +00:00
@include button-reset;
width: 100%;
padding: 5px;
2019-11-07 21:36:16 +00:00
display: flex;
flex-direction: row;
align-items: center;
@include keyboard-mode {
&:focus {
2021-05-28 16:15:17 +00:00
box-shadow: 0px 0px 0px 2px $color-ultramarine;
}
}
}
.module-embedded-contact--outgoing {
2021-05-28 16:15:17 +00:00
@include keyboard-mode {
&:focus {
box-shadow: 0px 0px 0px 2px $color-white;
}
}
}
.module-embedded-contact--with-content-above {
padding-top: 4px;
}
.module-embedded-contact--with-content-below {
padding-bottom: 4px;
}
.module-embedded-contact__spinner-container {
2023-04-20 17:03:43 +00:00
padding-inline: 5px;
}
.module-embedded-contact__text-container {
flex-grow: 1;
2023-04-20 17:03:43 +00:00
margin-inline-start: 8px;
max-width: calc(100% - 58px);
}
.module-embedded-contact__contact-name {
2019-10-04 18:06:17 +00:00
@include font-body-1-bold;
margin-top: 6px;
max-width: 100%;
white-space: nowrap;
overflow-x: hidden;
text-overflow: ellipsis;
2019-10-04 18:06:17 +00:00
@include light-theme {
color: $color-white;
}
2021-05-28 16:15:17 +00:00
@include dark-theme {
2019-10-04 18:06:17 +00:00
color: $color-gray-05;
}
}
.module-embedded-contact__contact-name--incoming {
color: $color-white;
2019-10-04 18:06:17 +00:00
2021-05-28 16:15:17 +00:00
@include light-theme {
2019-10-04 18:06:17 +00:00
color: $color-gray-90;
}
2021-05-28 16:15:17 +00:00
@include dark-theme {
2019-10-04 18:06:17 +00:00
color: $color-gray-25;
}
}
.module-embedded-contact__contact-method {
2019-10-04 18:06:17 +00:00
@include font-body-2;
2019-10-04 18:06:17 +00:00
margin-top: 3px;
max-width: 100%;
white-space: nowrap;
overflow-x: hidden;
text-overflow: ellipsis;
2019-10-04 18:06:17 +00:00
@include dark-theme {
color: $color-white-alpha-80;
}
2021-05-28 16:15:17 +00:00
@include light-theme {
2019-10-04 18:06:17 +00:00
color: $color-white-alpha-80;
}
}
.module-embedded-contact__contact-method--incoming {
2019-10-04 18:06:17 +00:00
color: $color-white-alpha-80;
2021-05-28 16:15:17 +00:00
@include light-theme {
2019-10-04 18:06:17 +00:00
color: $color-gray-60;
}
}
// Module: Contact Detail
.module-contact-detail {
text-align: center;
max-width: 300px;
2023-04-20 17:03:43 +00:00
margin-inline: auto;
}
.module-contact-detail__avatar {
margin-bottom: 4px;
}
.module-contact-detail__contact-name {
2019-10-04 18:06:17 +00:00
@include font-body-1-bold;
}
.module-contact-detail__contact-method {
2019-10-04 18:06:17 +00:00
@include font-body-2;
margin-top: 10px;
}
.module-contact-detail__send-message {
2019-11-07 21:36:16 +00:00
@include button-reset;
border-radius: 4px;
2021-05-28 16:15:17 +00:00
background-color: $color-ultramarine;
display: inline-block;
padding: 6px;
margin-top: 20px;
color: $color-white;
flex-direction: column;
align-items: center;
}
.module-contact-detail__send-message__inner {
display: flex;
align-items: center;
2023-04-20 17:03:43 +00:00
padding-inline-end: 5px;
2019-10-04 18:06:17 +00:00
@include font-body-2-bold;
}
.module-contact-detail__send-message__bubble-icon {
height: 17px;
width: 18px;
display: inline-block;
2023-04-20 17:03:43 +00:00
margin-inline-end: 5px;
2019-10-04 18:06:17 +00:00
@include light-theme {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/chat/chat.svg', $color-white);
2019-10-04 18:06:17 +00:00
}
@include dark-theme {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/chat/chat.svg', $color-white);
2019-10-04 18:06:17 +00:00
}
}
.module-contact-detail__additional-contact {
2023-04-20 17:03:43 +00:00
text-align: start;
margin-top: 15px;
padding-top: 8px;
2019-10-04 18:06:17 +00:00
@include light-theme {
border-top: 1px solid $color-gray-05;
}
@include dark-theme {
border-top: 1px solid $color-gray-75;
}
}
.module-contact-detail__additional-contact__type {
2019-10-04 18:06:17 +00:00
@include font-caption-bold;
color: $color-gray-45;
margin-bottom: 3px;
}
2019-11-07 21:36:16 +00:00
// Module: Inline Notification Wrapper
.module-inline-notification-wrapper {
outline: none;
&:focus {
@include keyboard-mode {
background: $color-selected-message-background-light;
}
@include dark-keyboard-mode {
background: $color-selected-message-background-dark;
2019-11-07 21:36:16 +00:00
}
}
}
// Module: Group Notification
.module-group-notification__contact {
2019-10-04 18:06:17 +00:00
font-weight: bold;
}
2021-08-26 20:51:55 +00:00
.module-safety-number__bold-name {
font-weight: bold;
}
2021-08-05 23:34:49 +00:00
// Module: Error Boundary
.module-error-boundary-notification {
text-align: center;
cursor: pointer;
&:focus {
@include keyboard-mode {
outline: 0;
}
}
&:focus &__message {
@include keyboard-mode {
opacity: 1;
}
}
&__message {
opacity: 0.8;
}
@include light-theme {
color: $color-gray-60;
}
@include dark-theme {
color: $color-gray-05;
}
&__icon-container {
2023-04-20 17:03:43 +00:00
margin-inline: auto;
display: inline-flex;
flex-direction: row;
align-items: center;
margin-bottom: 8px;
}
&__icon {
height: 20px;
width: 20px;
display: inline-block;
opacity: 0.6;
@include light-theme {
@include color-svg(
'../images/icons/v2/error-solid-24.svg',
$color-gray-60
);
}
@include dark-theme {
@include color-svg(
'../images/icons/v2/error-solid-24.svg',
$color-gray-05
);
}
}
}
.module-notification--with-click-handler {
cursor: pointer;
}
.module-notification__icon {
height: 24px;
width: 24px;
2023-04-20 17:03:43 +00:00
margin-inline: auto;
}
2020-07-24 01:35:32 +00:00
// Module: In Contacts Icon
.module-in-contacts-icon__icon {
display: inline-block;
2023-05-04 18:04:22 +00:00
height: 14px;
width: 14px;
2020-07-24 01:35:32 +00:00
margin-bottom: 2px;
vertical-align: middle;
@include light-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/person/person-circle-compact.svg',
2020-07-24 01:35:32 +00:00
$color-gray-60
);
}
@include dark-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/person/person-circle-compact.svg',
2020-07-24 01:35:32 +00:00
$color-gray-25
);
}
@include keyboard-mode {
&:focus {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/person/person-circle-compact.svg',
2021-05-28 16:15:17 +00:00
$color-ultramarine
2020-07-24 01:35:32 +00:00
);
}
}
}
// Module: Conversation Details
.conversation-details-panel {
max-width: 750px;
2023-04-20 17:03:43 +00:00
margin-block: 0;
margin-inline: auto;
@at-root .conversation #{&} {
overflow-y: auto;
}
}
// Brought this up here to add specificity
button.ConversationDetails__action-button {
2023-04-20 17:03:43 +00:00
margin-inline-start: 16px;
}
2018-07-18 00:15:34 +00:00
// Module: Media Gallery
.module-media-gallery {
display: flex;
flex-direction: column;
flex-grow: 1;
width: 100%;
height: 100%;
2019-11-07 21:36:16 +00:00
outline: none;
2018-07-18 00:15:34 +00:00
}
.module-media-gallery__content {
display: flex;
flex-grow: 1;
overflow-y: auto;
padding: 20px;
}
.module-media-gallery__sections {
display: flex;
flex-grow: 1;
flex-direction: column;
}
// Module: Attachment Section
.module-attachment-section {
width: 100%;
}
.module-attachment-section__header {
2019-10-04 18:06:17 +00:00
@include font-body-1-bold;
2018-07-18 00:15:34 +00:00
}
.module-attachment-section__items {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
align-items: flex-start;
}
// Module: Document List Item
.module-document-list-item {
width: 100%;
height: 72px;
}
.module-document-list-item--with-separator {
2019-10-04 18:06:17 +00:00
@include light-theme {
border-bottom: 1px solid $color-gray-02;
}
@include dark-theme {
border-bottom: 1px solid $color-gray-75;
}
2018-07-18 00:15:34 +00:00
}
.module-document-list-item__content {
2019-11-07 21:36:16 +00:00
@include button-reset;
width: 100%;
height: 100%;
2019-11-07 21:36:16 +00:00
2018-07-18 00:15:34 +00:00
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-items: center;
@include keyboard-mode {
&:focus {
2021-05-28 16:15:17 +00:00
box-shadow: 0px 0px 0px 2px $color-ultramarine;
}
}
2018-07-18 00:15:34 +00:00
}
.module-document-list-item__icon {
flex-shrink: 0;
width: 48px;
height: 48px;
2019-10-04 18:06:17 +00:00
@include color-svg('../images/file.svg', $color-gray-45);
2018-07-18 00:15:34 +00:00
}
.module-document-list-item__metadata {
display: inline-flex;
flex-direction: column;
flex-grow: 1;
flex-shrink: 0;
2023-04-20 17:03:43 +00:00
margin-inline: 8px;
2018-07-18 00:15:34 +00:00
}
.module-document-list-item__file-size {
display: inline-block;
margin-top: 8px;
2019-10-04 18:06:17 +00:00
@include font-body-2;
2018-07-18 00:15:34 +00:00
}
.module-document-list-item__date {
display: inline-block;
flex-shrink: 0;
}
// Module: Media Grid Item
.module-media-grid-item {
2019-11-07 21:36:16 +00:00
@include button-reset;
2018-07-18 00:15:34 +00:00
height: 94px;
width: 94px;
2019-10-04 18:06:17 +00:00
background-color: $color-gray-05;
2023-04-20 17:03:43 +00:00
margin-inline-end: 4px;
2018-07-18 00:15:34 +00:00
margin-bottom: 4px;
position: relative;
@include keyboard-mode {
&:focus {
2021-05-28 16:15:17 +00:00
box-shadow: 0px 0px 0px 2px $color-ultramarine;
}
}
2018-07-18 00:15:34 +00:00
}
2018-07-18 00:15:34 +00:00
.module-media-grid-item__image {
height: 94px;
width: 100%;
2018-07-18 00:15:34 +00:00
object-fit: cover;
}
.module-media-grid-item__icon {
position: absolute;
top: 15px;
bottom: 15px;
2023-04-20 17:03:43 +00:00
inset-inline: 15px;
}
.module-media-grid-item__icon-image {
2019-10-04 18:06:17 +00:00
@include color-svg('../images/image.svg', $color-gray-45);
}
.module-media-grid-item__image-container {
position: relative;
}
.module-media-grid-item__circle-overlay {
2023-04-20 17:03:43 +00:00
@include position-absolute-center;
width: 42px;
height: 42px;
background-color: $color-white;
border-radius: 21px;
}
.module-media-grid-item__play-overlay {
2023-04-20 17:03:43 +00:00
@include position-absolute-center;
2019-10-04 18:06:17 +00:00
height: 24px;
width: 24px;
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/play/play-fill.svg',
2021-05-28 16:15:17 +00:00
$color-ultramarine
2019-10-04 18:06:17 +00:00
);
}
.module-media-grid-item__icon-video {
2019-10-04 18:06:17 +00:00
@include color-svg('../images/movie.svg', $color-gray-45);
}
.module-media-grid-item__icon-generic {
2019-10-04 18:06:17 +00:00
@include color-svg('../images/file.svg', $color-gray-45);
}
/* Module: Empty State*/
2018-07-18 00:15:34 +00:00
.module-empty-state {
display: flex;
justify-content: center;
align-items: center;
flex-grow: 1;
2019-10-04 18:06:17 +00:00
@include font-title-1;
color: $color-gray-45;
2018-07-18 00:15:34 +00:00
}
2020-05-27 21:37:06 +00:00
// Module: Message Request Actions
.module-message-request-actions {
2023-04-20 17:03:43 +00:00
padding-block: 8px 12px;
padding-inline: 16px;
2020-05-27 21:37:06 +00:00
@include light-theme {
background: $color-white;
}
@include dark-theme {
background: $color-gray-95;
}
&__message {
@include font-body-2;
text-align: center;
margin-bottom: 12px;
@include light-theme {
color: $color-gray-60;
}
@include dark-theme {
color: $color-gray-25;
}
&__name {
@include font-body-2-bold;
}
&__learn-more {
text-decoration: none;
}
2020-05-27 21:37:06 +00:00
}
&__buttons {
display: flex;
flex-direction: row;
justify-content: center;
.module-Button {
2020-05-27 21:37:06 +00:00
min-width: 80px;
&:not(:last-of-type) {
2023-04-20 17:03:43 +00:00
margin-inline-end: 8px;
2020-05-27 21:37:06 +00:00
}
}
}
}
// Module: Image
.module-image {
position: relative;
display: inline-block;
vertical-align: middle;
}
2022-12-14 00:06:15 +00:00
.module-image--hidden {
visibility: hidden;
}
2021-04-27 22:11:59 +00:00
.module-image--tap-to-play,
2021-01-29 22:58:28 +00:00
.module-image--not-downloaded {
align-items: center;
display: flex;
justify-content: center;
2021-04-27 22:11:59 +00:00
span {
2021-01-29 22:58:28 +00:00
align-items: center;
display: flex;
justify-content: center;
border-radius: 48px;
height: 48px;
width: 48px;
2021-04-27 22:11:59 +00:00
background-color: $color-black-alpha-70;
2021-01-29 22:58:28 +00:00
}
&:hover {
2021-04-27 22:11:59 +00:00
span {
background-color: $color-black-alpha-80;
2021-01-29 22:58:28 +00:00
}
}
&:focus {
2021-04-27 22:11:59 +00:00
span {
2021-01-29 22:58:28 +00:00
background-color: $color-gray-75;
2021-05-28 16:15:17 +00:00
border: 4px solid $color-ultramarine;
2021-01-29 22:58:28 +00:00
box-sizing: border-box;
outline: none;
}
}
}
2021-04-27 22:11:59 +00:00
.module-image--not-downloaded {
span:after {
content: '';
height: 24px;
width: 24px;
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/arrow/arrow-down.svg', $color-white);
2021-04-27 22:11:59 +00:00
}
}
.module-image--tap-to-play {
span:after {
2021-05-11 22:25:28 +00:00
display: flex;
flex-direction: column;
align-items: center;
2021-04-27 22:11:59 +00:00
content: 'GIF';
height: 24px;
width: 24px;
@include font-body-1;
color: $color-white;
}
}
2021-01-29 22:58:28 +00:00
.module-image__download-pending {
position: relative;
&--spinner-container {
align-items: center;
display: flex;
height: 100%;
justify-content: center;
2023-04-20 17:03:43 +00:00
inset-inline-start: 0;
2021-01-29 22:58:28 +00:00
position: absolute;
top: 0;
width: 100%;
}
&--spinner {
background-color: $color-gray-75;
border-radius: 48px;
height: 48px;
width: 48px;
.module-image-spinner {
&__container {
2023-04-20 17:03:43 +00:00
margin-block: 12px;
margin-inline: auto;
2021-01-29 22:58:28 +00:00
}
&__arc {
background-color: $color-gray-75;
}
&__circle {
background-color: $color-white;
}
@include dark-theme {
&__arc {
background-color: $color-gray-75;
}
}
}
}
}
.module-image--with-background {
2019-10-04 18:06:17 +00:00
@include light-theme {
background-color: $color-white;
}
@include dark-theme {
background-color: $color-black;
}
}
.module-image__caption-icon {
position: absolute;
top: 6px;
2023-04-20 17:03:43 +00:00
inset-inline-start: 6px;
}
2021-06-24 21:00:11 +00:00
.module-image--cropped {
overflow: hidden;
}
2019-11-07 21:36:16 +00:00
.module-image__border-overlay {
@include button-reset;
2019-11-07 21:36:16 +00:00
width: 100%;
cursor: inherit;
position: absolute;
top: 0;
bottom: 0;
2023-04-20 17:03:43 +00:00
inset-inline: 0;
2021-12-01 23:13:09 +00:00
z-index: $z-index-above-base;
2019-11-07 21:36:16 +00:00
}
.module-image__border-overlay--with-click-handler {
cursor: pointer;
}
2019-10-04 18:06:17 +00:00
2019-11-07 21:36:16 +00:00
.module-image__border-overlay--with-border {
2019-10-04 18:06:17 +00:00
@include light-theme {
box-shadow: inset 0px 0px 0px 1px $color-black-alpha-20;
}
@include dark-theme {
box-shadow: inset 0px 0px 0px 1px $color-white-alpha-20;
}
}
2021-04-27 22:11:59 +00:00
.module-image--gif {
&__filesize {
position: absolute;
top: 10px;
2023-04-20 17:03:43 +00:00
inset-inline-start: 10px;
padding-block: 2px;
padding-inline: 8px;
2021-04-27 22:11:59 +00:00
color: $color-white;
background: $color-black-alpha-70;
/* The height is: 14px + 2x2px from the padding */
border-radius: 9px;
font-size: 11px;
line-height: 14px;
2021-07-12 19:58:45 +00:00
user-select: none;
2021-04-27 22:11:59 +00:00
}
2021-07-14 23:39:52 +00:00
video {
cursor: pointer;
object-fit: cover;
2021-07-14 23:39:52 +00:00
}
2021-04-27 22:11:59 +00:00
}
button.module-image__border-overlay:focus {
@include keyboard-mode {
2021-05-28 16:15:17 +00:00
box-shadow: inset 0px 0px 0px 2px $color-ultramarine;
}
2019-11-07 21:36:16 +00:00
}
.module-image__border-overlay--dark {
2019-10-04 18:06:17 +00:00
background-color: $color-black-alpha-20;
}
.module-image__loading-placeholder {
display: inline-flex;
flex-direction: row;
align-items: center;
2019-10-04 18:06:17 +00:00
@include light-theme {
background-color: $color-black-alpha-20;
}
@include dark-theme {
background-color: $color-white-alpha-20;
}
}
.module-image__image {
object-fit: cover;
// redundant with attachment-container, but we get cursor flashing on move otherwise
cursor: pointer;
}
.module-image__bottom-overlay {
height: 48px;
background-image: linear-gradient(
to bottom,
rgba(0, 0, 0, 0),
rgba(0, 0, 0, 0) 9%,
rgba(0, 0, 0, 0.02) 17%,
rgba(0, 0, 0, 0.05) 24%,
rgba(0, 0, 0, 0.08) 31%,
rgba(0, 0, 0, 0.12) 37%,
rgba(0, 0, 0, 0.16) 44%,
rgba(0, 0, 0, 0.2) 50%,
rgba(0, 0, 0, 0.24) 56%,
rgba(0, 0, 0, 0.28) 63%,
rgba(0, 0, 0, 0.32) 69%,
rgba(0, 0, 0, 0.35) 76%,
rgba(0, 0, 0, 0.38) 83%,
rgba(0, 0, 0, 0.4) 91%,
rgba(0, 0, 0, 0.4)
);
position: absolute;
bottom: 0;
2021-12-01 23:13:09 +00:00
z-index: $z-index-base;
2023-04-20 17:03:43 +00:00
inset-inline: 0;
}
.module-image__play-overlay__circle {
2023-04-20 17:03:43 +00:00
@include position-absolute-center;
width: 48px;
height: 48px;
background-color: $color-white;
border-radius: 24px;
}
.module-image__play-overlay__icon {
2023-04-20 17:03:43 +00:00
@include position-absolute-center;
2019-10-04 18:06:17 +00:00
height: 24px;
width: 24px;
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/play/play-fill.svg',
2021-05-28 16:15:17 +00:00
$color-ultramarine
2019-10-04 18:06:17 +00:00
);
}
.module-image__text-container {
position: absolute;
top: 0;
2023-04-20 17:03:43 +00:00
inset-inline: 0;
bottom: 0;
2021-12-01 23:13:09 +00:00
z-index: $z-index-above-above-base;
2020-07-24 01:35:32 +00:00
// This allows click-through to the overlay button behind it
pointer-events: none;
color: $color-white;
2019-10-04 18:06:17 +00:00
@include font-body-1;
text-align: center;
}
.module-image__close-button {
2021-09-21 01:23:55 +00:00
@include staged-attachment-close-button;
2019-11-07 21:36:16 +00:00
2023-05-04 18:04:22 +00:00
&::before {
content: '';
display: block;
width: 16px;
height: 16px;
@include color-svg('../images/icons/v3/x/x-compact.svg', $color-white);
}
background-image: url('../images/icons/v3/x/x-compact.svg');
filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.6));
2019-11-07 21:36:16 +00:00
@include keyboard-mode {
&:focus {
2021-05-28 16:15:17 +00:00
outline: 2px solid $color-ultramarine;
}
2019-11-07 21:36:16 +00:00
}
}
// Module: Image Grid
.module-image-grid {
display: inline-flex;
flex-direction: row;
align-items: center;
2021-06-24 21:00:11 +00:00
gap: 1px;
}
.module-image-grid--one-image {
margin-bottom: -5px;
}
.module-image-grid--with-sticker {
padding: 8px;
}
.module-image-grid__column {
display: inline-flex;
flex-direction: column;
align-items: center;
2021-06-24 21:00:11 +00:00
gap: 1px;
}
.module-image-grid__row {
display: inline-flex;
flex-direction: row;
align-items: center;
2018-11-14 19:10:32 +00:00
flex-grow: 1;
2021-06-24 21:00:11 +00:00
gap: 1px;
2018-11-14 19:10:32 +00:00
}
// Module: Typing Animation
.module-typing-animation {
display: inline-flex;
2021-07-01 23:43:10 +00:00
flex-direction: row;
2018-11-14 19:10:32 +00:00
align-items: center;
height: 8px;
width: 38px;
2023-04-20 17:03:43 +00:00
padding-inline: 1px;
2018-11-14 19:10:32 +00:00
}
.module-message__typing-animation-container .module-typing-animation {
width: 30px;
}
2018-11-14 19:10:32 +00:00
.module-typing-animation__dot {
border-radius: 50%;
height: 6px;
width: 6px;
opacity: 0.4;
2021-07-01 23:43:10 +00:00
will-change: transform, opacity;
2019-10-04 18:06:17 +00:00
@include dark-theme {
background-color: $color-white;
}
2021-05-28 16:15:17 +00:00
@include light-theme {
2019-10-04 18:06:17 +00:00
background-color: $color-gray-60;
}
2018-11-14 19:10:32 +00:00
@include only-when-page-is-visible {
animation: {
name: typing-animation;
duration: 1600ms;
timing-function: ease;
iteration-count: infinite;
}
}
2021-07-01 23:43:10 +00:00
}
2018-11-14 19:10:32 +00:00
2021-07-01 23:43:10 +00:00
.module-left-pane .module-typing-animation__dot {
@include only-when-page-is-visible {
animation-name: typing-animation-bare;
}
2021-07-01 23:43:10 +00:00
}
2019-10-04 18:06:17 +00:00
2021-07-01 23:43:10 +00:00
.module-typing-animation__dot--light {
2019-10-04 18:06:17 +00:00
background-color: $color-white;
2021-05-28 16:15:17 +00:00
@include light-theme {
2019-10-04 18:06:17 +00:00
background-color: $color-gray-60;
}
2018-11-14 19:10:32 +00:00
}
2021-07-01 23:43:10 +00:00
@keyframes typing-animation {
2018-11-14 19:10:32 +00:00
0% {
opacity: 0.4;
}
20% {
transform: scale(1.3);
opacity: 1;
}
40% {
opacity: 0.4;
}
}
2021-07-01 23:43:10 +00:00
@keyframes typing-animation-bare {
0% {
2018-11-14 19:10:32 +00:00
opacity: 0.4;
}
20% {
opacity: 1;
}
2021-07-01 23:43:10 +00:00
40% {
2018-11-14 19:10:32 +00:00
opacity: 0.4;
}
}
.module-typing-animation__dot--second {
2021-07-01 23:43:10 +00:00
animation-delay: 160ms;
2018-11-14 19:10:32 +00:00
}
.module-typing-animation__dot--third {
2021-07-01 23:43:10 +00:00
animation-delay: 320ms;
2018-11-14 19:10:32 +00:00
}
.module-typing-animation__spacer {
flex-grow: 1;
}
// Module: Attachments
.module-attachments__header {
height: 24px;
position: relative;
}
2021-12-01 02:14:25 +00:00
.module-attachments__edit-icon {
align-items: center;
background: $color-black-alpha-60;
border-radius: 100%;
display: flex;
height: 36px;
justify-content: center;
2023-04-20 17:03:43 +00:00
inset-inline-start: 50%;
margin-inline-start: -20px;
2021-12-01 02:14:25 +00:00
margin-top: -18px;
position: absolute;
top: 50%;
visibility: hidden;
width: 36px;
&::after {
2023-05-04 18:04:22 +00:00
@include color-svg(
'../images/icons/v3/edit/edit-compact.svg',
$color-white
);
2021-12-01 02:14:25 +00:00
content: '';
height: 20px;
width: 20px;
}
}
.module-attachments--editable {
display: inline-block;
position: relative;
&:hover {
.module-attachments__edit-icon {
visibility: visible;
}
}
}
.module-attachments__close-button {
2023-05-04 18:04:22 +00:00
$icon: '../images/icons/v3/x/x.svg';
2019-11-07 21:36:16 +00:00
@include button-reset;
position: absolute;
top: 8px;
2023-04-20 17:03:43 +00:00
inset-inline-end: 16px;
width: 20px;
height: 20px;
2021-12-01 23:13:09 +00:00
z-index: $z-index-above-base;
@include light-theme {
@include color-svg($icon, $color-black);
}
@include dark-theme {
@include color-svg($icon, $color-white);
}
2019-11-07 21:36:16 +00:00
@include keyboard-mode {
&:focus {
@include color-svg($icon, $color-ultramarine);
}
2019-11-07 21:36:16 +00:00
}
}
.module-attachments__rail {
margin-top: 12px;
2023-04-20 17:03:43 +00:00
margin-inline-start: 12px;
padding-inline-end: 12px;
overflow-x: scroll;
max-height: 142px;
white-space: nowrap;
overflow-y: hidden;
margin-bottom: 6px;
}
2021-09-21 01:23:55 +00:00
.module-staged-attachment {
2023-04-20 17:03:43 +00:00
margin-inline-end: 8px;
2021-09-21 01:23:55 +00:00
&.module-image::before {
background: linear-gradient(
180deg,
$color-black-alpha-30 0%,
transparent 100%
);
content: '';
display: block;
height: 40px;
opacity: 0;
position: absolute;
transition: opacity 0.2s ease-out;
width: 100%;
}
&.module-image:hover::before {
opacity: 1;
}
}
// Module: Staged Generic Attachment
.module-staged-generic-attachment {
height: 120px;
width: 120px;
display: inline-block;
position: relative;
border-radius: 4px;
vertical-align: middle;
white-space: nowrap;
2019-10-04 18:06:17 +00:00
@include light-theme {
box-shadow: inset 0px 0px 0px 1px $color-black-alpha-20;
background-color: $color-gray-05;
}
@include dark-theme {
box-shadow: inset 0px 0px 0px 1px $color-gray-45;
background-color: $color-gray-75;
color: $color-gray-02;
}
}
.module-staged-generic-attachment__close-button {
2021-09-21 01:23:55 +00:00
@include staged-attachment-close-button;
2019-10-04 18:06:17 +00:00
@include light-theme {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/x/x-compact.svg', $color-black);
2019-10-04 18:06:17 +00:00
}
@include dark-theme {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/x/x-compact.svg', $color-gray-45);
2019-10-04 18:06:17 +00:00
}
}
.module-staged-generic-attachment__icon {
margin-top: 30px;
background: url('../images/file-gradient.svg') no-repeat center;
height: 44px;
width: 56px;
2023-04-20 17:03:43 +00:00
margin-inline: 32px;
margin-bottom: -4px;
// So we can center the extension text inside this icon
display: flex;
flex-direction: row;
align-items: center;
}
.module-staged-generic-attachment__icon__extension {
font-size: 10px;
line-height: 13px;
letter-spacing: 0.1px;
text-transform: uppercase;
// Along with flow layout in parent item, centers text
text-align: center;
width: 25px;
2023-04-20 17:03:43 +00:00
margin-inline: auto;
// We don't have much room for text here, cut it off without ellipse
overflow-x: hidden;
white-space: nowrap;
text-overflow: clip;
color: $color-gray-90;
}
.module-staged-generic-attachment__filename {
2019-10-04 18:06:17 +00:00
@include font-caption;
margin: 7px;
margin-top: 5px;
text-align: center;
overflow: hidden;
height: 2.4em;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
}
// Module: Staged Placeholder Attachment
.module-staged-placeholder-attachment {
2019-11-07 21:36:16 +00:00
@include button-reset;
margin: 1px;
border-radius: 4px;
2019-10-04 18:06:17 +00:00
height: 120px;
width: 120px;
display: inline-block;
vertical-align: middle;
position: relative;
2019-10-04 18:06:17 +00:00
@include light-theme {
border: 1px solid $color-gray-25;
&:hover {
background: $color-gray-05;
}
}
@include keyboard-mode {
2019-11-07 21:36:16 +00:00
&:focus {
2021-05-28 16:15:17 +00:00
box-shadow: inset 0 0 0 2px $color-ultramarine;
2019-11-07 21:36:16 +00:00
}
2019-10-04 18:06:17 +00:00
}
2019-10-04 18:06:17 +00:00
@include dark-theme {
border: 1px solid $color-gray-60;
&:hover {
background: $color-gray-75;
}
}
@include dark-keyboard-mode {
2019-11-07 21:36:16 +00:00
&:focus {
2021-05-28 16:15:17 +00:00
box-shadow: inset 0 0 0 2px $color-ultramarine;
2019-11-07 21:36:16 +00:00
}
}
}
.module-staged-placeholder-attachment__plus-icon {
2023-04-20 17:03:43 +00:00
@include position-absolute-center;
2023-05-04 18:04:22 +00:00
height: 28px;
width: 28px;
2019-10-04 18:06:17 +00:00
@include light-theme {
2023-05-04 18:04:22 +00:00
@include color-svg(
'../images/icons/v3/plus/plus-light.svg',
$color-gray-45
);
2019-10-04 18:06:17 +00:00
}
@include dark-theme {
2023-05-04 18:04:22 +00:00
@include color-svg(
'../images/icons/v3/plus/plus-light.svg',
$color-gray-60
);
2019-10-04 18:06:17 +00:00
}
}
2022-11-30 21:47:54 +00:00
.module-payment-notification {
&__container {
display: block;
}
&__label {
2023-04-20 17:03:43 +00:00
margin-block: 0 7px;
margin-inline: 0;
2022-11-30 21:47:54 +00:00
@include font-subtitle;
@include light-theme() {
color: $color-gray-60;
}
@include dark-theme() {
color: $color-gray-25;
}
}
&__check_device_box {
display: flex;
gap: 9px;
align-items: center;
@include font-body-2;
2023-04-20 17:03:43 +00:00
padding-block: 22px;
padding-inline: 7px;
padding-inline-start: 12px;
2022-11-30 21:47:54 +00:00
border-radius: 18px;
2023-04-20 17:03:43 +00:00
margin-block: 0;
margin-inline: -4px;
2022-11-30 21:47:54 +00:00
@include light-theme() {
background: $color-white-alpha-60;
color: $color-gray-90;
}
@include dark-theme() {
background: $color-white-alpha-20;
color: $color-white;
}
&::before {
content: '';
display: block;
flex-shrink: 0;
width: 16px;
height: 16px;
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/info/info.svg', currentcolor);
2022-11-30 21:47:54 +00:00
}
}
&__note {
2023-04-20 17:03:43 +00:00
margin-block: 9px 0;
margin-inline: 0;
2022-11-30 21:47:54 +00:00
@include font-body-1;
}
&--outgoing &__label {
@include light-theme() {
color: $color-white-alpha-80;
}
@include dark-theme() {
color: $color-white-alpha-80;
}
}
&--outgoing &__check_device_box {
background: $color-white-alpha-20;
color: $color-white;
}
}
// Module: Spinner
.module-spinner__container {
2023-04-20 17:03:43 +00:00
margin-inline: auto;
position: relative;
height: 56px;
width: 56px;
}
.module-spinner__circle {
position: absolute;
top: 0;
2023-04-20 17:03:43 +00:00
inset-inline-start: 0;
2021-12-01 23:13:09 +00:00
z-index: $z-index-above-base;
2019-06-26 19:33:13 +00:00
height: 100%;
width: 100%;
2019-10-04 18:06:17 +00:00
@include color-svg('../images/spinner-track-56.svg', $color-white-alpha-40);
}
.module-spinner__arc {
position: absolute;
top: 0;
2023-04-20 17:03:43 +00:00
inset-inline-start: 0;
2021-12-01 23:13:09 +00:00
z-index: $z-index-above-above-base;
2019-06-26 19:33:13 +00:00
height: 100%;
width: 100%;
animation: rotate 1000ms linear infinite;
2019-10-04 18:06:17 +00:00
@include light-theme {
@include color-svg('../images/spinner-56.svg', $color-gray-60);
}
@include dark-theme {
@include color-svg('../images/spinner-56.svg', $color-gray-05);
}
}
// In these --small and --mini sizes, we're exploding our @color-svg mixin so we don't
// have to duplicate our background colors for the dark/ios/size matrix.
.module-spinner__container--small {
height: 24px;
width: 24px;
}
.module-spinner__circle--small {
-webkit-mask: url('../images/spinner-track-24.svg') no-repeat center;
-webkit-mask-size: 100%;
// For specificity
@include dark-theme {
-webkit-mask: url('../images/spinner-track-24.svg') no-repeat center;
-webkit-mask-size: 100%;
}
}
.module-spinner__arc--small {
-webkit-mask: url('../images/spinner-24.svg') no-repeat center;
-webkit-mask-size: 100%;
// For specificity
@include dark-theme {
-webkit-mask: url('../images/spinner-24.svg') no-repeat center;
-webkit-mask-size: 100%;
}
}
2019-10-04 18:06:17 +00:00
.module-spinner__circle--incoming {
background-color: $color-white-alpha-40;
}
2019-10-04 18:06:17 +00:00
.module-spinner__arc--incoming {
@include light-theme {
background-color: $color-gray-60;
}
2021-05-28 16:15:17 +00:00
@include dark-theme {
2019-10-04 18:06:17 +00:00
background-color: $color-gray-02;
}
}
2019-10-04 18:06:17 +00:00
.module-spinner__circle--outgoing {
2021-05-28 16:15:17 +00:00
@include light-theme {
2019-10-04 18:06:17 +00:00
background-color: $color-white-alpha-40;
}
2021-05-28 16:15:17 +00:00
@include dark-theme {
2019-10-04 18:06:17 +00:00
background-color: $color-white-alpha-40;
}
}
2019-10-04 18:06:17 +00:00
.module-spinner__arc--outgoing {
2021-05-28 16:15:17 +00:00
@include light-theme {
2019-10-04 18:06:17 +00:00
background-color: $color-white;
}
2021-05-28 16:15:17 +00:00
@include dark-theme {
2019-10-04 18:06:17 +00:00
background-color: $color-gray-05;
}
}
.module-spinner__circle--on-avatar {
background-color: $color-white-alpha-40;
}
.module-spinner__circle--on-background {
2019-10-04 18:06:17 +00:00
@include light-theme {
background-color: $color-gray-05;
}
@include dark-theme {
background-color: $color-gray-75;
}
}
.module-spinner__arc--on-background {
2019-10-04 18:06:17 +00:00
@include light-theme {
background-color: $color-gray-60;
}
@include dark-theme {
background-color: $color-gray-25;
}
}
2023-02-27 22:34:43 +00:00
.module-spinner__circle--on-primary-button {
background-color: $color-white-alpha-40;
}
2020-10-06 17:06:34 +00:00
.module-spinner__circle--on-progress-dialog {
@include light-theme {
background-color: $color-white;
}
@include dark-theme {
background-color: $color-gray-80;
}
}
.module-spinner__arc--on-progress-dialog {
2021-05-28 16:15:17 +00:00
background-color: $color-ultramarine;
2020-10-06 17:06:34 +00:00
}
.module-spinner__arc--on-avatar {
background-color: $color-white;
}
2023-02-27 22:34:43 +00:00
.module-spinner__arc--on-primary-button {
background-color: $color-white;
}
2020-10-06 17:06:34 +00:00
// Module: Reaction Viewer
2020-01-17 22:23:19 +00:00
.module-reaction-viewer {
width: 320px;
height: 320px;
border-radius: 8px;
display: flex;
flex-direction: column;
@include popper-shadow();
@include light-theme() {
background: $color-white;
}
@include dark-theme() {
background: $color-gray-75;
}
&__header {
width: 100%;
min-height: 44px;
2023-04-20 17:03:43 +00:00
padding-block: 0px;
padding-inline: 8px;
2020-01-17 22:23:19 +00:00
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
overflow-x: auto;
&__button {
min-height: 28px;
border: none;
border-radius: 18px;
2023-04-20 17:03:43 +00:00
padding-block: 0px;
padding-inline: 8px;
2020-01-17 22:23:19 +00:00
display: flex;
justify-content: center;
align-items: center;
2020-02-05 23:14:25 +00:00
flex-basis: 45px;
flex-shrink: 0;
2020-01-17 22:23:19 +00:00
&:not(:first-of-type) {
2023-04-20 17:03:43 +00:00
margin-inline-start: 4px;
2020-01-17 22:23:19 +00:00
}
&:focus {
outline: none;
}
@include keyboard-mode {
&:focus {
2021-05-28 16:15:17 +00:00
box-shadow: 0px 0px 0px 2px $color-ultramarine;
2020-01-17 22:23:19 +00:00
}
}
background: none;
&--selected {
@include light-theme() {
background: $color-gray-05;
}
@include dark-theme() {
background: $color-gray-60;
}
}
2020-02-05 23:14:25 +00:00
&__count,
&__all {
2020-01-17 22:23:19 +00:00
@include font-body-2-bold();
2020-02-05 23:14:25 +00:00
white-space: nowrap;
2020-01-17 22:23:19 +00:00
@include light-theme() {
color: $color-gray-90;
}
@include dark-theme() {
color: $color-gray-05;
}
}
2020-02-05 23:14:25 +00:00
&__count {
2023-04-20 17:03:43 +00:00
margin-inline-start: 4px;
2020-02-05 23:14:25 +00:00
}
2020-01-17 22:23:19 +00:00
}
}
&__body {
flex-grow: 1;
2023-04-20 17:03:43 +00:00
padding-block: 0;
padding-inline: 16px;
2020-01-17 22:23:19 +00:00
overflow: auto;
&__row {
2020-02-05 23:14:25 +00:00
margin-top: 12px;
2020-01-17 22:23:19 +00:00
min-height: 32px;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
2020-02-05 23:14:25 +00:00
&:last-of-type {
margin-bottom: 12px;
}
2020-02-03 22:00:50 +00:00
&__avatar {
2020-01-17 22:23:19 +00:00
min-width: 32px;
2020-02-05 23:14:25 +00:00
flex-shrink: 1;
2020-01-17 22:23:19 +00:00
}
2020-02-03 22:00:50 +00:00
&__name {
2020-01-17 22:23:19 +00:00
@include font-body-1-bold();
2020-02-05 23:14:25 +00:00
flex-grow: 1;
2023-04-20 17:03:43 +00:00
margin-inline-start: 8px;
2020-01-17 22:23:19 +00:00
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
@include light-theme() {
color: $color-gray-90;
}
@include dark-theme() {
color: $color-gray-05;
}
}
2020-02-05 23:14:25 +00:00
&__emoji {
width: 18px;
flex-shrink: 1;
}
2020-01-17 22:23:19 +00:00
}
}
}
2020-10-01 19:09:15 +00:00
// Module: Calling
2020-10-08 01:25:33 +00:00
.module-calling {
// creates a new independent stacking context that includes modals
//
// container has no width/height, direct children need to:
// - size themselves explicitly (no percentage width/height or top/bottom or left/right)
// - size themselves in relation to viewport (position: fixed)
&__modal-container {
position: fixed;
2022-10-19 22:57:12 +00:00
top: var(--titlebar-height);
2023-04-20 17:03:43 +00:00
inset-inline-start: 0;
z-index: $z-index-calling-container;
}
2020-10-08 01:25:33 +00:00
&__container {
align-items: center;
2021-01-08 18:58:28 +00:00
background-color: $calling-background-color;
2020-10-08 01:25:33 +00:00
display: flex;
flex-direction: column;
height: var(--window-height);
2020-11-13 19:57:55 +00:00
justify-content: center;
position: fixed;
2020-10-08 01:25:33 +00:00
width: 100%;
2022-04-07 23:27:20 +00:00
z-index: $z-index-calling;
2020-10-08 01:25:33 +00:00
}
&__header {
color: #ffffff;
font-style: normal;
padding-bottom: 24px;
2021-02-01 20:01:25 +00:00
padding-top: calc(24px + var(--title-bar-drag-area-height));
2020-10-08 01:25:33 +00:00
text-align: center;
@include calling-text-shadow;
2020-10-08 01:25:33 +00:00
width: 100%;
&--header-name {
font-size: 15px;
2020-11-17 15:07:53 +00:00
font-weight: 600;
2020-10-08 01:25:33 +00:00
letter-spacing: -0.009em;
2020-11-17 15:07:53 +00:00
line-height: 21px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
2020-10-08 01:25:33 +00:00
}
}
&__buttons {
bottom: 0;
display: flex;
justify-content: center;
padding-bottom: 32px;
padding-top: 32px;
position: absolute;
text-align: center;
width: 100%;
&--inline {
position: static;
}
2020-10-08 01:25:33 +00:00
}
&__background {
align-items: center;
display: flex;
flex-direction: column;
2020-10-08 01:25:33 +00:00
height: 100%;
justify-content: center;
overflow: hidden;
position: relative;
2020-10-08 01:25:33 +00:00
width: 100%;
&--blur {
background-repeat: no-repeat;
background-size: cover;
background-position: center;
filter: blur(25px);
2020-10-08 01:25:33 +00:00
height: 100%;
position: absolute;
width: 100%;
}
}
&__camera-is-off {
@include calling-text-shadow;
@include font-body-1;
color: $color-white;
display: flex;
2023-05-05 16:23:43 +00:00
align-items: center;
2021-12-01 23:13:09 +00:00
z-index: $z-index-base;
margin-top: 10px;
// To match the icon height in ::before
line-height: 24px;
&::before {
content: '';
display: block;
2023-05-05 16:23:43 +00:00
background-image: url('../images/icons/v3/video/video-slash-fill-white.svg');
background-size: 100%;
-webkit-filter: drop-shadow(0 0 4px $color-black-alpha-40);
height: 20px;
2023-04-20 17:03:43 +00:00
margin-inline-end: 10px;
2023-05-05 16:23:43 +00:00
width: 20px;
}
}
2020-10-08 01:25:33 +00:00
}
2020-10-01 19:09:15 +00:00
2020-06-04 18:16:19 +00:00
@keyframes module-ongoing-call__controls--fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes module-ongoing-call__controls--fade-out {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
2020-10-08 01:25:33 +00:00
.module-ongoing-call {
$local-preview-width: 136px;
$local-preview-height: 102px;
2020-10-08 01:25:33 +00:00
&__remote-video-enabled {
background-color: $color-gray-95;
height: 100%;
2020-10-08 01:25:33 +00:00
width: 100%;
2020-06-04 18:16:19 +00:00
}
2020-10-08 01:25:33 +00:00
&__remote-video-disabled {
background-color: $color-gray-95;
height: var(--window-height);
2020-10-08 01:25:33 +00:00
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
2020-11-13 19:57:55 +00:00
&__container {
&--direct:not(&--call-not-started) {
2020-11-13 19:57:55 +00:00
.module-ongoing-call__header {
position: absolute;
}
.module-ongoing-call__footer {
position: absolute;
}
}
}
2020-10-08 01:25:33 +00:00
&__header {
background: linear-gradient($color-black-alpha-40, transparent);
2020-11-17 15:07:53 +00:00
top: 0;
width: 100%;
2021-12-01 23:13:09 +00:00
z-index: $z-index-above-base;
2021-01-08 18:58:28 +00:00
padding-bottom: 1rem;
2023-06-30 14:12:01 +00:00
-webkit-app-region: drag;
2020-10-08 01:25:33 +00:00
}
&__header-message {
font-weight: normal;
font-size: 13px;
2021-07-15 22:10:08 +00:00
font-variant: tabular-nums;
2020-10-08 01:25:33 +00:00
line-height: 18px;
letter-spacing: -0.0025em;
}
&__direct-call-ringing-spacer {
flex: 1;
}
2021-01-08 18:58:28 +00:00
&__participants {
display: flex;
flex: 1 1 0;
2020-11-13 19:57:55 +00:00
width: 100%;
2021-01-08 18:58:28 +00:00
&__grid {
flex-grow: 1;
position: relative;
}
&__overflow {
flex: 0 0 auto;
position: relative;
2023-04-20 17:03:43 +00:00
margin-inline: 16px;
2021-01-08 18:58:28 +00:00
&__inner {
position: absolute;
bottom: 0;
2023-04-20 17:03:43 +00:00
inset-inline-start: 0;
2021-01-08 18:58:28 +00:00
width: 100%;
max-height: 100%;
overflow-y: scroll;
&::-webkit-scrollbar,
&::-webkit-scrollbar-thumb {
width: 0;
background: transparent;
}
}
& .module-ongoing-call__group-call-remote-participant {
width: 100%;
margin-bottom: 1rem;
}
&__scroll-marker {
$scroll-marker-selector: &;
@include smooth-scroll;
2021-01-08 18:58:28 +00:00
display: flex;
justify-content: center;
2023-04-20 17:03:43 +00:00
inset-inline-start: 0;
2021-01-08 18:58:28 +00:00
opacity: 1;
position: absolute;
transition: opacity 200ms ease-out;
width: 100%;
z-index: $z-index-above-above-base;
2021-01-08 18:58:28 +00:00
&--hidden {
opacity: 0;
}
&__button {
&::before {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/chevron/chevron-down.svg',
2021-01-08 18:58:28 +00:00
$color-white
);
content: '';
display: block;
height: 100%;
width: 100%;
}
background: $color-gray-60;
border-radius: 100%;
border: 0;
box-shadow: 0 0 5px rgba($color-gray-95, 0.5);
height: 28px;
2023-04-20 17:03:43 +00:00
margin-block: 12px;
margin-inline: 0;
2021-01-08 18:58:28 +00:00
opacity: 0;
outline: none;
transition: opacity 200ms ease-out;
width: 28px;
}
&--top {
top: 0;
background: linear-gradient(
$calling-background-color,
transparent 20px,
transparent
);
#{$scroll-marker-selector}__button {
transform: rotate(180deg);
}
}
&--bottom {
bottom: 0;
background: linear-gradient(
to top,
$calling-background-color,
transparent 20px,
transparent
);
}
}
&:hover &__scroll-marker__button {
opacity: 1;
}
}
2020-11-13 19:57:55 +00:00
}
&__group-call-remote-participant {
display: flex;
justify-content: center;
position: relative;
2020-11-13 19:57:55 +00:00
line-height: 0;
overflow: hidden;
border-radius: 5px;
2023-04-20 17:03:43 +00:00
// stylelint-disable-next-line declaration-property-value-disallowed-list
transform: translate(0, 0);
transition: transform 200ms linear, width 200ms linear, height 200ms linear;
2020-11-13 19:57:55 +00:00
2023-02-28 20:01:52 +00:00
&:after {
content: '';
position: absolute;
2023-03-06 22:47:22 +00:00
z-index: $z-index-above-above-base;
2023-02-28 20:01:52 +00:00
width: 100%;
height: 100%;
border: 0 solid transparent;
border-radius: 5px;
2023-03-06 22:47:22 +00:00
transition-property: border-width, border-color;
// Turn on the transition when the user stops speaking to fade out.
2023-03-06 22:47:22 +00:00
transition-duration: 300ms;
transition-delay: 1000ms;
2023-02-28 20:01:52 +00:00
transition-timing-function: ease-in-out;
}
&--speaking:after {
border-width: 3px;
border-color: $color-white;
// Turn off the transition when the user starts speaking to appear instantly
transition-duration: 0ms;
2023-03-06 22:47:22 +00:00
transition-delay: 0ms;
2023-02-28 20:01:52 +00:00
}
2020-11-13 19:57:55 +00:00
&__remote-video {
// The background-color is seen while the video loads.
background-color: $color-gray-75;
}
&__blocked {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/block/block.svg', $color-white);
height: 24px;
margin-bottom: 16px;
width: 24px;
&--info {
@include button-reset;
background-color: $color-gray-75;
border-radius: 16px;
color: $color-white;
line-height: 16px;
2023-04-20 17:03:43 +00:00
padding-block: 3px;
padding-inline: 10px;
}
&--modal-title {
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
}
}
&__info {
@include font-caption;
align-items: flex-end;
bottom: 0;
display: flex;
height: 48px;
justify-content: space-between;
padding: 6px;
position: absolute;
user-select: none;
width: 100%;
2021-12-01 23:13:09 +00:00
z-index: $z-index-above-base;
&__contact-name {
2022-05-09 23:51:57 +00:00
font-size: 12px;
color: $color-white;
2023-04-20 17:03:43 +00:00
margin-inline-end: 20px;
overflow: hidden;
text-overflow: ellipsis;
visibility: hidden;
white-space: nowrap;
2022-05-09 23:51:57 +00:00
margin-bottom: 2px;
}
}
&:hover {
.module-ongoing-call__group-call-remote-participant__info {
background: linear-gradient(
180deg,
transparent,
$color-black-alpha-60 100%
);
&__contact-name {
visibility: visible;
}
}
}
2020-11-13 19:57:55 +00:00
}
&__local-preview-fullsize {
2021-09-10 17:24:05 +00:00
align-items: center;
display: flex;
height: 100%;
2021-09-10 17:24:05 +00:00
justify-content: center;
2023-04-20 17:03:43 +00:00
inset-inline-start: 0;
position: absolute;
top: 0;
width: 100%;
2021-12-01 23:13:09 +00:00
z-index: $z-index-negative;
video {
@include lonely-local-video-preview;
}
2021-09-10 17:24:05 +00:00
&--presenting {
video {
transform: none;
}
}
}
&__footer {
2020-10-08 01:25:33 +00:00
background: linear-gradient(transparent, $color-black-alpha-40);
bottom: 0;
display: flex;
justify-content: space-between;
2020-10-08 01:25:33 +00:00
width: 100%;
2021-12-01 23:13:09 +00:00
z-index: $z-index-above-base;
&__actions {
align-items: center;
display: flex;
flex-grow: 1;
justify-content: center;
}
// This layout-only element is not ideal, but lets us keep the actions centered until
// until they'd overlap with the video, at which point they start to move.
&__local-preview-offset {
flex: 1 0;
max-width: $local-preview-width;
visibility: hidden;
}
&__local-preview {
border-radius: 5px;
display: flex;
height: $local-preview-height;
2023-04-20 17:03:43 +00:00
margin-block: 2px 16px;
margin-inline: 0 16px;
overflow: hidden;
position: relative;
width: $local-preview-width;
&__video {
// The background-color is seen while the video loads.
background-color: $color-gray-75;
height: 100%;
transform: rotateY(180deg);
width: 100%;
&--presenting {
transform: inherit;
}
}
.CallingAudioIndicator {
bottom: 6px;
position: absolute;
2023-04-20 17:03:43 +00:00
inset-inline-end: 6px;
2021-12-01 23:13:09 +00:00
z-index: $z-index-base;
}
}
2020-10-08 01:25:33 +00:00
}
&__controls--fadeIn {
animation: {
name: module-ongoing-call__controls--fade-in;
duration: 400ms;
timing-function: $ease-out-expo;
fill-mode: forwards;
}
}
&__controls--fadeOut {
animation: {
name: module-ongoing-call__controls--fade-out;
duration: 1200ms;
timing-function: $ease-out-expo;
fill-mode: forwards;
}
2020-06-04 18:16:19 +00:00
}
}
2020-10-08 01:25:33 +00:00
.module-calling-tools {
display: flex;
justify-content: flex-end;
2020-08-27 00:03:42 +00:00
position: absolute;
2021-02-01 20:01:25 +00:00
top: calc(24px + var(--title-bar-drag-area-height));
2020-10-08 01:25:33 +00:00
width: 100%;
2020-08-27 00:03:42 +00:00
2020-10-08 01:25:33 +00:00
&__button {
2023-04-20 17:03:43 +00:00
margin-inline-end: 25px;
2020-08-27 00:03:42 +00:00
}
}
2020-10-01 00:43:05 +00:00
.module-calling-pip {
backface-visibility: hidden;
background-color: $color-gray-95;
border-radius: 4px;
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.05), 0px 8px 20px rgba(0, 0, 0, 0.3);
cursor: grab;
height: 158px;
position: fixed;
2020-10-01 00:43:05 +00:00
width: 120px;
2021-12-02 23:08:40 +00:00
z-index: $z-index-calling-pip;
2020-10-01 00:43:05 +00:00
& .module-ongoing-call__group-call-remote-participant {
border-radius: 0;
}
2020-10-01 00:43:05 +00:00
&__video {
&--remote {
align-items: center;
background-color: $color-gray-95;
border-radius: 4px 4px 0 0;
display: flex;
height: 120px; // This height should be kept in sync with <CallingPipRemoteVideo>'s hard-coded height.
2020-10-01 00:43:05 +00:00
justify-content: center;
overflow: hidden;
2020-10-01 00:43:05 +00:00
position: relative;
width: 100%;
// The avatar image can be dragged on Windows.
.module-Avatar img {
-webkit-user-drag: none;
-webkit-user-select: none;
}
2020-10-01 00:43:05 +00:00
}
&--local {
bottom: 38px;
height: 32px;
position: absolute;
2023-04-20 17:03:43 +00:00
inset-inline-end: 4px;
transform: rotateY(180deg);
2020-10-01 00:43:05 +00:00
width: 32px;
}
}
&__actions {
align-items: center;
background-color: $color-gray-02;
border-radius: 0 0 4px 4px;
display: flex;
flex-direction: row;
height: 38px;
justify-content: space-around;
@include dark-theme {
background-color: $color-gray-65;
}
}
&__button {
&--hangup {
@include color-svg(
2023-05-05 16:23:43 +00:00
'../images/icons/v3/phone/phone-down-light.svg',
2020-10-01 00:43:05 +00:00
$color-gray-75
);
height: 28px;
width: 28px;
2023-05-05 16:23:43 +00:00
border: none;
2020-10-01 00:43:05 +00:00
@include dark-theme {
@include color-svg(
2023-05-05 16:23:43 +00:00
'../images/icons/v3/phone/phone-down-light.svg',
2020-10-01 00:43:05 +00:00
$color-gray-15
);
}
}
&--pip {
2020-10-26 16:17:02 +00:00
@include color-svg(
2023-05-23 21:14:47 +00:00
'../images/icons/v3/pip/pip-maximize-light.svg',
2020-10-26 16:17:02 +00:00
$color-gray-75
);
2020-10-01 00:43:05 +00:00
height: 24px;
width: 24px;
2023-05-05 16:23:43 +00:00
border: none;
2020-10-01 00:43:05 +00:00
@include dark-theme {
2020-10-26 16:17:02 +00:00
@include color-svg(
2023-05-23 21:14:47 +00:00
'../images/icons/v3/pip/pip-maximize-light.svg',
2020-10-26 16:17:02 +00:00
$color-gray-15
);
2020-10-01 00:43:05 +00:00
}
}
}
}
2020-10-15 19:53:21 +00:00
.module-calling-participants-list {
background-color: $color-gray-80;
border-radius: 8px;
color: $color-white;
2023-04-20 17:03:43 +00:00
margin-inline-end: 12px;
2020-10-15 19:53:21 +00:00
margin-top: 54px;
2020-11-20 17:19:53 +00:00
overflow: hidden;
2020-10-15 19:53:21 +00:00
padding: 14px;
width: 280px;
2020-11-19 18:11:35 +00:00
padding-bottom: 0;
2020-10-15 19:53:21 +00:00
&__overlay {
display: flex;
2022-07-05 16:44:53 +00:00
width: var(--window-width);
height: var(--window-height);
2020-10-15 19:53:21 +00:00
justify-content: flex-end;
2023-04-20 17:03:43 +00:00
inset-inline-start: 0;
2020-10-15 19:53:21 +00:00
position: absolute;
top: 0;
2023-07-21 22:12:23 +00:00
z-index: $z-index-calling;
2020-10-15 19:53:21 +00:00
}
&__title {
@include font-body-2-bold;
}
2020-11-20 19:39:50 +00:00
&__contact-icon {
background-color: $color-gray-25;
}
2020-10-15 19:53:21 +00:00
&__list {
2020-11-20 17:19:53 +00:00
height: 100%;
margin-bottom: 0;
2023-04-20 17:03:43 +00:00
margin-inline: -14px;
2020-10-15 19:53:21 +00:00
margin-top: 22px;
2020-11-20 17:19:53 +00:00
overflow: scroll;
padding-bottom: 24px;
2023-04-20 17:03:43 +00:00
padding-inline: 14px;
2020-11-20 17:19:53 +00:00
padding-top: 0;
&::-webkit-scrollbar {
width: 6px;
}
&::-webkit-scrollbar-thumb {
border: none;
border-radius: 4px;
background-color: $color-gray-45;
}
&::-webkit-scrollbar-track {
background-color: $color-gray-80;
}
2020-10-15 19:53:21 +00:00
}
&__contact {
@include font-body-1;
align-items: center;
display: flex;
justify-content: space-between;
list-style-type: none;
margin-bottom: 16px;
}
&__avatar-and-name {
display: flex;
align-items: center;
max-width: 172px;
}
2020-10-15 19:53:21 +00:00
&__name {
display: inline-block;
2023-04-20 17:03:43 +00:00
margin-inline-start: 8px;
2020-10-15 19:53:21 +00:00
overflow: hidden;
text-overflow: ellipsis;
vertical-align: middle;
white-space: nowrap;
}
&__header {
display: flex;
justify-content: space-between;
}
&__close {
@include button-reset;
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/x/x.svg', $color-gray-15);
2020-10-15 19:53:21 +00:00
2023-05-04 18:04:22 +00:00
height: 20px;
width: 20px;
2021-12-01 23:13:09 +00:00
z-index: $z-index-above-base;
2020-10-15 19:53:21 +00:00
@include keyboard-mode {
&:focus {
2021-05-28 16:15:17 +00:00
outline: 2px solid $color-ultramarine;
2020-10-15 19:53:21 +00:00
}
}
}
&__muted {
&--video {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/video/video-slash-compact-light.svg',
2020-10-15 19:53:21 +00:00
$color-white
);
display: inline-block;
2023-04-20 17:03:43 +00:00
margin-inline-start: 18px;
2023-05-04 18:04:22 +00:00
height: 18px;
width: 18px;
2020-10-15 19:53:21 +00:00
}
&--audio {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/mic/mic-slash-compact-light.svg',
2020-10-15 19:53:21 +00:00
$color-white
);
display: inline-block;
2023-04-20 17:03:43 +00:00
margin-inline-start: 18px;
2023-05-04 18:04:22 +00:00
height: 18px;
width: 18px;
2020-10-15 19:53:21 +00:00
}
}
&__presenting {
2023-05-04 18:04:22 +00:00
@include color-svg(
'../images/icons/v3/share_screen/share_screen-fill-light.svg',
$color-white
);
display: inline-block;
2023-04-20 17:03:43 +00:00
margin-inline-start: 18px;
2023-05-04 18:04:22 +00:00
height: 18px;
width: 18px;
}
2020-10-15 19:53:21 +00:00
}
2020-10-01 19:09:15 +00:00
.module-call-need-permission-screen {
2020-10-08 01:25:33 +00:00
align-items: center;
background-color: $color-gray-95;
color: $color-gray-05;
2020-10-01 19:09:15 +00:00
display: flex;
flex-direction: column;
height: var(--window-height);
2020-10-01 19:09:15 +00:00
justify-content: center;
2020-10-08 01:25:33 +00:00
position: relative;
width: 100%;
2020-10-01 19:09:15 +00:00
&__text {
2023-04-20 17:03:43 +00:00
margin-block: 2em;
margin-inline: 1em;
2020-10-01 19:09:15 +00:00
max-width: 400px;
@include font-body-1;
text-align: center;
}
&__button {
2023-04-20 17:03:43 +00:00
padding-block: 0.5em;
padding-inline: 1em;
2020-10-01 19:09:15 +00:00
border: 0;
border-radius: 4px;
@include font-body-1-bold;
color: $color-gray-05;
background: $color-gray-65;
}
}
// Module: conversation list
2019-01-14 21:49:58 +00:00
.module-conversation-list {
$normal-row-height: 72px;
2023-08-09 00:53:06 +00:00
@include NavTabs__Scroller;
2023-04-20 17:03:43 +00:00
padding-inline: 10px;
2021-08-26 21:05:43 +00:00
// list tiles in choose-group-members and compose extend to the edge
.module-left-pane--mode-choose-group-members &,
.module-left-pane--mode-compose & {
2023-04-20 17:03:43 +00:00
padding-inline: 0;
}
2021-10-14 20:21:10 +00:00
&--width-narrow {
2023-04-20 17:03:43 +00:00
padding-inline: 10px;
2021-10-14 20:21:10 +00:00
}
&__item {
&--archive-button {
@include button-reset;
2019-01-14 21:49:58 +00:00
align-items: center;
display: flex;
justify-content: center;
border-radius: 10px;
height: $normal-row-height;
line-height: $normal-row-height;
text-align: center;
width: 100%;
2023-04-20 17:03:43 +00:00
padding-inline: 18px;
display: flex;
2019-03-12 00:20:16 +00:00
@include light-theme {
color: $color-gray-60;
2019-03-12 00:20:16 +00:00
&:hover,
&:focus {
background-color: $color-gray-05;
}
}
@include dark-theme {
color: $color-gray-25;
&:hover,
&:focus {
background-color: $color-gray-75;
}
}
&__icon {
&::before {
display: block;
content: '';
width: 24px;
height: 24px;
@include light-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/archive/archive.svg',
$color-gray-60
);
}
@include dark-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/archive/archive.svg',
$color-gray-25
);
}
}
}
&__text {
@include font-body-1-bold;
2023-04-20 17:03:43 +00:00
margin-inline: 8px;
}
&__archived-count {
@include font-body-2-bold;
padding: 6px;
padding-top: 1px;
padding-bottom: 1px;
border-radius: 10px;
white-space: pre;
@include light-theme {
color: $color-gray-60;
background-color: $color-gray-05;
}
@include dark-theme {
color: $color-gray-25;
background-color: $color-gray-75;
}
}
.module-conversation-list--width-narrow & {
&__icon {
display: block;
width: 48px;
height: 48px;
padding: 12px;
}
&__text,
&__archived-count {
display: none;
}
}
}
2019-11-07 21:36:16 +00:00
&--contact-or-conversation {
$unread-indicator: '#{&}__unread-indicator';
@include button-reset;
2019-03-12 00:20:16 +00:00
2021-03-03 20:09:58 +00:00
align-items: center;
border-radius: 10px;
2021-03-03 20:09:58 +00:00
cursor: inherit;
display: flex;
flex-direction: row;
height: $normal-row-height;
2023-04-20 17:03:43 +00:00
margin-block: 2px;
margin-inline: 0;
padding-block: 8px;
padding-inline: 14px;
2021-03-03 20:09:58 +00:00
user-select: none;
width: 100%;
.module-conversation-list--width-narrow & {
2023-04-20 17:03:43 +00:00
padding-inline: 14px 0;
}
#{$unread-indicator} {
$size: 18px;
height: $size;
min-width: $size;
border-radius: 10px;
display: flex;
justify-content: center;
align-items: center;
.module-conversation-list--width-narrow & {
display: none;
}
@include light-theme {
background-color: $color-ultramarine;
}
@include dark-theme {
background-color: $color-ultramarine-dawn;
}
&--unread-messages,
&--marked-unread {
@include font-caption-bold;
text-align: center;
word-break: normal;
padding-inline: 4px;
line-height: 100%;
color: $color-white;
font-weight: 500;
}
&--unread-mentions__icon {
@include color-svg('../images/icons/v3/at/at.svg', $color-white);
width: 12px;
height: 12px;
}
}
2021-03-03 20:09:58 +00:00
&--is-button {
cursor: pointer;
&:disabled {
cursor: inherit;
}
2021-03-03 20:09:58 +00:00
}
&--is-checkbox {
cursor: pointer;
&--disabled {
cursor: not-allowed;
}
}
2021-03-03 20:09:58 +00:00
&:hover:not(:disabled, &--disabled, &--is-selected),
&:focus:not(:disabled, &--disabled, &--is-selected) {
@include light-theme {
background-color: $color-gray-05;
#{$unread-indicator} {
border-color: $color-gray-05;
2021-03-03 20:09:58 +00:00
}
}
@include dark-theme {
background-color: $color-gray-75;
#{$unread-indicator} {
border-color: $color-gray-75;
2021-03-03 20:09:58 +00:00
}
}
}
2019-03-12 00:20:16 +00:00
&--is-selected {
@include light-theme {
background-color: $color-gray-15;
}
@include dark-theme {
background-color: $color-gray-65;
}
}
&--is-selected &__avatar-container {
@include light-theme {
#{$unread-indicator} {
border-color: $color-gray-15;
}
}
@include dark-theme {
#{$unread-indicator} {
border-color: $color-gray-65;
}
}
}
&__avatar-container {
position: relative;
#{$unread-indicator} {
$border-width: 3px;
$size: 21px + $border-width;
@include rounded-corners;
border: $border-width solid transparent;
height: $size;
margin: 0;
min-width: $size;
position: absolute;
top: -(1px + $border-width);
display: none;
.module-conversation-list--width-narrow & {
display: flex;
}
@include light-theme {
border-color: $color-gray-02;
}
@include dark-theme {
border-color: $color-gray-80;
}
&--unread-messages,
&--marked-unread {
inset-inline-end: -(5px + $border-width);
}
&--unread-mentions {
inset-inline-start: -(5px + $border-width);
}
&--is-selected {
@include light-theme {
border-color: $color-gray-15;
}
@include dark-theme {
border-color: $color-gray-65;
}
}
}
}
&__content {
flex-grow: 1;
2023-04-20 17:03:43 +00:00
margin-inline-start: 12px;
display: flex;
flex-direction: column;
align-items: stretch;
2021-03-03 20:09:58 +00:00
overflow: hidden;
.module-conversation-list--width-narrow & {
2023-04-20 17:03:43 +00:00
margin-inline-start: 0;
}
2021-03-03 20:09:58 +00:00
&--disabled {
opacity: 0.5;
}
&__header {
display: flex;
flex-direction: row;
align-items: center;
.module-conversation-list--width-narrow & {
display: none;
}
&__name {
2021-10-14 15:48:48 +00:00
align-items: center;
display: flex;
flex-grow: 1;
flex-shrink: 1;
@include font-body-1-bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
@include light-theme {
color: $color-gray-90;
}
@include dark-theme {
color: $color-gray-05;
}
2021-10-14 15:48:48 +00:00
&__contact-name {
overflow: hidden;
text-overflow: ellipsis;
2023-05-04 18:04:22 +00:00
.ContactModal__official-badge {
position: relative;
top: 1px;
}
2021-10-14 15:48:48 +00:00
}
&__mute-icon {
$size: 14px;
height: $size;
margin-inline-start: 8px;
min-width: $size;
width: $size;
@include light-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/bell/bell-slash-bold.svg',
2021-10-14 15:48:48 +00:00
$color-gray-45
);
}
@include dark-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/bell/bell-slash-bold.svg',
2021-10-14 15:48:48 +00:00
$color-gray-25
);
}
}
}
&__date {
2022-01-26 23:05:26 +00:00
@include font-caption;
display: inline-block;
flex-shrink: 0;
2023-04-20 17:03:43 +00:00
margin-inline-start: 6px;
2022-01-26 23:05:26 +00:00
@include light-theme {
color: $color-gray-60;
}
@include dark-theme {
color: $color-gray-25;
}
}
}
&__message {
display: flex;
flex-direction: row;
justify-content: flex-end;
.module-conversation-list--width-narrow & {
align-items: center;
2021-10-14 20:21:10 +00:00
justify-content: flex-start;
}
&__text {
.module-conversation-list__item--contact-or-conversation--is-checkbox
& {
/* restrict the growth so it doesn't encroach on the checkbox */
-webkit-line-clamp: 1;
}
}
&__text {
flex-grow: 1;
flex-shrink: 1;
@include font-body-2;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
2023-04-20 17:03:43 +00:00
text-align: start;
@include light-theme {
color: $color-gray-60;
}
@include dark-theme {
color: $color-gray-25;
}
.module-conversation-list--width-narrow & {
display: none;
}
&--always-full-size {
height: 36px; // two lines
}
&__message-request {
@include font-body-2-bold;
@include light-theme {
color: $color-gray-60;
}
@include dark-theme {
color: $color-gray-25;
}
}
&__draft-prefix,
&__deleted-for-everyone {
font-style: italic;
2023-04-20 17:03:43 +00:00
margin-inline-end: 3px;
}
&__status-icon {
flex-shrink: 0;
margin-top: 4px;
width: 12px;
height: 12px;
display: inline-block;
2023-04-20 17:03:43 +00:00
margin-inline-start: 6px;
.module-conversation-list--width-narrow & {
display: none;
}
@mixin normal-status-icon($icon) {
@include light-theme {
2021-10-14 00:12:25 +00:00
@include color-svg($icon, $color-gray-45);
}
@include dark-theme {
2021-10-14 00:12:25 +00:00
@include color-svg($icon, $color-gray-25);
}
}
&--sending {
@include only-when-page-is-visible {
animation: rotate 4s linear infinite;
}
@include light-theme {
2023-05-04 18:04:22 +00:00
@include color-svg(
'../images/icons/v3/message_status/messagestatus-sending.svg',
$color-gray-60
);
}
@include dark-theme {
2023-05-04 18:04:22 +00:00
@include color-svg(
'../images/icons/v3/message_status/messagestatus-sending.svg',
$color-gray-45
);
}
}
&--sent {
@include normal-status-icon(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/message_status/messagestatus-sent.svg'
);
}
&--delivered {
2023-05-04 18:04:22 +00:00
@include normal-status-icon(
'../images/icons/v3/message_status/messagestatus-delivered.svg'
);
width: 18px;
}
2021-10-12 15:40:27 +00:00
&--read,
&--viewed {
2023-05-04 18:04:22 +00:00
@include normal-status-icon(
'../images/icons/v3/message_status/messagestatus-read.svg'
);
width: 18px;
}
&--error,
&--partial-sent {
@include light-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/error/error-circle.svg',
$color-accent-red
);
}
@include dark-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/error/error-circle.svg',
$color-accent-red
);
}
}
&--paused {
@include light-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/error/error-circle.svg',
$color-gray-60
);
}
@include dark-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/error/error-circle.svg',
$color-gray-45
);
}
}
}
&__message-search-result-contents {
display: -webkit-box;
white-space: initial;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
&__start-new-conversation {
@include font-body-1-italic;
}
}
}
&__unread-indicators {
display: flex;
flex-direction: row;
gap: 4px;
flex-shrink: 0;
margin-inline-start: 10px;
margin-top: 1px;
}
}
2021-03-03 20:09:58 +00:00
&__checkbox {
-webkit-appearance: none;
background: $color-white;
border-radius: 100%;
height: 20px;
2023-04-20 17:03:43 +00:00
margin-inline: 16px;
2021-03-03 20:09:58 +00:00
width: 20px;
min-width: 20px;
pointer-events: none;
@include light-theme {
border: 1px solid $color-gray-15;
}
@include dark-theme {
border: 1px solid $color-gray-80;
}
&:focus {
outline: none;
}
@include keyboard-mode {
&:focus {
border-width: 2px;
2021-05-28 16:15:17 +00:00
border-color: $color-ultramarine;
2021-03-03 20:09:58 +00:00
&:checked {
box-shadow: inset 0 0 0px 1px $color-white;
}
}
}
@include dark-keyboard-mode {
&:focus {
border-width: 2px;
2021-05-28 16:15:17 +00:00
border-color: $color-ultramarine-light;
2021-03-03 20:09:58 +00:00
&:checked {
box-shadow: inset 0 0 0px 1px $color-black;
}
}
}
2021-03-11 21:29:31 +00:00
&:disabled:not(:checked) {
2021-03-03 20:09:58 +00:00
opacity: 0.5;
}
&:checked {
2023-05-04 18:04:22 +00:00
$icon: '../images/icons/v3/check/check.svg';
2021-03-11 21:29:31 +00:00
2021-05-28 16:15:17 +00:00
background: $color-ultramarine;
2021-03-03 20:09:58 +00:00
display: flex;
align-items: center;
justify-content: center;
&::before {
content: '';
display: block;
2021-03-11 21:29:31 +00:00
@include color-svg($icon, $color-white);
2021-03-03 20:09:58 +00:00
width: 13px;
height: 13px;
}
2021-03-11 21:29:31 +00:00
@include light-theme {
&:disabled {
background: $color-gray-15;
}
}
@include dark-theme {
&:disabled {
background: $color-gray-45;
}
}
2021-03-03 20:09:58 +00:00
}
&--container {
2023-04-20 17:03:43 +00:00
margin-inline-start: 8px;
/* prevent sibling content from pushing this smaller (min-width: the "!important" of width) */
min-width: 20px;
}
2021-03-03 20:09:58 +00:00
}
}
&--header {
@include font-body-1-bold;
align-items: flex-end;
display: flex;
2021-08-11 16:23:21 +00:00
height: 100%;
overflow-x: hidden;
padding-bottom: 8px;
2023-04-20 17:03:43 +00:00
padding-inline-start: 16px;
text-overflow: ellipsis;
user-select: none;
white-space: nowrap;
@include dark-theme {
color: $color-gray-05;
}
.module-conversation-list--width-narrow & {
@include rounded-corners;
display: block;
height: 2px;
2023-04-20 17:03:43 +00:00
margin-block: 19px;
margin-inline: 14px 0;
padding-bottom: 0;
2021-10-14 20:21:10 +00:00
width: 48px;
// Hide the text, but keep it for screen readers.
color: transparent;
overflow: hidden;
text-indent: -99999px;
@include light-theme {
background: $color-black-alpha-12;
}
@include dark-theme {
background: $color-white-alpha-12;
}
}
}
&--spinner {
width: 100%;
padding: 10px;
text-align: center;
}
2019-10-04 18:06:17 +00:00
}
2019-03-12 00:20:16 +00:00
}
// Module: Left Pane
.module-left-pane {
2023-08-09 00:53:06 +00:00
display: flex;
flex-direction: column;
height: 100%;
2023-08-09 00:53:06 +00:00
width: 100%;
2021-03-03 20:09:58 +00:00
position: relative;
@include light-theme {
$background-color: $color-gray-02;
}
@include dark-theme {
$background-color: $color-gray-80;
}
2019-01-14 21:49:58 +00:00
}
2022-01-31 15:45:04 +00:00
.module-left-pane__dialogs {
&:first-child {
margin-top: 8px;
}
}
.module-left-pane__empty {
align-items: center;
display: flex;
height: 100%;
justify-content: center;
2023-04-20 17:03:43 +00:00
padding-block: 0;
padding-inline: 32px;
text-align: center;
.module-left-pane--width-narrow & {
display: none;
}
&--composer_icon {
align-items: center;
background-color: $color-gray-05;
border-radius: 100%;
display: inline-flex;
height: 28px;
justify-content: center;
margin-bottom: -2px;
2023-04-20 17:03:43 +00:00
margin-inline-start: 4px;
vertical-align: bottom;
width: 28px;
&--icon {
2023-05-04 18:04:22 +00:00
$icon: '../images/icons/v3/compose/compose.svg';
@include color-svg($icon, $color-gray-90);
display: inline-block;
height: 16px;
width: 16px;
}
}
}
.module-left-pane__header {
flex-grow: 0;
flex-shrink: 0;
user-select: none;
2019-11-07 21:36:16 +00:00
&__contents {
width: 100%;
display: inline-flex;
flex-direction: row;
align-items: center;
2023-08-09 00:53:06 +00:00
padding-block: 15px;
2019-10-04 18:06:17 +00:00
&__back-button {
@include button-reset;
2019-10-04 18:06:17 +00:00
2023-05-04 18:04:22 +00:00
margin-inline-start: 16px;
2023-05-04 18:04:22 +00:00
width: 20px;
height: 20px;
2021-03-03 20:09:58 +00:00
&:disabled {
cursor: not-allowed;
}
@include light-theme {
2023-04-20 17:03:43 +00:00
&:dir(ltr) {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/chevron/chevron-left.svg',
2023-04-20 17:03:43 +00:00
$color-gray-60
);
}
&:dir(rtl) {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/chevron/chevron-right.svg',
2023-04-20 17:03:43 +00:00
$color-gray-60
);
}
}
2023-04-20 17:03:43 +00:00
@include keyboard-mode {
&:dir(ltr) {
&:focus {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/chevron/chevron-left.svg',
2023-04-20 17:03:43 +00:00
$color-ultramarine
);
}
}
&:dir(rtl) {
&:focus {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/chevron/chevron-right.svg',
2023-04-20 17:03:43 +00:00
$color-ultramarine
);
}
}
}
@include dark-theme {
2023-04-20 17:03:43 +00:00
&:dir(ltr) {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/chevron/chevron-left.svg',
2023-04-20 17:03:43 +00:00
$color-gray-25
);
}
&:dir(rtl) {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/chevron/chevron-right.svg',
2023-04-20 17:03:43 +00:00
$color-gray-25
);
}
}
2023-04-20 17:03:43 +00:00
@include dark-keyboard-mode {
&:dir(ltr) {
&:hover {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/chevron/chevron-left.svg',
2023-04-20 17:03:43 +00:00
$color-ultramarine-light
);
}
}
&:dir(rtl) {
&:hover {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/chevron/chevron-right.svg',
2023-04-20 17:03:43 +00:00
$color-ultramarine-light
);
}
}
}
2019-10-04 18:06:17 +00:00
}
&__text {
@include font-body-1-bold;
2021-11-01 18:43:02 +00:00
flex-grow: 1;
2023-05-04 18:04:22 +00:00
padding-inline-end: 36px;
text-align: center;
@include light-theme {
color: $color-gray-90;
}
@include dark-theme {
color: $color-gray-05;
}
2019-10-04 18:06:17 +00:00
}
2019-03-12 00:20:16 +00:00
}
2021-03-03 20:09:58 +00:00
&__form {
display: flex;
flex-direction: column;
&__expire-timer {
display: flex;
flex-direction: row;
align-items: center;
2023-04-20 17:03:43 +00:00
margin-block: 0 16px;
margin-inline: 16px;
&__label {
2023-04-20 17:03:43 +00:00
margin-inline-end: 12px;
}
.module-disappearing-timer-select {
width: 144px;
}
}
2021-03-03 20:09:58 +00:00
}
2019-03-12 00:20:16 +00:00
}
2023-08-09 00:53:06 +00:00
.module-left-pane__startComposingIcon {
display: block;
width: 20px;
height: 20px;
@include light-theme {
@include color-svg(
'../images/icons/v3/compose/compose.svg',
$color-gray-75
);
}
@include dark-theme {
@include color-svg(
'../images/icons/v3/compose/compose.svg',
$color-gray-15
);
}
}
.module-left-pane__moreActionsIcon {
display: block;
width: 20px;
height: 20px;
@include light-theme {
@include color-svg('../images/icons/v3/more/more.svg', $color-black);
}
@include dark-theme {
@include color-svg('../images/icons/v3/more/more.svg', $color-gray-15);
}
}
.module-left-pane__archive-helper-text {
@include font-body-2;
2019-10-04 18:06:17 +00:00
flex-grow: 0;
flex-shrink: 0;
user-select: none;
padding: 1em;
2019-10-04 18:06:17 +00:00
@include light-theme {
color: $color-gray-60;
background-color: $color-gray-05;
}
@include dark-theme {
color: $color-gray-25;
background-color: $color-gray-75;
}
2019-03-12 00:20:16 +00:00
}
.module-left-pane__no-search-results,
.module-left-pane__compose-no-contacts {
flex-grow: 1;
margin-top: 27px;
2023-04-20 17:03:43 +00:00
padding-inline: 1em;
2019-11-07 21:36:16 +00:00
width: 100%;
text-align: center;
outline: none;
}
2019-11-07 21:36:16 +00:00
.module-left-pane__no-search-results__sms-only {
margin-top: 12px;
@include light-theme {
color: $color-gray-60;
}
@include dark-theme {
color: $color-gray-25;
}
}
.module-left-pane__compose-search-form {
&__input {
flex-grow: 1;
2019-10-04 18:06:17 +00:00
}
2019-01-14 21:49:58 +00:00
}
.module-left-pane__list--measure {
flex-grow: 1;
flex-shrink: 1;
outline: none;
}
2019-10-04 18:06:17 +00:00
.module-left-pane__list--wrapper {
position: relative;
}
2019-10-04 18:06:17 +00:00
.module-left-pane__list {
position: absolute;
outline: none;
2019-01-14 21:49:58 +00:00
}
2021-03-03 20:09:58 +00:00
.module-left-pane__footer {
bottom: 0;
display: flex;
flex-direction: row;
justify-content: flex-end;
2023-04-20 17:03:43 +00:00
inset-inline-start: 0;
2021-03-03 20:09:58 +00:00
padding: 12px;
position: absolute;
width: 100%;
@include light-theme {
background: linear-gradient(transparent, $color-gray-02);
}
@include dark-theme {
background: linear-gradient(transparent, $color-gray-80);
}
}
.module-left-pane__resize-grab-area {
position: absolute;
width: 8px;
height: 100%;
2023-04-20 17:03:43 +00:00
inset-inline-end: -8px;
top: 0;
2021-12-01 23:13:09 +00:00
z-index: $z-index-above-base;
cursor: col-resize;
}
// Module: Timeline
.module-timeline {
display: flex;
height: 100%;
overflow: hidden;
}
.module-timeline--disabled {
user-select: none;
}
.module-timeline__messages__container {
flex: 1 1;
overflow-x: hidden;
overflow-y: overlay;
display: flex;
flex-direction: column;
}
.module-timeline__messages {
display: flex;
flex-direction: column;
flex: 1 1;
padding-bottom: 6px;
2022-03-09 20:05:07 +00:00
position: relative;
justify-content: flex-end;
// This is a modified version of ["Pin Scrolling to Bottom"][0].
// [0]: https://css-tricks.com/books/greatest-css-tricks/pin-scrolling-to-bottom/
&::after {
content: '';
height: 1px; // Always show the element to not mess with the height of the scroll area
display: block;
}
&--have-newest:not(&--scroll-locked) {
& > * {
overflow-anchor: none;
}
&::after {
overflow-anchor: auto;
}
}
2022-03-09 20:05:07 +00:00
&--have-oldest {
justify-content: flex-start;
}
2022-03-09 20:05:07 +00:00
&__at-bottom-detector {
position: absolute;
bottom: 0;
}
}
.module-timeline__scrolldown-buttons {
z-index: $z-index-scroll-down-button;
position: absolute;
inset-inline-end: 16px;
bottom: 12px;
display: flex;
flex-direction: column;
gap: 14px;
}
.ReactVirtualized__List {
outline: none;
}
2019-05-24 23:58:27 +00:00
// Module: CompositionPopper
2019-05-24 23:58:27 +00:00
%module-composition-popper {
width: 332px;
2023-04-05 20:48:00 +00:00
border-radius: 4px;
2019-05-24 23:58:27 +00:00
margin-bottom: 6px;
2021-12-02 23:08:40 +00:00
z-index: $z-index-context-menu;
user-select: none;
overflow: hidden;
@include popper-shadow();
@include light-theme {
background: $color-gray-02;
2019-05-24 23:58:27 +00:00
::-webkit-scrollbar-thumb {
border: 2px solid $color-gray-02;
}
}
@include dark-theme {
background: $color-gray-75;
2019-05-24 23:58:27 +00:00
::-webkit-scrollbar-thumb {
border: 2px solid $color-gray-75;
2019-05-24 23:58:27 +00:00
}
}
}
2019-05-24 23:58:27 +00:00
// Module: StickerPicker
.module-sticker-picker {
@extend %module-composition-popper;
height: 400px;
display: grid;
grid-template-rows: 44px 1fr;
grid-template-columns: 1fr;
2021-12-02 23:08:40 +00:00
z-index: $z-index-context-menu;
2019-05-24 23:58:27 +00:00
}
.module-sticker-picker__header {
display: flex;
flex-direction: row;
2023-04-20 17:03:43 +00:00
padding-block: 0;
padding-inline: 8px;
justify-content: flex-start;
align-items: center;
}
.module-sticker-picker__header__packs {
width: 288px;
overflow: hidden;
position: relative;
&__slider {
display: flex;
flex-direction: row;
2023-04-20 17:03:43 +00:00
/* stylelint-disable-next-line declaration-property-value-disallowed-list */
transform: translateX(0);
transition: transform 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
}
2023-03-01 19:00:50 +00:00
.module-sticker-picker__recents--title {
color: $color-gray-05;
}
.module-sticker-picker__header__button {
width: 28px;
height: 28px;
border: 0;
border-radius: 8px;
display: flex;
justify-content: center;
align-items: center;
background: none;
2023-04-20 17:03:43 +00:00
margin-inline-end: 4px;
outline: none;
&:active,
&:focus {
@include keyboard-mode {
2019-11-07 21:36:16 +00:00
background: $color-gray-05;
}
@include dark-keyboard-mode {
2019-11-07 21:36:16 +00:00
background: $color-gray-60;
}
}
&--selected {
@include light-theme {
2019-11-07 21:36:16 +00:00
background: $color-gray-15;
}
@include dark-theme {
2019-11-07 21:36:16 +00:00
background: $color-gray-45;
}
}
&--recents,
&--add-pack {
&::after {
content: '';
display: block;
min-width: 20px;
min-height: 20px;
}
}
&--recents {
&::after {
@include light-theme {
2019-10-04 18:06:17 +00:00
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/recent/recent.svg',
2019-10-04 18:06:17 +00:00
$color-gray-60
);
}
@include dark-theme {
2019-10-04 18:06:17 +00:00
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/recent/recent.svg',
2019-10-04 18:06:17 +00:00
$color-gray-25
);
}
}
}
&--add-pack {
&::after {
@include light-theme {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/plus/plus.svg', $color-gray-60);
}
@include dark-theme {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/plus/plus.svg', $color-gray-25);
}
}
}
&--prev-page,
&--next-page {
top: 0;
margin: 0;
border-radius: 0;
&::after {
content: '';
display: block;
2019-10-04 18:06:17 +00:00
min-width: 16px;
min-height: 16px;
}
@include light-theme {
background: $color-gray-02;
}
@include dark-theme {
background: $color-gray-75;
}
}
&--prev-page {
position: absolute;
2023-04-20 17:03:43 +00:00
inset-inline-start: 0;
2023-04-20 17:03:43 +00:00
&:dir(ltr) {
&::after {
@include light-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/chevron/chevron-left.svg',
2023-04-20 17:03:43 +00:00
$color-gray-60
);
}
@include dark-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/chevron/chevron-left.svg',
2023-04-20 17:03:43 +00:00
$color-gray-25
);
}
}
2023-04-20 17:03:43 +00:00
}
&:dir(rtl) {
&::after {
@include light-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/chevron/chevron-right.svg',
2023-04-20 17:03:43 +00:00
$color-gray-60
);
}
@include dark-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/chevron/chevron-right.svg',
2023-04-20 17:03:43 +00:00
$color-gray-25
);
}
}
}
}
&--next-page {
position: absolute;
2023-04-20 17:03:43 +00:00
inset-inline-end: 0;
2023-04-20 17:03:43 +00:00
&:dir(ltr) {
&::after {
@include light-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/chevron/chevron-right.svg',
2023-04-20 17:03:43 +00:00
$color-gray-60
);
}
@include dark-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/chevron/chevron-right.svg',
2023-04-20 17:03:43 +00:00
$color-gray-25
);
}
}
2023-04-20 17:03:43 +00:00
}
&:dir(rtl) {
&::after {
@include light-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/chevron/chevron-left.svg',
2023-04-20 17:03:43 +00:00
$color-gray-60
);
}
@include dark-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/chevron/chevron-left.svg',
2023-04-20 17:03:43 +00:00
$color-gray-25
);
}
}
}
}
&--error {
position: relative;
&::before {
display: block;
content: '';
width: 12px;
height: 12px;
position: absolute;
2023-04-20 17:03:43 +00:00
inset-inline-start: 14px;
top: 2px;
2019-10-04 18:06:17 +00:00
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/error/error-circle.svg',
2019-10-04 18:06:17 +00:00
$color-accent-red
);
}
}
&--hint {
position: relative;
&::before {
display: block;
content: '';
position: absolute;
top: 0;
2023-04-20 17:03:43 +00:00
inset-inline-end: 0;
width: 14px;
height: 14px;
border-radius: 7px;
2021-05-28 16:15:17 +00:00
background: $color-ultramarine;
}
}
}
.module-sticker-picker__header__button__image {
width: 20px;
height: 20px;
object-fit: contain;
}
.module-sticker-picker__header__button__image--placeholder {
min-width: 20px;
min-height: 20px;
max-width: 20px;
max-height: 20px;
2019-10-04 18:06:17 +00:00
background-color: $color-gray-05;
}
.module-sticker-picker__body {
position: relative;
2023-03-01 19:00:50 +00:00
&__grid {
display: grid;
grid-gap: 8px;
grid-template-columns: repeat(4, 1fr);
grid-auto-rows: 68px;
}
&__content {
width: 332px;
height: 356px;
2023-04-20 17:03:43 +00:00
padding-block: 8px 16px;
padding-inline: 13px;
overflow-y: auto;
&--under-text {
height: 320px;
}
&--under-long-text {
height: 304px;
}
}
&__cell {
border: none;
background: none;
padding: 0;
width: 68px;
height: 68px;
display: flex;
justify-content: center;
align-items: center;
@include mouse-mode {
outline: none;
}
&__image,
&__placeholder {
width: 100%;
height: 100%;
object-fit: contain;
}
&__placeholder {
border-radius: 4px;
@include light-theme() {
background-color: $color-gray-05;
}
@include dark-theme() {
background-color: $color-gray-60;
}
}
}
&--empty {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
&__text {
2019-10-04 18:06:17 +00:00
@include font-body-1-bold;
text-align: center;
2023-04-20 17:03:43 +00:00
padding-block: 8px 12px;
padding-inline: 0 16px;
@include light-theme() {
color: $color-gray-60;
}
@include dark-theme() {
color: $color-gray-25;
}
&:only-child {
2023-04-20 17:03:43 +00:00
padding-block: 0 28px;
padding-inline: 0; // header height to offset the text so it is centered in the whole picker
}
&--error {
@include light-theme() {
2019-10-04 18:06:17 +00:00
color: $color-accent-red;
}
@include dark-theme() {
2019-10-04 18:06:17 +00:00
color: $color-accent-red;
}
}
&--hint {
@include light-theme() {
2021-05-28 16:15:17 +00:00
color: $color-ultramarine;
}
@include dark-theme() {
2021-05-28 16:15:17 +00:00
color: $color-ultramarine-light;
}
}
&--pin {
2023-04-20 17:03:43 +00:00
padding-block: 8px 12px;
padding-inline: 0px 16px;
position: absolute;
top: 0;
}
}
}
2023-03-01 19:00:50 +00:00
.module-sticker-picker__time--digital {
@include time-fonts;
color: $color-white;
font-size: 28px;
line-height: 0px;
}
.module-sticker-picker__time--analog {
background: url(../images/analog-time/Arabic.svg) center no-repeat;
background-size: contain;
height: 64px;
position: relative;
width: 64px;
}
.module-sticker-picker__time--analog__hour {
background: url(../images/analog-time/Arabic-hour.svg) center no-repeat;
height: 14px;
2023-04-20 17:03:43 +00:00
inset-inline-start: 50%;
margin-inline-start: -1px;
2023-03-01 19:00:50 +00:00
margin-top: -14px;
position: absolute;
top: 50%;
transform-origin: 50% 100%;
width: 2px;
}
.module-sticker-picker__time--analog__minute {
background: url(../images/analog-time/Arabic-minute.svg) center no-repeat;
height: 22px;
2023-04-20 17:03:43 +00:00
inset-inline-start: 50%;
margin-inline-start: -1px;
2023-03-01 19:00:50 +00:00
margin-top: -22px;
position: absolute;
top: 50%;
transform-origin: 50% 100%;
width: 2px;
}
// Module: Sticker button (launches the sticker picker)
.sticker-button-wrapper {
height: 36px;
display: flex;
justify-content: center;
align-items: center;
2023-04-20 17:03:43 +00:00
margin-inline-start: 6px;
}
.module-sticker-button__button {
border: 0;
2022-06-15 17:53:08 +00:00
border-radius: 4px;
background: none;
width: 32px;
height: 32px;
display: flex;
justify-content: center;
align-items: center;
2022-06-13 23:37:29 +00:00
@include keyboard-mode {
&:focus {
2022-06-15 17:53:08 +00:00
outline: 2px solid $color-ultramarine;
2022-06-13 23:37:29 +00:00
}
}
outline: none;
2019-08-07 00:40:25 +00:00
&::after {
display: block;
content: '';
2023-05-04 18:04:22 +00:00
width: 20px;
height: 20px;
2019-05-24 23:58:27 +00:00
flex-shrink: 0;
@include light-theme {
2019-10-04 18:06:17 +00:00
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/sticker/sticker.svg',
$color-gray-75
2019-10-04 18:06:17 +00:00
);
}
@include dark-theme {
2019-10-04 18:06:17 +00:00
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/sticker/sticker.svg',
$color-gray-15
2019-10-04 18:06:17 +00:00
);
}
}
&--active {
@include light-theme() {
2019-10-04 18:06:17 +00:00
background: $color-gray-05;
}
@include dark-theme() {
background: $color-gray-75;
}
opacity: 1;
}
}
.module-sticker-button__tooltip {
2019-11-07 21:36:16 +00:00
@include button-reset;
height: 34px;
display: flex;
justify-content: center;
align-items: center;
2023-04-20 17:03:43 +00:00
padding-block: 7px;
padding-inline: 12px;
border-radius: 8px;
margin-bottom: 6px;
2021-12-02 23:08:40 +00:00
z-index: $z-index-tooltip;
@include light-theme {
background: $color-white;
}
@include dark-theme {
background: $color-gray-75;
}
@include popper-shadow();
&__triangle {
position: absolute;
width: 0;
height: 0;
border-style: solid;
border-width: 8px 8px 0 8px;
@include light-theme {
border-color: $color-white transparent transparent transparent;
}
@include dark-theme {
border-color: $color-gray-75 transparent transparent transparent;
}
&--top-end {
top: 34px;
}
&--introduction {
top: 72px;
}
}
&__image {
width: 20px;
height: 20px;
object-fit: contain;
}
&__image-placeholder {
width: 20px;
height: 20px;
2019-10-04 18:06:17 +00:00
background-color: $color-gray-05;
}
&__text {
2023-04-20 17:03:43 +00:00
margin-inline-start: 4px;
cursor: default;
@include light-theme {
color: $color-gray-90;
}
@include dark-theme {
color: $color-gray-05;
}
&__title {
2019-10-04 18:06:17 +00:00
font-weight: bold;
}
}
&--introduction {
width: 420px;
height: 72px;
display: flex;
flex-direction: row;
2019-12-12 03:10:37 +00:00
&__image {
width: 52px;
height: 52px;
}
&__meta {
flex-grow: 1;
2023-04-20 17:03:43 +00:00
padding-block: 0;
padding-inline: 12px;
display: flex;
flex-direction: column;
justify-content: center;
@include light-theme {
color: $color-gray-90;
}
@include dark-theme {
color: $color-gray-05;
}
&__title {
margin: 0;
2019-10-04 18:06:17 +00:00
@include font-body-1-bold;
height: 16px;
}
&__subtitle {
margin-top: 3px;
height: 16px;
}
}
&__close {
flex-shrink: 1;
height: 100%;
&__button {
2023-05-04 18:04:22 +00:00
width: 16px;
height: 16px;
border: none;
@include light-theme {
2023-05-04 18:04:22 +00:00
@include color-svg(
'../images/icons/v3/x/x-compact.svg',
$color-gray-60
);
}
@include dark-theme {
2023-05-04 18:04:22 +00:00
@include color-svg(
'../images/icons/v3/x/x-compact.svg',
$color-gray-05
);
}
}
}
}
}
2019-05-24 23:58:27 +00:00
// Module: Emoji Picker
%module-emoji-picker--ribbon {
height: 44px;
display: flex;
flex-direction: row;
align-items: center;
}
.module-emoji-picker {
@extend %module-composition-popper;
height: 428px;
display: grid;
grid-template-rows: 44px 1fr;
grid-template-columns: 1fr;
&__header {
@extend %module-emoji-picker--ribbon;
justify-content: space-between;
2023-04-20 17:03:43 +00:00
margin-block: 0;
margin-inline: 12px;
2019-05-24 23:58:27 +00:00
&__search-field {
flex-grow: 1;
2023-04-20 17:03:43 +00:00
margin-inline-start: 8px;
2019-05-24 23:58:27 +00:00
position: relative;
2019-10-04 18:06:17 +00:00
@include font-body-2;
2019-05-24 23:58:27 +00:00
&::after {
display: block;
content: '';
width: 16px;
height: 16px;
position: absolute;
2023-04-20 17:03:43 +00:00
inset-inline-start: 8px;
2019-05-24 23:58:27 +00:00
top: 6px;
@include light-theme {
2019-10-04 18:06:17 +00:00
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/search/search-compact.svg',
2019-10-04 18:06:17 +00:00
$color-gray-60
);
2019-05-24 23:58:27 +00:00
}
@include dark-theme {
2019-10-04 18:06:17 +00:00
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/search/search-compact.svg',
2019-10-04 18:06:17 +00:00
$color-gray-25
);
2019-05-24 23:58:27 +00:00
}
}
&__input {
width: 100%;
height: 28px;
2019-10-04 18:06:17 +00:00
@include font-body-1;
2019-05-24 23:58:27 +00:00
line-height: 28px;
2019-10-04 18:06:17 +00:00
2019-05-24 23:58:27 +00:00
border-radius: 17px;
border-width: 1px;
border-style: solid;
2023-04-20 17:03:43 +00:00
padding-block: 0;
padding-inline: 30px 8px;
2019-05-24 23:58:27 +00:00
&:focus {
outline: none;
}
@include light-theme {
background: $color-white;
color: $color-gray-90;
border-color: $color-gray-60;
&:focus {
2021-05-28 16:15:17 +00:00
border-color: $color-ultramarine;
2019-05-24 23:58:27 +00:00
}
2019-08-07 00:40:25 +00:00
&:placeholder {
2019-05-24 23:58:27 +00:00
color: $color-gray-45;
}
}
@include dark-theme {
border-color: $color-gray-25;
background: $color-gray-75;
color: $color-gray-05;
&:focus {
2021-05-28 16:15:17 +00:00
border-color: $color-ultramarine;
2019-05-24 23:58:27 +00:00
}
2019-08-07 00:40:25 +00:00
&:placeholder {
2019-05-24 23:58:27 +00:00
color: $color-gray-45;
}
}
}
}
}
&__footer {
@extend %module-emoji-picker--ribbon;
justify-content: center;
&__skin-tones {
align-items: center;
display: flex;
flex-direction: row;
flex-grow: 1;
justify-content: center;
}
&__settings-spacer {
width: 28px;
2023-04-20 17:03:43 +00:00
margin-inline-end: 12px;
}
2019-05-24 23:58:27 +00:00
}
&__button {
width: 28px;
height: 28px;
border: none;
border-radius: 8px;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
background: none;
@include mouse-mode {
outline: none;
}
2019-05-24 23:58:27 +00:00
&--footer {
&:not(:last-of-type) {
2023-04-20 17:03:43 +00:00
margin-inline-end: 4px;
}
}
&--settings {
2023-04-20 17:03:43 +00:00
margin-inline-start: 12px;
border-radius: 100%;
@include light-theme {
background: $color-white;
box-shadow: 0px 0px 4px $color-black-alpha-20;
}
@include dark-theme {
background: $color-gray-65;
}
&::before {
display: block;
width: 20px;
height: 20px;
content: '';
@include light-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/settings/settings.svg',
$color-gray-75
);
}
@include dark-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/settings/settings.svg',
$color-gray-25
);
}
2019-05-24 23:58:27 +00:00
}
}
&--selected {
@include light-theme {
2019-10-04 18:06:17 +00:00
background: $color-gray-05;
2019-05-24 23:58:27 +00:00
}
@include dark-theme {
background: $color-gray-60;
}
}
&--icon {
display: flex;
justify-content: center;
align-items: center;
&::after {
display: block;
content: '';
width: 20px;
height: 20px;
}
&--search {
&::after {
@include light-theme {
2019-10-04 18:06:17 +00:00
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/search/search.svg',
2019-10-04 18:06:17 +00:00
$color-gray-60
);
2019-05-24 23:58:27 +00:00
}
@include dark-theme {
2019-10-04 18:06:17 +00:00
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/search/search.svg',
2019-10-04 18:06:17 +00:00
$color-gray-25
);
2019-05-24 23:58:27 +00:00
}
}
}
&--close {
&::after {
@include light-theme {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/x/x.svg', $color-gray-60);
2019-05-24 23:58:27 +00:00
}
@include dark-theme {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/x/x.svg', $color-gray-25);
2019-05-24 23:58:27 +00:00
}
}
}
&--recents {
&::after {
@include light-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/recent/recent.svg',
2019-05-24 23:58:27 +00:00
$color-gray-60
);
}
@include dark-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/recent/recent.svg',
2019-05-24 23:58:27 +00:00
$color-gray-25
);
}
}
}
&--emoji {
&::after {
@include light-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/emoji/emoji.svg',
2019-05-24 23:58:27 +00:00
$color-gray-60
);
}
@include dark-theme {
2019-10-04 18:06:17 +00:00
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/emoji/emoji.svg',
2019-10-04 18:06:17 +00:00
$color-gray-25
);
2019-05-24 23:58:27 +00:00
}
}
}
$categories: animal food activity travel object symbol flag;
@each $cat in $categories {
&--#{$cat} {
&::after {
@include light-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/emoji/emoji-#{$cat}.svg',
2019-05-24 23:58:27 +00:00
$color-gray-60
);
}
@include dark-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/emoji/emoji-#{$cat}.svg',
2019-05-24 23:58:27 +00:00
$color-gray-25
);
}
}
}
}
}
}
&__body {
2023-04-20 17:03:43 +00:00
padding-block: 8px 0;
padding-inline: 12px 16px;
2019-11-07 21:36:16 +00:00
outline: none;
2019-05-24 23:58:27 +00:00
&__emoji-cell {
display: flex;
flex-direction: row;
justify-content: center;
align-items: flex-start;
}
&--empty {
display: flex;
padding: 0;
justify-content: center;
align-items: center;
2019-12-17 20:25:57 +00:00
@include font-body-1;
2019-05-24 23:58:27 +00:00
@include light-theme {
color: $color-gray-60;
}
@include dark-theme {
color: $color-gray-25;
}
}
}
}
// Module: EmojiButton
.emoji-button-wrapper {
height: 36px;
display: flex;
justify-content: center;
align-items: center;
2023-04-20 17:03:43 +00:00
margin-block: 0;
margin-inline: 6px;
2019-05-24 23:58:27 +00:00
padding-top: 4px;
}
.module-emoji-button__button {
border: 0;
2022-06-15 17:53:08 +00:00
border-radius: 4px;
2019-05-24 23:58:27 +00:00
background: none;
width: 32px;
height: 32px;
display: flex;
justify-content: center;
align-items: center;
2022-06-13 23:37:29 +00:00
@include keyboard-mode {
&:focus {
2022-06-15 17:53:08 +00:00
outline: 2px solid $color-ultramarine;
2022-06-13 23:37:29 +00:00
}
2019-05-24 23:58:27 +00:00
}
outline: none;
2019-08-07 00:40:25 +00:00
&::after {
2019-05-24 23:58:27 +00:00
display: block;
content: '';
2023-05-04 18:04:22 +00:00
width: 20px;
height: 20px;
2019-05-24 23:58:27 +00:00
flex-shrink: 0;
@include light-theme {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/emoji/emoji.svg', $color-gray-75);
2019-05-24 23:58:27 +00:00
}
@include dark-theme {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/emoji/emoji.svg', $color-gray-15);
2019-05-24 23:58:27 +00:00
}
}
2022-10-18 17:12:02 +00:00
&--profile-editor::after {
@include light-theme {
2023-05-05 16:23:43 +00:00
@include color-svg(
'../images/icons/v3/emoji/emoji-plus.svg',
$color-gray-75
);
2022-10-18 17:12:02 +00:00
}
@include dark-theme {
2023-05-05 16:23:43 +00:00
@include color-svg(
'../images/icons/v3/emoji/emoji-plus.svg',
$color-gray-15
);
2022-10-18 17:12:02 +00:00
}
}
2021-07-19 19:26:06 +00:00
&--has-emoji {
opacity: 1;
&::after {
display: none;
}
}
2019-05-24 23:58:27 +00:00
&--active {
@include light-theme() {
2019-10-04 18:06:17 +00:00
background: $color-gray-05;
2019-05-24 23:58:27 +00:00
}
@include dark-theme() {
background: $color-gray-75;
}
opacity: 1;
}
}
// Module: Emoji
@mixin emoji-size($size) {
2019-05-24 23:58:27 +00:00
&--#{$size} {
width: $size;
height: $size;
&--inline {
display: inline-block;
vertical-align: bottom;
background-size: $size $size;
}
}
&__image--#{$size} {
width: $size;
height: $size;
2023-04-20 17:03:43 +00:00
/* stylelint-disable-next-line declaration-property-value-disallowed-list */
transform: translate3d(0, 0, 0);
vertical-align: baseline;
2019-05-24 23:58:27 +00:00
}
}
.module-emoji {
display: flex;
justify-content: center;
align-items: center;
color: transparent;
font-family: auto;
@include light-theme() {
caret-color: $color-gray-90;
}
@include dark-theme() {
caret-color: $color-gray-05;
}
2019-05-24 23:58:27 +00:00
@include emoji-size(16px);
@include emoji-size(18px);
2019-05-24 23:58:27 +00:00
@include emoji-size(20px);
2019-12-17 20:25:57 +00:00
@include emoji-size(24px);
2019-05-24 23:58:27 +00:00
@include emoji-size(28px);
@include emoji-size(32px);
2020-01-23 23:57:37 +00:00
@include emoji-size(48px);
2019-05-24 23:58:27 +00:00
@include emoji-size(64px);
@include emoji-size(66px);
}
// Module: Last Seen Indicator
.module-last-seen-indicator {
padding-top: 25px;
padding-bottom: 35px;
2021-07-12 19:58:45 +00:00
user-select: none;
}
.module-last-seen-indicator__bar {
2019-10-04 18:06:17 +00:00
background-color: $color-gray-45;
width: 100%;
2019-10-04 18:06:17 +00:00
height: 1px;
}
.module-last-seen-indicator__text {
margin-top: 3px;
2019-10-04 18:06:17 +00:00
@include font-body-2-bold;
text-align: center;
2019-10-04 18:06:17 +00:00
@include light-theme {
color: $color-gray-90;
}
@include dark-theme {
color: $color-gray-05;
}
}
2020-08-27 00:03:42 +00:00
/* Calling: Device Selection */
.module-calling-device-selection {
position: relative;
}
.module-calling-device-selection__close-button {
@include button-reset;
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/x/x.svg', $color-gray-15);
2020-08-27 00:03:42 +00:00
height: 24px;
2020-08-27 00:03:42 +00:00
position: absolute;
2023-04-20 17:03:43 +00:00
inset-inline-end: 5px;
2020-08-27 00:03:42 +00:00
top: 0;
width: 24px;
2021-12-01 23:13:09 +00:00
z-index: $z-index-above-base;
2020-08-27 00:03:42 +00:00
@include keyboard-mode {
&:focus,
&:active,
&:hover {
background-color: $color-ultramarine;
2020-08-27 00:03:42 +00:00
}
}
}
.module-calling-device-selection__title {
@include font-title-2;
margin-top: 12px;
margin-bottom: 20px;
}
.module-calling-device-selection__label {
@include font-body-1-bold;
display: block;
margin-bottom: 16px;
}
.module-calling-device-selection__select {
margin-bottom: 20px;
position: relative;
}
// Module: GroupV1 Disabled Actions
.module-group-v1-disabled-actions {
2023-04-20 17:03:43 +00:00
padding-block: 8px 12px;
padding-inline: 16px;
max-width: 650px;
2023-04-20 17:03:43 +00:00
margin-inline: auto;
@include light-theme {
background: $color-white;
}
@include dark-theme {
background: $color-gray-95;
}
}
.module-group-v1-disabled-actions__message {
@include font-body-2;
text-align: center;
margin-bottom: 12px;
@include light-theme {
color: $color-gray-60;
}
@include dark-theme {
color: $color-gray-25;
}
}
.module-group-v1-disabled-actions__message__learn-more {
text-decoration: none;
}
.module-group-v1-disabled-actions__buttons {
display: flex;
flex-direction: row;
justify-content: center;
}
.module-group-v1-disabled-actions__buttons__button {
@include button-reset;
@include font-body-1-bold;
border-radius: 4px;
padding: 8px;
2023-04-20 17:03:43 +00:00
padding-inline: 30px;
@include button-primary;
}
// Module: GroupV2 Pending Approval Actions
.module-group-v2-pending-approval-actions {
2023-04-20 17:03:43 +00:00
padding-block: 8px 12px;
padding-inline: 16px;
max-width: 650px;
2023-04-20 17:03:43 +00:00
margin-inline: auto;
@include light-theme {
background: $color-white;
}
@include dark-theme {
background: $color-gray-95;
}
}
.module-group-v2-pending-approval-actions__message {
@include font-body-2;
text-align: center;
margin-bottom: 12px;
@include light-theme {
color: $color-gray-60;
}
@include dark-theme {
color: $color-gray-25;
}
}
.module-group-v2-pending-approval-actions__buttons {
display: flex;
flex-direction: row;
justify-content: center;
}
.module-group-v2-pending-approval-actions__buttons__button {
@include button-reset;
@include font-body-1-bold;
border-radius: 4px;
padding: 8px;
2023-04-20 17:03:43 +00:00
padding-inline: 30px;
@include button-secondary;
@include light-theme {
color: $color-gray-60;
background-color: $color-gray-05;
}
}
2020-11-20 17:30:45 +00:00
// Module: Modal Host
.module-modal-host__overlay {
background: $color-black-alpha-40;
2022-07-05 16:44:53 +00:00
width: var(--window-width);
height: var(--window-height);
2023-04-20 17:03:43 +00:00
inset-inline-start: var(--window-border);
2022-07-05 16:44:53 +00:00
top: var(--titlebar-height);
position: fixed;
z-index: $z-index-modal-host;
2021-10-14 16:52:42 +00:00
}
2020-11-20 17:30:45 +00:00
2022-03-04 21:14:52 +00:00
.module-modal-host__overlay-container {
2020-11-20 17:30:45 +00:00
display: flex;
flex-direction: row;
2022-07-05 16:44:53 +00:00
width: var(--window-width);
height: var(--window-height);
2023-04-20 17:03:43 +00:00
inset-inline-start: var(--window-border);
2022-07-05 16:44:53 +00:00
top: var(--titlebar-height);
2020-11-20 17:30:45 +00:00
justify-content: center;
align-items: center;
2020-11-20 17:30:45 +00:00
overflow: hidden;
padding: 20px;
2022-07-05 16:44:53 +00:00
position: fixed;
z-index: $z-index-modal-host;
2020-11-20 17:30:45 +00:00
}
.module-modal-host__width-container {
max-width: 360px;
width: 95%;
}
.module-modal-host--on-top-of-everything {
$loading-screen-modal-overlay: $z-index-on-top-of-everything + 1;
.module-modal-host__overlay,
.module-modal-host__overlay-container {
z-index: $loading-screen-modal-overlay;
}
}
// Module: GroupV2 Join Dialog
.module-group-v2-join-dialog {
@include font-body-1;
border-radius: 8px;
width: 360px;
2023-04-20 17:03:43 +00:00
margin-inline: auto;
padding: 20px;
position: relative;
@include light-theme {
background-color: $color-white;
}
@include dark-theme {
background-color: $color-gray-95;
}
}
.module-group-v2-join-dialog__close-button {
@include button-reset;
position: absolute;
2023-04-20 17:03:43 +00:00
inset-inline-end: 12px;
top: 12px;
height: 24px;
width: 24px;
@include light-theme {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/x/x.svg', $color-gray-75);
}
@include dark-theme {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/x/x.svg', $color-gray-15);
}
&:focus {
@include keyboard-mode {
2021-05-28 16:15:17 +00:00
background-color: $color-ultramarine;
}
@include dark-keyboard-mode {
2021-05-28 16:15:17 +00:00
background-color: $color-ultramarine-light;
}
}
}
.module-group-v2-join-dialog__title {
@include font-title-2;
text-align: center;
margin-top: 12px;
margin-bottom: 2px;
}
.module-group-v2-join-dialog__avatar {
text-align: center;
}
.module-group-v2-join-dialog__metadata {
2021-06-02 00:24:28 +00:00
color: $color-gray-60;
text-align: center;
}
.module-group-v2-join-dialog__prompt {
margin-top: 40px;
2021-06-02 00:24:28 +00:00
&--approval {
@include font-subtitle;
color: $color-gray-45;
margin-top: 40px;
}
}
.module-group-v2-join-dialog__buttons {
margin-top: 16px;
text-align: center;
display: flex;
}
.module-group-v2-join-dialog__button {
// Start flex basis at zero so text width doesn't affect layout. We want the buttons
// evenly distributed.
flex: 1 1 0px;
&:not(:first-of-type) {
2023-04-20 17:03:43 +00:00
margin-inline-start: 16px;
}
}
2021-06-02 00:24:28 +00:00
.module-group-v2-join-dialog__description {
color: $color-gray-60;
margin-top: 12px;
}
2020-10-06 17:06:34 +00:00
// Module: Progress Dialog
.module-progress-dialog {
width: 138px;
padding: 18px;
border-radius: 8px;
@include popper-shadow();
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
@include light-theme() {
background: $color-white;
color: $color-gray-90;
}
@include dark-theme() {
background: $color-gray-80;
color: $color-gray-05;
}
}
.module-progress-dialog__spinner {
padding: 10px;
}
.module-progress-dialog__text {
@include font-body-2;
}
.module-progress-dialog__overlay {
background: $color-black-alpha-40;
position: fixed;
2023-04-20 17:03:43 +00:00
inset-inline-start: var(--window-border);
2022-07-05 16:44:53 +00:00
top: var(--titlebar-height);
width: var(--window-width);
height: var(--window-height);
2020-10-06 17:06:34 +00:00
display: flex;
justify-content: center;
align-items: center;
2021-12-01 23:13:09 +00:00
z-index: $z-index-popup-overlay;
2020-10-06 17:06:34 +00:00
}
// Module: Error Modal
.module-error-modal__button-container {
margin-top: 10px;
display: flex;
flex-direction: row;
justify-content: flex-end;
}
2020-10-08 01:25:33 +00:00
.module-button {
&__small {
@include font-body-2;
@include button-reset;
@include keyboard-mode {
&:focus {
2021-05-28 16:15:17 +00:00
box-shadow: 0px 0px 0px 2px $color-ultramarine;
}
}
@include light-theme {
color: $color-gray-90;
border-color: $color-gray-15;
}
@include dark-theme {
color: $color-gray-05;
border-color: $color-gray-65;
}
border-radius: 4px;
border-style: solid;
border-width: 1px;
outline: none;
2023-04-20 17:03:43 +00:00
padding-block: 7px;
padding-inline: 12px;
}
2020-10-08 01:25:33 +00:00
}
.module-background-color {
&__default {
background-color: $color-black-alpha-40;
}
2021-08-06 00:17:05 +00:00
@include avatar-colors();
2020-10-08 01:25:33 +00:00
}
2020-11-19 18:11:35 +00:00
.module-tooltip {
--tooltip-text-color: #{$color-gray-75};
--tooltip-background-color: #{$color-gray-02};
@mixin tooltip-dark-theme-variables {
--tooltip-text-color: #{$color-gray-05};
--tooltip-background-color: #{$color-gray-65};
}
&--dark-theme {
@include tooltip-dark-theme-variables;
}
@include dark-theme {
@include tooltip-dark-theme-variables;
}
background-color: var(--tooltip-background-color);
2020-06-04 18:16:19 +00:00
border-radius: 8px;
color: var(--tooltip-text-color);
2020-11-19 18:11:35 +00:00
display: inline-block;
2023-04-20 17:03:43 +00:00
padding-block: 8px;
padding-inline: 21px;
2020-11-19 18:11:35 +00:00
position: fixed;
text-align: center;
2021-12-01 23:13:09 +00:00
z-index: $z-index-tooltip;
2020-06-04 18:16:19 +00:00
2020-11-19 18:11:35 +00:00
.module-tooltip-arrow {
position: absolute;
2020-06-04 18:16:19 +00:00
}
2020-11-19 18:11:35 +00:00
.module-tooltip-arrow::after {
border: solid 6px transparent;
content: '';
display: block;
height: 0;
/* stylelint-disable-next-line liberty/use-logical-spec */
margin-left: -6px;
2020-11-19 18:11:35 +00:00
margin-top: -6px;
position: absolute;
width: 0;
}
&[data-placement='top'] {
.module-tooltip-arrow {
bottom: 0;
}
.module-tooltip-arrow::after {
bottom: -12px;
border-top-color: var(--tooltip-background-color);
2020-11-19 18:11:35 +00:00
}
}
&[data-placement='right'] {
.module-tooltip-arrow {
/* stylelint-disable-next-line liberty/use-logical-spec */
left: 0;
2020-11-19 18:11:35 +00:00
}
.module-tooltip-arrow::after {
/* stylelint-disable-next-line liberty/use-logical-spec */
left: -6px;
/* stylelint-disable-next-line liberty/use-logical-spec */
border-right-color: var(--tooltip-background-color);
2020-11-19 18:11:35 +00:00
}
}
&[data-placement='bottom'] {
.module-tooltip-arrow {
top: 0;
}
.module-tooltip-arrow::after {
top: -6px;
border-bottom-color: var(--tooltip-background-color);
2020-11-19 18:11:35 +00:00
}
}
&[data-placement='left'] {
.module-tooltip-arrow {
/* stylelint-disable-next-line liberty/use-logical-spec */
right: 0;
2020-11-19 18:11:35 +00:00
}
.module-tooltip-arrow::after {
/* stylelint-disable-next-line liberty/use-logical-spec */
right: -12px;
/* stylelint-disable-next-line liberty/use-logical-spec */
border-left-color: var(--tooltip-background-color);
2020-11-19 18:11:35 +00:00
}
2020-06-04 18:16:19 +00:00
}
}
2021-05-28 19:11:19 +00:00
// Module: Chat Session Refreshed Dialog
.module-chat-session-refreshed-dialog {
2021-02-18 16:40:26 +00:00
@include light-theme {
background-color: $color-white;
}
@include dark-theme {
background-color: $color-gray-95;
}
}
.module-chat-session-refreshed-dialog__image {
text-align: center;
}
.module-chat-session-refreshed-dialog__title {
@include font-body-1-bold;
margin-top: 10px;
margin-bottom: 3px;
}
.module-chat-session-refreshed-dialog__buttons {
2023-04-20 17:03:43 +00:00
text-align: end;
2021-02-18 16:40:26 +00:00
margin-top: 20px;
2021-05-28 19:11:19 +00:00
padding: 3px;
2021-02-18 16:40:26 +00:00
}
.module-chat-session-refreshed-dialog__button {
@include font-body-1-bold;
@include button-reset;
@include button-primary;
border-radius: 4px;
2023-04-20 17:03:43 +00:00
padding-block: 7px;
padding-inline: 14px;
margin-inline-start: 12px;
2021-02-18 16:40:26 +00:00
}
.module-chat-session-refreshed-dialog__button--secondary {
@include button-secondary;
}
2021-05-28 19:11:19 +00:00
// Module: Delivery Issue Dialog
.module-delivery-issue-dialog__image {
text-align: center;
}
.module-delivery-issue-dialog__title {
@include font-body-1-bold;
margin-top: 10px;
margin-bottom: 3px;
}
2019-10-17 18:22:07 +00:00
/* Third-party module: react-contextmenu*/
.react-contextmenu {
2020-10-21 18:26:35 +00:00
@include popper-shadow();
2019-11-07 21:36:16 +00:00
outline: none;
border-radius: 4px;
2020-10-21 18:26:35 +00:00
min-width: 220px;
2023-04-20 17:03:43 +00:00
padding-block: 6px;
padding-inline: 0;
opacity: 0;
user-select: none;
2021-09-16 21:51:57 +00:00
visibility: hidden;
2019-10-04 18:06:17 +00:00
@include light-theme {
2020-10-21 18:26:35 +00:00
background-color: $color-white;
2019-10-04 18:06:17 +00:00
}
@include dark-theme {
2020-10-21 18:26:35 +00:00
background-color: $color-gray-75;
2019-10-04 18:06:17 +00:00
}
}
.react-contextmenu--visible {
opacity: 1;
2021-09-16 21:51:57 +00:00
visibility: visible;
2021-12-01 23:13:09 +00:00
z-index: $z-index-context-menu;
-webkit-app-region: no-drag;
}
.react-contextmenu-item {
2019-11-07 21:36:16 +00:00
outline: none;
cursor: pointer;
white-space: nowrap;
2023-05-04 18:04:22 +00:00
display: flex;
width: 100%;
2023-05-04 18:04:22 +00:00
align-items: center;
2019-10-04 18:06:17 +00:00
@include font-body-2;
2023-04-20 17:03:43 +00:00
padding-block: 7px;
padding-inline: 12px;
2019-10-04 18:06:17 +00:00
@include light-theme {
color: $color-gray-90;
}
@include dark-theme {
color: $color-gray-02;
}
2020-10-21 18:26:35 +00:00
&--divider {
height: 1px;
2023-04-20 17:03:43 +00:00
margin-block: 6px;
margin-inline: 0;
2020-10-21 18:26:35 +00:00
padding: 0;
@include light-theme {
background-color: $color-gray-15;
}
@include dark-theme {
background-color: $color-gray-60;
}
}
}
.react-contextmenu-item--checked:before {
content: '';
display: inline-block;
position: absolute;
2023-04-20 17:03:43 +00:00
inset-inline-end: 7px;
2019-10-04 18:06:17 +00:00
@include light-theme {
color: $color-gray-90;
}
@include dark-theme {
color: $color-gray-02;
}
}
.react-contextmenu-item.react-contextmenu-submenu {
padding: 0;
}
.react-contextmenu-item.react-contextmenu-submenu > .react-contextmenu-item {
2023-04-20 17:03:43 +00:00
padding-inline-end: 36px;
}
.react-contextmenu-item.react-contextmenu-submenu
> .react-contextmenu-item:after {
2020-10-21 18:26:35 +00:00
content: ' ';
display: inline-block;
2020-10-21 18:26:35 +00:00
height: 18px;
position: absolute;
2023-04-20 17:03:43 +00:00
inset-inline-end: 7px;
2020-10-21 18:26:35 +00:00
width: 12px;
2019-10-04 18:06:17 +00:00
@include light-theme {
@include color-svg(
'../images/icons/v3/chevron/chevron-right.svg',
$color-gray-75
);
2019-10-04 18:06:17 +00:00
color: $color-gray-90;
}
@include dark-theme {
@include color-svg(
'../images/icons/v3/chevron/chevron-right.svg',
$color-gray-15
);
2019-10-04 18:06:17 +00:00
color: $color-gray-02;
}
}
.react-contextmenu-item.react-contextmenu-item--active,
.react-contextmenu-item.react-contextmenu-item--selected {
2020-05-01 17:40:27 +00:00
color: $color-black;
2019-10-04 18:06:17 +00:00
@include light-theme {
2020-05-01 17:40:27 +00:00
background-color: $color-gray-15;
2019-10-04 18:06:17 +00:00
}
@include dark-theme {
2020-10-21 18:26:35 +00:00
background-color: $color-gray-60;
2020-05-01 17:40:27 +00:00
color: $color-white;
2019-10-04 18:06:17 +00:00
}
}
2021-06-25 16:08:16 +00:00
.react-contextmenu-item--disabled.react-contextmenu-item--selected {
background-color: inherit;
cursor: inherit;
}
.react-contextmenu-item.react-contextmenu-item--active.react-contextmenu-item--checked:before,
.react-contextmenu-item.react-contextmenu-item--selected.react-contextmenu-item--checked:before {
2020-05-01 17:40:27 +00:00
color: $color-black;
@include dark-theme {
color: $color-white;
}
}
.react-contextmenu-item.react-contextmenu-submenu
> .react-contextmenu-item.react-contextmenu-item--active:after,
.react-contextmenu-item.react-contextmenu-submenu
> .react-contextmenu-item.react-contextmenu-item--selected:after {
2020-05-01 17:40:27 +00:00
color: $color-black;
@include dark-theme {
color: $color-white;
}
}
// To limit messages with things forcing them wider, like long attachment names
2019-01-16 03:03:56 +00:00
.module-message__container {
max-width: 100%;
2021-01-27 21:15:43 +00:00
&--incoming {
align-self: flex-start;
}
&--outgoing {
align-self: flex-end;
}
&--with-reactions {
margin-bottom: -6px;
}
2020-04-29 21:24:12 +00:00
&--deleted-for-everyone {
font-style: italic;
}
}
2020-10-21 18:26:35 +00:00
.module-message__context {
&--icon::before {
content: ' ';
display: inline-block;
2023-05-04 18:04:22 +00:00
height: 16px;
2023-04-20 17:03:43 +00:00
margin-inline-end: 8px;
2023-05-04 18:04:22 +00:00
width: 16px;
2020-10-21 18:26:35 +00:00
vertical-align: middle;
}
&__download::before {
@include light-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/save/save-compact.svg',
2020-10-21 18:26:35 +00:00
$color-black
);
}
@include dark-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/save/save-compact.svg',
2020-10-21 18:26:35 +00:00
$color-gray-15
);
}
}
&__reply::before {
@include light-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/reply/reply-compact.svg',
2020-10-21 18:26:35 +00:00
$color-black
);
}
@include dark-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/reply/reply-compact.svg',
2020-10-21 18:26:35 +00:00
$color-gray-15
);
}
}
&__react::before {
@include light-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/heart/heart-plus-compact.svg',
2020-10-21 18:26:35 +00:00
$color-black
);
}
@include dark-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/heart/heart-plus-compact.svg',
2020-10-21 18:26:35 +00:00
$color-gray-15
);
}
}
&__more-info::before {
@include light-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/info/info-compact.svg',
2020-10-21 18:26:35 +00:00
$color-black
);
}
@include dark-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/info/info-compact.svg',
2020-10-21 18:26:35 +00:00
$color-gray-15
);
}
}
2023-03-20 22:23:53 +00:00
&__select::before {
@include light-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/check/check-circle-compact.svg',
2023-03-20 22:23:53 +00:00
$color-black
);
}
@include dark-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/check/check-circle-compact.svg',
2023-03-20 22:23:53 +00:00
$color-gray-15
);
}
}
2020-10-21 18:26:35 +00:00
&__retry-send::before {
@include light-theme {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/send/send.svg', $color-black);
2020-10-21 18:26:35 +00:00
}
@include dark-theme {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/send/send.svg', $color-gray-15);
2020-10-21 18:26:35 +00:00
}
}
2021-04-27 22:35:35 +00:00
&__forward-message::before {
@include light-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/forward/forward-compact.svg',
2021-04-27 22:35:35 +00:00
$color-black
);
}
@include dark-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/forward/forward-compact.svg',
2021-04-27 22:35:35 +00:00
$color-gray-15
);
}
}
&__edit-message::before {
2020-10-21 18:26:35 +00:00
@include light-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/edit/edit-compact.svg',
2020-10-21 18:26:35 +00:00
$color-black
);
}
@include dark-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/edit/edit-compact.svg',
2020-10-21 18:26:35 +00:00
$color-gray-15
);
}
}
2023-05-04 18:04:22 +00:00
&__delete-message::before,
2020-10-21 18:26:35 +00:00
&__delete-message-for-everyone::before {
@include light-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/trash/trash-compact.svg',
2020-10-21 18:26:35 +00:00
$color-black
);
}
@include dark-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/trash/trash-compact.svg',
2020-10-21 18:26:35 +00:00
$color-gray-15
);
}
}
2022-11-22 22:33:15 +00:00
&__copy-timestamp::before {
@include light-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/copy/copy-compact.svg',
2022-11-22 22:33:15 +00:00
$color-black
);
}
@include dark-theme {
@include color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/copy/copy-compact.svg',
2022-11-22 22:33:15 +00:00
$color-gray-15
);
}
}
2020-10-21 18:26:35 +00:00
}