2023-01-30 20:16:09 +00:00
|
|
|
// Copyright 2021 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
.module-composition-input {
|
|
|
|
&__quill {
|
|
|
|
height: 100%;
|
|
|
|
padding-left: 6px;
|
|
|
|
|
|
|
|
.ql-editor {
|
|
|
|
caret-color: transparent;
|
|
|
|
padding: 0;
|
|
|
|
text-align: start;
|
|
|
|
white-space: break-spaces;
|
|
|
|
line-height: inherit;
|
|
|
|
|
|
|
|
&--loaded {
|
|
|
|
caret-color: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.ql-blank::before {
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.emoji-blot {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
vertical-align: text-bottom;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__at-mention {
|
|
|
|
background-color: $color-gray-20;
|
|
|
|
border-radius: 4px;
|
|
|
|
display: inline;
|
|
|
|
padding-left: 4px;
|
|
|
|
padding-right: 4px;
|
|
|
|
height: 22px;
|
|
|
|
line-height: 22px;
|
|
|
|
|
|
|
|
@include dark-theme {
|
|
|
|
background-color: $color-gray-60;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__input {
|
|
|
|
$border-size: 1px;
|
|
|
|
|
|
|
|
border-radius: 18px;
|
|
|
|
overflow: hidden;
|
|
|
|
word-break: break-word;
|
|
|
|
|
|
|
|
// Override Quill styles
|
|
|
|
.ql-container {
|
|
|
|
@include font-body-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ql-blank::before {
|
|
|
|
@include light-theme() {
|
|
|
|
color: $color-gray-45;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include dark-theme() {
|
|
|
|
color: $color-gray-25;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@include light-theme() {
|
|
|
|
// Same as background color
|
|
|
|
background-color: $color-gray-05;
|
|
|
|
color: $color-gray-90;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include dark-theme() {
|
|
|
|
// Same as background color
|
|
|
|
background-color: $color-gray-75;
|
|
|
|
color: $color-gray-05;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__scroller {
|
|
|
|
$padding-top: 6px;
|
|
|
|
padding: $padding-top;
|
|
|
|
|
|
|
|
min-height: calc(32px - 2 * $border-size);
|
|
|
|
max-height: calc(72px - 2 * $border-size);
|
|
|
|
overflow: auto;
|
|
|
|
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
|
|
@include light-theme {
|
|
|
|
border: 2px solid $color-gray-05;
|
|
|
|
}
|
|
|
|
@include dark-theme {
|
|
|
|
border: 2px solid $color-gray-75;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--large {
|
|
|
|
max-height: calc(212px - 2 * $border-size);
|
|
|
|
min-height: calc(212px - 2 * $border-size);
|
|
|
|
|
|
|
|
.DraftEditor-root {
|
|
|
|
height: calc(212px - 2 * $padding-top - 2 * $border-size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--link-preview {
|
2023-02-03 22:21:07 +00:00
|
|
|
padding-top: 0;
|
2023-01-30 20:16:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
border: $border-size solid transparent;
|
|
|
|
|
|
|
|
&:focus-within {
|
|
|
|
outline: 0;
|
|
|
|
@include keyboard-mode {
|
|
|
|
border: $border-size solid $color-ultramarine;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-14 18:16:28 +00:00
|
|
|
&__format-menu {
|
|
|
|
padding: 6px 12px;
|
|
|
|
border-radius: 8px;
|
|
|
|
z-index: $z-index-above-popup;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
@include popper-shadow();
|
|
|
|
|
|
|
|
@include light-theme() {
|
|
|
|
background: $color-white;
|
|
|
|
}
|
|
|
|
@include dark-theme() {
|
|
|
|
background: $color-gray-80;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__item {
|
|
|
|
$parent: &;
|
|
|
|
@include button-reset;
|
|
|
|
|
|
|
|
height: 24px;
|
|
|
|
width: 24px;
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
|
|
margin-right: 8px;
|
|
|
|
&:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include mouse-mode {
|
|
|
|
&:hover {
|
|
|
|
background-color: $color-gray-05;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@include dark-mouse-mode {
|
|
|
|
&:hover {
|
|
|
|
background-color: $color-gray-60;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__icon {
|
|
|
|
height: 20px;
|
|
|
|
width: 20px;
|
|
|
|
margin: 2px;
|
|
|
|
|
|
|
|
&--bold {
|
|
|
|
@include dark-theme {
|
|
|
|
@include color-svg('../images/icons/v3/bold.svg', $color-gray-25);
|
|
|
|
}
|
|
|
|
@include light-theme {
|
|
|
|
@include color-svg('../images/icons/v3/bold.svg', $color-gray-60);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--italic {
|
|
|
|
@include dark-theme {
|
|
|
|
@include color-svg('../images/icons/v3/italic.svg', $color-gray-25);
|
|
|
|
}
|
|
|
|
@include light-theme {
|
|
|
|
@include color-svg('../images/icons/v3/italic.svg', $color-gray-60);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--strikethrough {
|
|
|
|
@include dark-theme {
|
|
|
|
@include color-svg(
|
|
|
|
'../images/icons/v3/strikethrough.svg',
|
|
|
|
$color-gray-25
|
|
|
|
);
|
|
|
|
}
|
|
|
|
@include light-theme {
|
|
|
|
@include color-svg(
|
|
|
|
'../images/icons/v3/strikethrough.svg',
|
|
|
|
$color-gray-60
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--monospace {
|
|
|
|
@include dark-theme {
|
|
|
|
@include color-svg(
|
|
|
|
'../images/icons/v3/monospace.svg',
|
|
|
|
$color-gray-25
|
|
|
|
);
|
|
|
|
}
|
|
|
|
@include light-theme {
|
|
|
|
@include color-svg(
|
|
|
|
'../images/icons/v3/monospace.svg',
|
|
|
|
$color-gray-60
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--spoiler {
|
|
|
|
@include dark-theme {
|
|
|
|
@include color-svg(
|
|
|
|
'../images/icons/v3/spoiler.svg',
|
|
|
|
$color-gray-25
|
|
|
|
);
|
|
|
|
}
|
|
|
|
@include light-theme {
|
|
|
|
@include color-svg(
|
|
|
|
'../images/icons/v3/spoiler.svg',
|
|
|
|
$color-gray-60
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Here we look at hover for the parent so the 2px border in between is active
|
|
|
|
// We can't use the mixins because .mouse-mode would wend up after the >
|
|
|
|
.mouse-mode #{$parent}:hover & {
|
|
|
|
background-color: $color-gray-90;
|
|
|
|
}
|
|
|
|
.dark-theme.mouse-mode #{$parent}:hover & {
|
|
|
|
background-color: $color-gray-15;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--active {
|
|
|
|
@include dark-theme {
|
|
|
|
background-color: $color-ultramarine;
|
|
|
|
}
|
|
|
|
@include light-theme {
|
|
|
|
background-color: $color-ultramarine;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Override above hover behaviors
|
|
|
|
.mouse-mode #{$parent}:hover & {
|
|
|
|
background-color: $color-ultramarine;
|
|
|
|
}
|
|
|
|
.dark-theme.mouse-mode #{$parent}:hover & {
|
|
|
|
background-color: $color-ultramarine;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-30 20:16:09 +00:00
|
|
|
&__suggestions {
|
|
|
|
padding: 0;
|
|
|
|
margin-bottom: 6px;
|
|
|
|
border-radius: 8px;
|
|
|
|
z-index: $z-index-above-popup;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
&--scroller {
|
|
|
|
max-height: 300px;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include popper-shadow();
|
|
|
|
|
|
|
|
@include light-theme() {
|
|
|
|
background: $color-white;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include dark-theme() {
|
|
|
|
background: $color-gray-75;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__row {
|
|
|
|
height: 34px;
|
|
|
|
padding: 0 12px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: flex-start;
|
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
&--mention {
|
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include font-body-2;
|
|
|
|
|
|
|
|
@include light-theme() {
|
|
|
|
color: $color-gray-60;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include dark-theme() {
|
|
|
|
color: $color-gray-25;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__short-name {
|
|
|
|
margin-left: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--selected,
|
|
|
|
&:hover {
|
|
|
|
@include light-theme() {
|
|
|
|
background: $color-gray-05;
|
|
|
|
color: $color-gray-90;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include dark-theme() {
|
|
|
|
background: $color-gray-60;
|
|
|
|
color: $color-gray-05;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
padding-left: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
stroke: $color-white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
div.CompositionInput__link-preview {
|
|
|
|
background: $color-gray-02;
|
|
|
|
border-radius: 8px;
|
|
|
|
flex-direction: row-reverse;
|
2023-02-01 17:19:02 +00:00
|
|
|
justify-content: space-between;
|
2023-02-03 22:21:07 +00:00
|
|
|
margin: 6px;
|
|
|
|
min-height: 74px;
|
2023-01-30 20:16:09 +00:00
|
|
|
overflow: hidden;
|
|
|
|
|
2023-02-01 17:19:02 +00:00
|
|
|
@include dark-theme {
|
|
|
|
background: $color-gray-80;
|
|
|
|
}
|
|
|
|
|
2023-01-30 20:16:09 +00:00
|
|
|
&__icon-container {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
margin-left: 8px;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__content {
|
|
|
|
margin-right: 0;
|
|
|
|
padding-bottom: 8px;
|
|
|
|
padding-left: 12px;
|
|
|
|
padding-top: 8px;
|
|
|
|
}
|
2023-02-03 22:21:07 +00:00
|
|
|
|
|
|
|
&__no-image {
|
|
|
|
margin-right: 0;
|
2023-02-07 19:50:35 +00:00
|
|
|
min-width: 74px;
|
2023-02-03 22:21:07 +00:00
|
|
|
}
|
2023-01-30 20:16:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
button.CompositionInput__link-preview__close-button {
|
|
|
|
-webkit-mask: none;
|
|
|
|
@include rounded-corners;
|
|
|
|
align-items: center;
|
|
|
|
backdrop-filter: blur(32px);
|
|
|
|
background: $color-white-alpha-80;
|
|
|
|
display: flex;
|
|
|
|
height: 20px;
|
|
|
|
justify-content: center;
|
|
|
|
right: 6px;
|
|
|
|
top: 6px;
|
|
|
|
width: 20px;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
@include color-svg('../images/icons/v2/x-24.svg', $color-gray-75);
|
|
|
|
content: '';
|
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
2023-02-07 19:50:35 +00:00
|
|
|
|
|
|
|
@include dark-theme {
|
|
|
|
background-color: $color-gray-05;
|
|
|
|
}
|
2023-01-30 20:16:09 +00:00
|
|
|
}
|
|
|
|
}
|
2023-04-14 18:16:28 +00:00
|
|
|
|
|
|
|
.quill {
|
|
|
|
&--monospace {
|
|
|
|
font-family: monospace;
|
|
|
|
}
|
|
|
|
&--spoiler {
|
|
|
|
@include light-theme {
|
|
|
|
// vs color/$color-gray-90, background/$color-gray-05
|
|
|
|
background-color: $color-gray-25;
|
|
|
|
}
|
|
|
|
@include dark-theme {
|
|
|
|
// vs color/$color-gray-05, background/$color-gray-95
|
|
|
|
background-color: $color-gray-45;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|