signal-desktop/stylesheets/components/ConversationHeader.scss

342 lines
7.9 KiB
SCSS
Raw Normal View History

2021-03-01 20:08:37 +00:00
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2024-11-15 23:09:31 +00:00
@use 'sass:color';
@use '../mixins';
@use '../variables';
2021-03-01 20:08:37 +00:00
.module-ConversationHeader {
2021-06-01 20:45:43 +00:00
@mixin icon-element($icon, $margin-right: 4px) {
display: flex;
align-items: center;
user-select: none;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
&::before {
content: '';
2023-05-04 18:04:22 +00:00
width: 14px;
height: 14px;
2021-06-01 20:45:43 +00:00
display: block;
2023-04-20 17:03:43 +00:00
margin-inline-end: $margin-right;
2021-06-01 20:45:43 +00:00
2024-11-15 23:09:31 +00:00
@include mixins.light-theme {
@include mixins.color-svg($icon, variables.$color-gray-60);
2021-06-01 20:45:43 +00:00
}
2024-11-15 23:09:31 +00:00
@include mixins.dark-theme {
@include mixins.color-svg($icon, variables.$color-gray-25);
2021-06-01 20:45:43 +00:00
}
}
}
2023-05-04 18:04:22 +00:00
--button-spacing: 12px;
2021-03-01 20:08:37 +00:00
&.module-ConversationHeader--narrow {
2023-05-04 18:04:22 +00:00
--button-spacing: 4px;
2021-03-01 20:08:37 +00:00
}
2024-11-15 23:09:31 +00:00
@include mixins.draggable-region;
// In Electron v23+, clicking on a `drag` region in an unfocused window may not
// propagate clicks to no-drag elements that have a higher CSS order; this avoids that
// scenario for interactive elements (e.g. IncomingCallBar) which overlap the
// conversation header.
@at-root body:not(.window-focused) & {
-webkit-app-region: no-drag;
}
2021-03-01 20:08:37 +00:00
padding-top: var(--title-bar-drag-area-height);
display: flex;
flex-direction: row;
align-items: center;
2024-11-15 23:09:31 +00:00
height: calc(#{variables.$header-height} + var(--title-bar-drag-area-height));
2021-03-01 20:08:37 +00:00
2024-11-15 23:09:31 +00:00
@include mixins.light-theme {
color: variables.$color-gray-90;
background-color: variables.$color-white;
2021-03-01 20:08:37 +00:00
}
2024-11-15 23:09:31 +00:00
@include mixins.dark-theme {
color: variables.$color-gray-02;
background-color: variables.$color-gray-95;
2021-03-01 20:08:37 +00:00
}
&__header {
$padding: 4px 12px;
align-items: center;
display: flex;
flex-direction: row;
flex-grow: 1;
2023-04-20 17:03:43 +00:00
margin-inline: 4px var(--button-spacing);
2021-03-01 20:08:37 +00:00
padding: $padding;
overflow: hidden;
min-width: 0;
2023-04-20 17:03:43 +00:00
transition: margin-inline-end 200ms ease-out;
2021-03-01 20:08:37 +00:00
&--clickable {
2024-11-15 23:09:31 +00:00
@include mixins.button-reset;
& {
flex: 1;
border-radius: 4px;
-webkit-app-region: no-drag;
// These are clobbered by button-reset:
margin-inline: 4px var(--button-spacing);
padding: $padding;
padding-inline-start: 0;
}
2021-03-01 20:08:37 +00:00
2024-11-15 23:09:31 +00:00
@include mixins.keyboard-mode {
2021-03-01 20:08:37 +00:00
&:focus {
2024-11-15 23:09:31 +00:00
color: variables.$color-ultramarine;
2021-03-01 20:08:37 +00:00
}
}
2024-11-15 23:09:31 +00:00
@include mixins.dark-keyboard-mode {
2021-03-01 20:08:37 +00:00
&:focus {
2024-11-15 23:09:31 +00:00
color: variables.$color-ultramarine-light;
2021-03-01 20:08:37 +00:00
}
}
}
&__avatar {
min-width: 32px;
2023-04-20 17:03:43 +00:00
margin-inline-end: 12px;
2021-03-01 20:08:37 +00:00
padding-top: 4px;
padding-bottom: 4px;
}
&__info {
display: flex;
flex-direction: column;
min-width: 0;
&__title {
2024-11-15 23:09:31 +00:00
@include mixins.font-body-1-bold;
2023-05-04 18:04:22 +00:00
display: flex;
align-items: center;
2021-03-01 20:08:37 +00:00
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
user-select: none;
&__in-contacts-icon {
2023-04-20 17:03:43 +00:00
margin-inline-start: 4px;
2021-03-01 20:08:37 +00:00
}
}
&__subtitle {
display: flex;
2024-11-15 23:09:31 +00:00
@include mixins.font-body-2;
2021-03-01 20:08:37 +00:00
2024-11-15 23:09:31 +00:00
@include mixins.light-theme {
color: variables.$color-gray-60;
2021-03-01 20:08:37 +00:00
}
2024-11-15 23:09:31 +00:00
@include mixins.dark-theme {
color: variables.$color-gray-25;
2021-03-01 20:08:37 +00:00
}
&__expiration {
2023-05-04 18:04:22 +00:00
@include icon-element('../images/icons/v3/timer/timer-compact.svg');
2024-11-15 23:09:31 +00:00
& {
margin-inline-end: 12px;
}
2021-03-01 20:08:37 +00:00
}
&__verified {
2024-09-24 21:16:51 +00:00
@include icon-element(
'../images/icons/v3/safety_number/safety_number-compact.svg'
);
2021-03-01 20:08:37 +00:00
}
}
}
}
&__button {
$icon-size: 32px;
-webkit-app-region: no-drag;
2024-11-15 23:09:31 +00:00
@include mixins.button-reset;
& {
align-items: center;
justify-content: center;
border-radius: 4px;
border: 2px solid transparent;
display: flex;
height: $icon-size;
margin-inline-end: var(--button-spacing);
min-width: $icon-size;
padding: 2px;
transition:
margin-inline-end 200ms ease-out,
opacity 200ms ease-out,
background 100ms ease-out;
width: $icon-size;
}
&:disabled {
cursor: default;
opacity: 0.5;
}
2021-07-20 20:18:35 +00:00
&--show-disabled {
opacity: 0.5;
}
&--in-another-call {
2024-11-15 23:09:31 +00:00
@include mixins.light-theme {
opacity: 0.5;
}
2024-11-15 23:09:31 +00:00
@include mixins.dark-theme {
opacity: 0.4;
}
}
&:not(:disabled) {
2024-11-15 23:09:31 +00:00
@include mixins.light-theme {
&:hover {
2024-11-15 23:09:31 +00:00
background: variables.$color-gray-02;
}
&:focus {
2024-11-15 23:09:31 +00:00
@include mixins.keyboard-mode {
background: variables.$color-gray-02;
}
}
&:active {
2024-11-15 23:09:31 +00:00
background: variables.$color-gray-05;
}
}
2024-11-15 23:09:31 +00:00
@include mixins.dark-theme {
&:hover {
2024-11-15 23:09:31 +00:00
background: variables.$color-gray-80;
}
&:focus {
2024-11-15 23:09:31 +00:00
@include mixins.keyboard-mode {
background: variables.$color-gray-02;
}
}
&:active {
2024-11-15 23:09:31 +00:00
background: variables.$color-gray-75;
}
}
2021-03-01 20:08:37 +00:00
2024-11-15 23:09:31 +00:00
@include mixins.keyboard-mode {
&:focus {
2024-11-15 23:09:31 +00:00
border-color: variables.$color-ultramarine;
}
2021-03-01 20:08:37 +00:00
}
2024-11-15 23:09:31 +00:00
@include mixins.dark-keyboard-mode {
&:focus {
2024-11-15 23:09:31 +00:00
border-color: variables.$color-ultramarine-light;
}
2021-03-01 20:08:37 +00:00
}
}
2022-06-13 23:37:29 +00:00
@mixin normal-button($icon, $size) {
&::before {
content: '';
display: block;
2022-06-13 23:37:29 +00:00
width: $size;
height: $size;
2024-11-15 23:09:31 +00:00
@include mixins.light-theme {
@include mixins.color-svg($icon, variables.$color-gray-75);
&:hover,
&:active,
&:focus {
2024-11-15 23:09:31 +00:00
@include mixins.color-svg($icon, variables.$color-gray-90);
}
}
2024-11-15 23:09:31 +00:00
@include mixins.dark-theme {
@include mixins.color-svg($icon, variables.$color-gray-15);
&:hover,
&:active,
&:focus {
2024-11-15 23:09:31 +00:00
@include mixins.color-svg($icon, variables.$color-gray-02);
}
}
}
}
2021-03-01 20:08:37 +00:00
&--video {
2023-05-04 18:04:22 +00:00
@include normal-button('../images/icons/v3/video/video.svg', 20px);
2021-03-01 20:08:37 +00:00
}
&--audio {
2023-05-04 18:04:22 +00:00
@include normal-button('../images/icons/v3/phone/phone.svg', 20px);
2021-03-01 20:08:37 +00:00
}
&--search {
2023-05-04 18:04:22 +00:00
@include normal-button('../images/icons/v3/search/search.svg', 20px);
2021-03-01 20:08:37 +00:00
}
&--more {
2023-05-04 18:04:22 +00:00
@include normal-button('../images/icons/v3/more/more.svg', 20px);
2024-11-15 23:09:31 +00:00
& {
margin-inline-end: 16px;
}
2021-03-01 20:08:37 +00:00
}
&--join-call {
2024-11-15 23:09:31 +00:00
$background: variables.$color-accent-green;
2024-11-15 23:09:31 +00:00
@include mixins.font-body-1;
@include mixins.rounded-corners;
2021-03-01 20:08:37 +00:00
align-items: center;
background-color: $background;
2024-11-15 23:09:31 +00:00
color: variables.$color-white;
2021-03-01 20:08:37 +00:00
display: flex;
outline: none;
overflow: hidden;
2023-04-20 17:03:43 +00:00
padding-block: 5px;
2023-05-22 23:20:24 +00:00
padding-inline: 10px;
2021-03-01 20:08:37 +00:00
text-overflow: ellipsis;
white-space: nowrap;
user-select: none;
width: auto;
2023-05-22 23:20:24 +00:00
height: 28px;
2021-03-01 20:08:37 +00:00
&:before {
2023-05-04 18:04:22 +00:00
$icon-size: 16px;
2024-11-15 23:09:31 +00:00
@include mixins.color-svg(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/video/video-compact-fill.svg',
2024-11-15 23:09:31 +00:00
variables.$color-white
2021-03-01 20:08:37 +00:00
);
2024-11-15 23:09:31 +00:00
& {
content: '';
display: block;
height: $icon-size;
margin-inline-end: 4px;
min-width: $icon-size;
width: $icon-size;
}
2021-03-01 20:08:37 +00:00
}
&:not(:disabled) {
// Override hover/focus/active state coming from __button above.
&:hover,
&:active {
2024-11-15 23:09:31 +00:00
@include mixins.any-theme {
background-color: color.adjust($background, $lightness: -16%);
}
}
&:focus {
2024-11-15 23:09:31 +00:00
@include mixins.keyboard-mode {
background-color: color.adjust($background, $lightness: -16%);
}
}
}
2021-03-01 20:08:37 +00:00
}
}
2021-06-01 20:45:43 +00:00
&__disappearing-timer__item {
2023-04-20 17:03:43 +00:00
padding-inline-start: 25px;
2021-06-01 20:45:43 +00:00
&--active {
2023-04-20 17:03:43 +00:00
padding-inline-start: 0px;
2023-05-04 18:04:22 +00:00
@include icon-element('../images/icons/v3/check/check-compact.svg', 12px);
2021-06-01 20:45:43 +00:00
}
}
2021-03-01 20:08:37 +00:00
}