mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-05-08 08:58:38 +01:00
Conversation details screen for 1:1 chats
This commit is contained in:
@@ -196,4 +196,75 @@
|
||||
@include hover-and-active-states($background-color, $color-white);
|
||||
}
|
||||
}
|
||||
|
||||
&--details {
|
||||
align-items: center;
|
||||
border-radius: 8px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
font-size: 9px;
|
||||
justify-content: center;
|
||||
line-height: 14px;
|
||||
min-height: 44px;
|
||||
min-width: 60px;
|
||||
padding: 0 8px;
|
||||
|
||||
@include light-theme {
|
||||
background-color: $color-gray-05;
|
||||
color: $color-black;
|
||||
}
|
||||
|
||||
@include dark-theme {
|
||||
background-color: $color-gray-65;
|
||||
color: $color-gray-05;
|
||||
}
|
||||
|
||||
&:focus {
|
||||
box-shadow: 0 0 0 2px $color-ultramarine;
|
||||
}
|
||||
}
|
||||
|
||||
&__icon {
|
||||
@mixin button-icon($icon) {
|
||||
content: '';
|
||||
display: block;
|
||||
height: 18px;
|
||||
width: 18px;
|
||||
|
||||
@include light-theme {
|
||||
@include color-svg($icon, $color-black);
|
||||
}
|
||||
@include dark-theme {
|
||||
@include color-svg($icon, $color-gray-05);
|
||||
}
|
||||
}
|
||||
|
||||
&--audio::before {
|
||||
@include button-icon('../images/icons/v2/phone-right-outline-24.svg');
|
||||
}
|
||||
|
||||
&--muted::before {
|
||||
@include button-icon('../images/icons/v2/bell-disabled-outline-24.svg');
|
||||
}
|
||||
|
||||
&--photo::before {
|
||||
@include button-icon('../images/icons/v2/photo-album-outline-24.svg');
|
||||
}
|
||||
|
||||
&--search::before {
|
||||
@include button-icon('../images/icons/v2/search-16.svg');
|
||||
}
|
||||
|
||||
&--text::before {
|
||||
@include button-icon('../images/icons/v2/text-24.svg');
|
||||
}
|
||||
|
||||
&--unmuted::before {
|
||||
@include button-icon('../images/icons/v2/bell-outline-24.svg');
|
||||
}
|
||||
|
||||
&--video::before {
|
||||
@include button-icon('../images/icons/v2/video-outline-24.svg');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,621 @@
|
||||
// Copyright 2021 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
.ConversationDetails {
|
||||
&-header {
|
||||
&__root {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin: 0 0 24px 0;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
&__root--editable {
|
||||
@include button-reset();
|
||||
}
|
||||
|
||||
&__root--editable {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
&__title {
|
||||
@include font-title-1;
|
||||
align-items: center;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding-bottom: 8px;
|
||||
padding-top: 12px;
|
||||
}
|
||||
|
||||
&__subtitle {
|
||||
@include font-body-1;
|
||||
color: $color-gray-60;
|
||||
justify-content: center;
|
||||
padding-bottom: 6px;
|
||||
|
||||
@include dark-theme {
|
||||
color: $color-gray-25;
|
||||
}
|
||||
}
|
||||
|
||||
&__root--editable &__title {
|
||||
$icon: '../images/icons/v2/compose-solid-24.svg';
|
||||
|
||||
&::after {
|
||||
$size: 24px;
|
||||
|
||||
content: '';
|
||||
height: $size;
|
||||
left: $size + 13px;
|
||||
margin-left: -$size;
|
||||
opacity: 0;
|
||||
position: relative;
|
||||
transition: opacity 100ms ease-out;
|
||||
width: $size;
|
||||
|
||||
@include light-theme {
|
||||
@include color-svg($icon, $color-gray-60);
|
||||
}
|
||||
@include dark-theme {
|
||||
@include color-svg($icon, $color-gray-25);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__root--editable:hover &__title::after {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
&__chat-color {
|
||||
@include color-bubble(20px);
|
||||
}
|
||||
|
||||
&-membership-list {
|
||||
&__add-members-icon {
|
||||
@mixin plus-icon($color) {
|
||||
@include color-svg('../images/icons/v2/plus-24.svg', $color);
|
||||
content: '';
|
||||
display: block;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
}
|
||||
|
||||
align-items: center;
|
||||
border-radius: 100%;
|
||||
display: flex;
|
||||
height: 32px;
|
||||
justify-content: center;
|
||||
width: 32px;
|
||||
|
||||
@include light-theme {
|
||||
background: $color-gray-02;
|
||||
&::before {
|
||||
@include plus-icon($color-black);
|
||||
}
|
||||
}
|
||||
@include dark-theme {
|
||||
background: $color-gray-90;
|
||||
&::before {
|
||||
@include plus-icon($color-gray-15);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__leave-group {
|
||||
color: $color-accent-red;
|
||||
|
||||
&--disabled {
|
||||
@include light-theme {
|
||||
color: $color-gray-60;
|
||||
}
|
||||
|
||||
@include dark-theme {
|
||||
color: $color-gray-25;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__block-group {
|
||||
color: $color-accent-red;
|
||||
}
|
||||
|
||||
&__tabs {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
}
|
||||
|
||||
&__tab {
|
||||
@include font-body-1;
|
||||
cursor: pointer;
|
||||
padding: 15px;
|
||||
|
||||
&:focus {
|
||||
@include mouse-mode {
|
||||
outline: none;
|
||||
}
|
||||
}
|
||||
|
||||
&--selected {
|
||||
@include font-body-1-bold;
|
||||
border-bottom: 2px solid $color-black;
|
||||
}
|
||||
}
|
||||
|
||||
&__pending--info {
|
||||
@include font-subtitle;
|
||||
@include light-theme {
|
||||
color: $color-gray-60;
|
||||
}
|
||||
@include dark-theme {
|
||||
color: $color-gray-25;
|
||||
}
|
||||
padding: 0 28px;
|
||||
padding-top: 16px;
|
||||
}
|
||||
|
||||
&-icon {
|
||||
&__button {
|
||||
background: none;
|
||||
border: none;
|
||||
padding: none;
|
||||
|
||||
&:focus {
|
||||
@include mouse-mode {
|
||||
outline: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__icon {
|
||||
height: 32px;
|
||||
width: 32px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
&::after {
|
||||
display: block;
|
||||
content: '';
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
-webkit-mask-size: 100%;
|
||||
}
|
||||
|
||||
&--color {
|
||||
&::after {
|
||||
-webkit-mask: url(../images/icons/v2/color-outline-24.svg) no-repeat
|
||||
center;
|
||||
|
||||
@include light-theme {
|
||||
background-color: $color-gray-75;
|
||||
}
|
||||
|
||||
@include dark-theme {
|
||||
background-color: $color-gray-15;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&--timer {
|
||||
&::after {
|
||||
-webkit-mask: url(../images/icons/v2/timer-disabled-outline-24.svg)
|
||||
no-repeat center;
|
||||
|
||||
@include light-theme {
|
||||
background-color: $color-gray-75;
|
||||
}
|
||||
|
||||
@include dark-theme {
|
||||
background-color: $color-gray-15;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&--notifications {
|
||||
&::after {
|
||||
-webkit-mask: url('../images/icons/v2/sound-outline-24.svg') no-repeat
|
||||
center;
|
||||
|
||||
@include light-theme {
|
||||
background-color: $color-gray-75;
|
||||
}
|
||||
|
||||
@include dark-theme {
|
||||
background-color: $color-gray-15;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&--mute {
|
||||
&::after {
|
||||
@include light-theme {
|
||||
-webkit-mask: url('../images/icons/v2/bell-disabled-outline-24.svg')
|
||||
no-repeat center;
|
||||
background-color: $color-gray-75;
|
||||
}
|
||||
|
||||
@include dark-theme {
|
||||
-webkit-mask: url('../images/icons/v2/bell-disabled-solid-24.svg')
|
||||
no-repeat center;
|
||||
background-color: $color-gray-15;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&--mention {
|
||||
&::after {
|
||||
-webkit-mask: url('../images/icons/v2/at-24.svg') no-repeat center;
|
||||
|
||||
@include light-theme {
|
||||
background-color: $color-gray-75;
|
||||
}
|
||||
|
||||
@include dark-theme {
|
||||
background-color: $color-gray-15;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&--lock {
|
||||
&::after {
|
||||
-webkit-mask: url(../images/icons/v2/lock-outline-24.svg) no-repeat
|
||||
center;
|
||||
|
||||
@include light-theme {
|
||||
background-color: $color-gray-75;
|
||||
}
|
||||
|
||||
@include dark-theme {
|
||||
background-color: $color-gray-15;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&--approve {
|
||||
&::after {
|
||||
-webkit-mask: url(../images/icons/v2/check-24.svg) no-repeat center;
|
||||
|
||||
@include light-theme {
|
||||
background-color: $color-gray-75;
|
||||
}
|
||||
|
||||
@include dark-theme {
|
||||
background-color: $color-gray-15;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&--link {
|
||||
&::after {
|
||||
-webkit-mask: url(../images/icons/v2/link-16.svg) no-repeat center;
|
||||
|
||||
@include light-theme {
|
||||
background-color: $color-gray-75;
|
||||
}
|
||||
|
||||
@include dark-theme {
|
||||
background-color: $color-gray-15;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&--share {
|
||||
&::after {
|
||||
-webkit-mask: url(../images/icons/v2/share-ios-24.svg) no-repeat
|
||||
center;
|
||||
|
||||
@include light-theme {
|
||||
background-color: $color-gray-75;
|
||||
}
|
||||
|
||||
@include dark-theme {
|
||||
background-color: $color-gray-15;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&--reset {
|
||||
&::after {
|
||||
-webkit-mask: url(../images/icons/v2/refresh-24.svg) no-repeat center;
|
||||
|
||||
@include light-theme {
|
||||
background-color: $color-gray-75;
|
||||
}
|
||||
|
||||
@include dark-theme {
|
||||
background-color: $color-gray-15;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&--trash {
|
||||
&::after {
|
||||
-webkit-mask: url(../images/icons/v2/trash-outline-24.svg) no-repeat
|
||||
center;
|
||||
|
||||
@include light-theme {
|
||||
background-color: $color-gray-75;
|
||||
}
|
||||
|
||||
@include dark-theme {
|
||||
background-color: $color-gray-15;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&--invites {
|
||||
&::after {
|
||||
-webkit-mask: url(../images/icons/v2/pending-invite-24.svg) no-repeat
|
||||
center;
|
||||
|
||||
@include light-theme {
|
||||
background-color: $color-gray-75;
|
||||
}
|
||||
|
||||
@include dark-theme {
|
||||
background-color: $color-gray-15;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&--down {
|
||||
border-radius: 18px;
|
||||
@include light-theme {
|
||||
background-color: $color-gray-02;
|
||||
}
|
||||
|
||||
@include dark-theme {
|
||||
background-color: $color-gray-90;
|
||||
}
|
||||
|
||||
&::after {
|
||||
-webkit-mask: url(../images/icons/v2/chevron-down-16.svg) no-repeat
|
||||
center;
|
||||
|
||||
@include light-theme {
|
||||
background-color: $color-gray-60;
|
||||
}
|
||||
|
||||
@include dark-theme {
|
||||
background-color: $color-gray-25;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&--leave {
|
||||
&::after {
|
||||
-webkit-mask: url(../images/icons/v2/leave-24.svg) no-repeat center;
|
||||
background-color: $color-accent-red;
|
||||
}
|
||||
|
||||
&--disabled::after {
|
||||
@include light-theme {
|
||||
background-color: $color-gray-60;
|
||||
}
|
||||
|
||||
@include dark-theme {
|
||||
background-color: $color-gray-25;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&--block {
|
||||
&::after {
|
||||
-webkit-mask: url(../images/icons/v2/block-24.svg) no-repeat center;
|
||||
background-color: $color-accent-red;
|
||||
}
|
||||
}
|
||||
|
||||
&--verify {
|
||||
&::after {
|
||||
-webkit-mask: url(../images/icons/v2/safety-number-outline-24.svg)
|
||||
no-repeat center;
|
||||
|
||||
@include light-theme {
|
||||
background-color: $color-gray-75;
|
||||
}
|
||||
|
||||
@include dark-theme {
|
||||
background-color: $color-gray-15;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&-media-list {
|
||||
&__root {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding: 0 20px;
|
||||
padding-bottom: 24px;
|
||||
|
||||
.module-media-grid-item {
|
||||
border-radius: 4px;
|
||||
height: auto;
|
||||
margin: 0 4px;
|
||||
max-height: 94px;
|
||||
overflow: hidden;
|
||||
width: calc(100% / 6);
|
||||
|
||||
.module-media-grid-item__icon {
|
||||
&::before {
|
||||
content: '';
|
||||
display: block;
|
||||
padding-top: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.module-media-grid-item__image-container,
|
||||
img {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__show-all {
|
||||
background: none;
|
||||
border: none;
|
||||
padding: 0;
|
||||
|
||||
@include light-theme {
|
||||
color: $color-gray-95;
|
||||
}
|
||||
@include dark-theme {
|
||||
color: $color-gray-05;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&-panel-row {
|
||||
$row-root-selector: '#{&}__root';
|
||||
&__root {
|
||||
align-items: center;
|
||||
border-radius: 5px;
|
||||
border: 2px solid transparent;
|
||||
display: flex;
|
||||
padding: 8px 24px;
|
||||
user-select: none;
|
||||
width: 100%;
|
||||
|
||||
&--button {
|
||||
color: inherit;
|
||||
background: none;
|
||||
|
||||
&:hover:not(:disabled) {
|
||||
@include light-theme {
|
||||
background-color: $color-gray-02;
|
||||
}
|
||||
|
||||
@include dark-theme {
|
||||
background-color: $color-gray-90;
|
||||
}
|
||||
|
||||
& .ConversationDetails-panel-row__actions {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
@mixin keyboard-focus-state($color) {
|
||||
&:focus {
|
||||
border-color: $color;
|
||||
}
|
||||
}
|
||||
|
||||
@include keyboard-mode {
|
||||
@include keyboard-focus-state($color-ultramarine);
|
||||
}
|
||||
@include dark-keyboard-mode {
|
||||
@include keyboard-focus-state($color-ultramarine-light);
|
||||
}
|
||||
}
|
||||
|
||||
&__icon {
|
||||
margin-right: 12px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
&__label {
|
||||
flex-grow: 1;
|
||||
text-align: left;
|
||||
margin-right: 12px;
|
||||
}
|
||||
|
||||
&__info {
|
||||
@include font-body-2;
|
||||
margin-top: 4px;
|
||||
|
||||
@include light-theme {
|
||||
color: $color-gray-60;
|
||||
}
|
||||
|
||||
@include dark-theme {
|
||||
color: $color-gray-25;
|
||||
}
|
||||
}
|
||||
|
||||
&__right {
|
||||
position: relative;
|
||||
color: $color-gray-45;
|
||||
min-width: 143px;
|
||||
}
|
||||
|
||||
&__actions {
|
||||
margin-left: 12px;
|
||||
overflow: hidden;
|
||||
opacity: 0;
|
||||
|
||||
#{$row-root-selector}:hover &,
|
||||
#{$row-root-selector}:focus-within & {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&-panel-section {
|
||||
&__root {
|
||||
position: relative;
|
||||
|
||||
&:not(:first-child)::before {
|
||||
border-top: 1px solid transparent;
|
||||
|
||||
@include light-theme {
|
||||
border-top-color: $color-gray-15;
|
||||
}
|
||||
|
||||
@include dark-theme {
|
||||
border-top-color: $color-gray-65;
|
||||
}
|
||||
|
||||
content: '';
|
||||
display: block;
|
||||
margin: 8px 0;
|
||||
}
|
||||
|
||||
&--borderless {
|
||||
&:not(:first-child)::before {
|
||||
border-top: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 18px 24px 12px;
|
||||
|
||||
&--center {
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
|
||||
&__title {
|
||||
@include font-body-1-bold;
|
||||
}
|
||||
}
|
||||
|
||||
&__header-buttons {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-bottom: 24px;
|
||||
|
||||
.module-Button {
|
||||
margin: 0 8px;
|
||||
}
|
||||
}
|
||||
|
||||
&__radio {
|
||||
&__container {
|
||||
padding: 12px 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user