signal-desktop/stylesheets/components/StoryViewsNRepliesModal.scss

276 lines
4.7 KiB
SCSS
Raw Normal View History

2022-03-04 21:14:52 +00:00
// Copyright 2022 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
.StoryViewsNRepliesModal {
min-width: 320px;
min-height: min(400px, 80vh);
max-height: 80vh;
2022-04-23 03:16:13 +00:00
overflow: hidden;
2022-03-04 21:14:52 +00:00
&--group {
2022-04-23 03:16:13 +00:00
display: flex;
flex-direction: column;
2022-11-11 17:17:30 +00:00
flex: 1;
.StoryViewsNRepliesModal__replies {
flex: 1;
overflow: auto;
2022-11-11 17:17:30 +00:00
}
}
&__body {
flex: 1;
display: flex;
flex-direction: column;
overflow: hidden; // override modal's overflow: auto
}
&__body_inner {
2022-11-11 17:17:30 +00:00
display: flex;
flex-direction: column;
flex: 1;
2022-04-23 03:16:13 +00:00
}
&__replies {
flex: 1;
2023-04-20 17:03:43 +00:00
margin-block: 0;
margin-inline: -16px;
2022-04-23 03:16:13 +00:00
max-height: 75vh;
overflow-y: overlay;
&--none {
align-items: center;
color: $color-gray-45;
display: flex;
flex: 1;
justify-content: center;
2023-04-20 17:03:43 +00:00
padding-block: 80px;
padding-inline: 0;
2022-04-23 03:16:13 +00:00
user-select: none;
}
2022-03-04 21:14:52 +00:00
}
&__overlay-container {
align-items: flex-end;
justify-content: flex-end;
}
&__compose-container {
display: flex;
align-items: center;
}
&__composer {
flex: 1;
2023-01-27 17:34:15 +00:00
margin-top: 6px;
2022-03-04 21:14:52 +00:00
}
&__emoji-button {
height: 24px;
2023-04-20 17:03:43 +00:00
margin-inline-start: 10px;
2022-03-04 21:14:52 +00:00
width: 24px;
&::after {
@include dark-theme {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/emoji/emoji.svg', $color-white);
2022-03-04 21:14:52 +00:00
}
}
}
&__not-a-member {
2023-04-20 17:03:43 +00:00
margin-block: 24px 8px;
margin-inline: 4px;
font-size: 12px;
text-align: center;
color: $color-gray-25;
}
2022-03-04 21:14:52 +00:00
&__input {
&__input {
// For specificity because StoryViewsNRepliesModal is always in dark-theme
@include dark-theme {
background: $color-gray-75;
border: 1px solid $color-gray-75;
color: $color-white;
}
.ql-editor.ql-blank::before {
color: $color-gray-25;
}
display: flex;
align-items: center;
min-height: 36px;
2022-03-04 21:14:52 +00:00
&--with-children {
flex: 1;
2022-03-04 21:14:52 +00:00
}
.quill {
flex: 1;
}
}
}
&__view {
align-items: center;
display: flex;
justify-content: space-between;
2023-04-20 17:03:43 +00:00
margin-block: 8px;
margin-inline: 0;
2022-03-04 21:14:52 +00:00
&--name {
@include font-body-2;
2023-04-20 17:03:43 +00:00
margin-inline-start: 12px;
2022-03-04 21:14:52 +00:00
}
&--timestamp {
@include font-body-2;
color: $color-gray-45;
}
}
&__reply {
align-items: flex-end;
display: flex;
padding-bottom: 12px;
&--title {
@include font-body-2;
}
&--timestamp {
@include font-subtitle;
color: $color-gray-25;
2023-04-20 17:03:43 +00:00
margin-inline-start: 6px;
2022-03-04 21:14:52 +00:00
}
}
&__reaction {
align-items: center;
display: flex;
justify-content: space-between;
2023-04-20 17:03:43 +00:00
padding-block: 12px;
padding-inline: 16px;
2022-03-04 21:14:52 +00:00
&--container {
display: flex;
}
&--body {
2023-04-20 17:03:43 +00:00
margin-inline-start: 20px;
2022-03-04 21:14:52 +00:00
}
}
&__message-bubble {
background: $color-gray-75;
border-radius: 18px;
2023-04-20 17:03:43 +00:00
margin-inline-start: 8px;
padding-block: 7px;
padding-inline: 12px;
2022-04-15 00:08:46 +00:00
&--doe {
background: none;
border: 1px solid $color-gray-75;
}
2022-03-04 21:14:52 +00:00
}
2022-03-16 17:30:14 +00:00
&__quote {
&__container {
2023-04-20 17:03:43 +00:00
margin-block: 8px;
margin-inline: 0;
margin-inline-end: 38px;
2022-03-16 17:30:14 +00:00
}
&--outgoing-ultramarine {
@include dark-theme {
background-color: $color-gray-60;
background-image: none;
}
}
&__primary {
min-height: 64px;
color: $color-gray-05;
font-size: 12px;
font-weight: 400;
&__author,
&__text {
}
}
&__icon-container {
flex: 0 0 40px;
height: 64px;
width: 40px;
}
}
2022-07-25 18:55:44 +00:00
&__debugger__button {
color: $color-gray-25;
display: block;
font-weight: 600;
height: auto;
opacity: 1;
width: auto;
&--active {
@include dark-theme {
background: inherit;
}
}
&::after {
display: none;
}
&__text {
font-weight: normal;
}
}
&__copy-icon {
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/copy/copy.svg', $color-white);
2022-07-25 18:55:44 +00:00
}
&__read-receipts-off {
color: $color-gray-25;
2023-04-20 17:03:43 +00:00
margin-block: 160px;
margin-inline: 16px;
}
2023-01-27 17:34:15 +00:00
.module-ReactionPickerPicker {
background: inherit;
border: none;
box-shadow: none;
justify-content: space-between;
width: 100%;
}
.module-emoji-picker {
bottom: 55px;
position: absolute;
}
2022-03-04 21:14:52 +00:00
}
.Tabs.StoryViewsNRepliesModal__tabs {
border-bottom: none;
justify-content: center;
margin-bottom: 16px;
2022-03-04 21:14:52 +00:00
}
.Tabs__tab.StoryViewsNRepliesModal__tabs__tab {
@include font-body-1-bold;
2023-04-20 17:03:43 +00:00
padding-block: 4px;
padding-inline: 12px;
margin-block: 0;
margin-inline: 12px;
2022-03-04 21:14:52 +00:00
}
.Tabs__tab--selected.StoryViewsNRepliesModal__tabs__tab--selected {
background: $color-gray-65;
border-radius: 24px;
border-bottom: none;
}