signal-desktop/stylesheets/components/CompositionInput.scss

257 lines
4.7 KiB
SCSS
Raw Normal View History

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;
}
}
}
&__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
}
}