signal-desktop/stylesheets/components/CallingButton.scss

231 lines
5.6 KiB
SCSS
Raw Normal View History

2021-12-07 16:00:26 +00:00
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2024-11-15 23:09:31 +00:00
@use '../mixins';
@use '../variables';
2021-12-07 16:00:26 +00:00
.CallingButton {
@mixin icon($path) {
2024-11-15 23:09:31 +00:00
@include mixins.color-svg($path, variables.$color-white);
2023-05-04 18:04:22 +00:00
height: 20px;
width: 20px;
2023-05-05 16:23:43 +00:00
border: none;
2021-12-07 16:00:26 +00:00
}
&__icon {
align-items: center;
2023-10-25 13:40:22 +00:00
border-radius: 40px;
2021-12-07 16:00:26 +00:00
border: none;
display: flex;
2023-10-25 13:40:22 +00:00
height: 36px;
2021-12-07 16:00:26 +00:00
justify-content: center;
outline: none;
2023-10-25 13:40:22 +00:00
width: 36px;
2024-11-15 23:09:31 +00:00
@include mixins.keyboard-mode {
2023-10-25 13:40:22 +00:00
&:focus {
outline-offset: 1px;
2024-11-15 23:09:31 +00:00
outline: 2px solid variables.$color-ultramarine;
2023-10-25 13:40:22 +00:00
}
}
2021-12-07 16:00:26 +00:00
@mixin calling-button-icon($icon, $background-color, $icon-color) {
background-color: $background-color;
div {
2024-11-15 23:09:31 +00:00
@include mixins.color-svg($icon, $icon-color);
& {
height: 20px;
width: 20px;
}
2021-12-07 16:00:26 +00:00
}
}
2023-05-17 17:51:21 +00:00
@mixin calling-button-icon-highlighted($icon) {
2024-11-15 23:09:31 +00:00
@include calling-button-icon(
$icon,
variables.$color-gray-15,
variables.$color-gray-90
);
2021-12-07 16:00:26 +00:00
}
2023-05-17 17:51:21 +00:00
@mixin calling-button-icon-regular($icon) {
2024-11-15 23:09:31 +00:00
@include calling-button-icon(
$icon,
variables.$color-gray-60,
variables.$color-gray-15
);
& {
backdrop-filter: blur(10px);
}
2021-12-07 16:00:26 +00:00
}
@mixin calling-button-icon-disabled($icon) {
2024-11-15 23:09:31 +00:00
@include calling-button-icon(
$icon,
variables.$color-gray-60,
variables.$color-gray-15
);
& {
opacity: 0.4;
}
2021-12-07 16:00:26 +00:00
}
&--audio {
2023-05-04 18:04:22 +00:00
$icon: '../images/icons/v3/mic/mic-slash-fill-light.svg';
2021-12-07 16:00:26 +00:00
&--on {
2023-05-17 17:51:21 +00:00
@include calling-button-icon-regular(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/mic/mic-fill-light.svg'
);
2021-12-07 16:00:26 +00:00
}
&--off {
2023-05-17 17:51:21 +00:00
@include calling-button-icon-highlighted($icon);
2021-12-07 16:00:26 +00:00
}
&--disabled {
@include calling-button-icon-disabled($icon);
}
}
&--video {
2023-05-04 18:04:22 +00:00
$icon: '../images/icons/v3/video/video-slash-fill-light.svg';
2021-12-07 16:00:26 +00:00
&--on {
2023-05-17 17:51:21 +00:00
@include calling-button-icon-regular(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/video/video-fill-light.svg'
);
2021-12-07 16:00:26 +00:00
}
&--off {
2023-05-17 17:51:21 +00:00
@include calling-button-icon-highlighted($icon);
2021-12-07 16:00:26 +00:00
}
&--disabled {
@include calling-button-icon-disabled($icon);
}
}
&--hangup {
@include calling-button-icon(
2023-05-04 18:04:22 +00:00
'../images/icons/v3/phone/phone-down-fill-light.svg',
2024-11-15 23:09:31 +00:00
variables.$color-accent-red,
variables.$color-white
2021-12-07 16:00:26 +00:00
);
}
&--raise-hand {
$icon: '../images/icons/v3/raise_hand/raise_hand-fill-light.svg';
&--on {
@include calling-button-icon-highlighted($icon);
}
&--off {
@include calling-button-icon-regular($icon);
}
}
&--react {
$icon: '../images/icons/v3/heart/heart-plus-fill.svg';
&--on {
@include calling-button-icon-highlighted($icon);
}
&--off {
@include calling-button-icon-regular($icon);
}
}
2021-12-07 16:00:26 +00:00
&--ring {
2023-05-17 17:51:21 +00:00
$icon: '../images/icons/v3/bell/bell-slash-fill.svg';
2021-12-07 16:00:26 +00:00
&--on {
2023-05-17 17:51:21 +00:00
@include calling-button-icon-regular(
'../images/icons/v3/bell/bell-ring-fill-light.svg'
);
2021-12-07 16:00:26 +00:00
}
&--off {
2023-05-17 17:51:21 +00:00
@include calling-button-icon-highlighted($icon);
2021-12-07 16:00:26 +00:00
}
&--disabled {
@include calling-button-icon-disabled($icon);
}
}
&--presenting {
2023-05-04 18:04:22 +00:00
$icon: '../images/icons/v3/share_screen/share_screen-fill-light.svg';
2021-12-07 16:00:26 +00:00
&--on {
2023-05-17 17:51:21 +00:00
@include calling-button-icon-highlighted($icon);
2021-12-07 16:00:26 +00:00
}
&--off {
2023-05-17 17:51:21 +00:00
@include calling-button-icon-regular($icon);
2021-12-07 16:00:26 +00:00
}
&--disabled {
@include calling-button-icon-disabled($icon);
}
}
2023-11-16 19:55:35 +00:00
&--more-options {
@include calling-button-icon-regular('../images/icons/v3/more/more.svg');
}
2021-12-07 16:00:26 +00:00
}
2023-10-25 13:40:22 +00:00
&__button-container {
2021-12-07 16:00:26 +00:00
display: inline-flex;
flex-direction: column;
max-width: 64px;
2023-10-25 13:40:22 +00:00
margin-inline: 10px;
2021-12-07 16:00:26 +00:00
2024-07-24 00:31:40 +00:00
transition:
margin-inline-start 0.3s ease-out,
opacity 0.3s ease-out;
2021-12-07 16:00:26 +00:00
@media (prefers-reduced-motion) {
transition: none;
}
&--hidden {
2023-04-20 17:03:43 +00:00
margin-inline-start: -100px;
2021-12-07 16:00:26 +00:00
opacity: 0;
pointer-events: none;
// The container could be wider than 100px depending on the label. Hiding the label
// ensures that the above `margin-left` will completely hide the button.
.CallingButton__label {
display: none;
}
}
}
2023-10-25 13:40:22 +00:00
&__tooltip {
2024-11-15 23:09:31 +00:00
background-color: variables.$color-gray-80;
color: variables.$color-gray-15;
2023-10-25 13:40:22 +00:00
font-size: 13px;
2024-11-15 23:09:31 +00:00
outline: 1px solid variables.$color-gray-62;
2023-10-25 13:40:22 +00:00
padding-block: 5px;
padding-inline: 12px;
2024-11-15 23:09:31 +00:00
filter: drop-shadow(0px 4px 3px variables.$color-black-alpha-20);
pointer-events: none;
2023-10-25 13:40:22 +00:00
}
&__tooltip .module-tooltip-arrow::before {
position: absolute;
content: '';
border-style: solid;
border-width: 7px;
}
&__tooltip[data-placement='bottom'] .module-tooltip-arrow::before {
2024-11-15 23:09:31 +00:00
border-color: transparent transparent variables.$color-gray-62 transparent;
margin-top: -14px;
/* stylelint-disable-next-line liberty/use-logical-spec */
margin-left: -7px;
2023-10-25 13:40:22 +00:00
}
&__tooltip[data-placement='bottom'] .module-tooltip-arrow::after {
2024-11-15 23:09:31 +00:00
border-bottom-color: variables.$color-gray-80 !important;
2023-10-25 13:40:22 +00:00
}
&__tooltip[data-placement='top'] .module-tooltip-arrow::before {
2024-11-15 23:09:31 +00:00
border-color: variables.$color-gray-62 transparent transparent transparent;
margin-top: 0;
/* stylelint-disable-next-line liberty/use-logical-spec */
margin-left: -7px;
2023-10-25 13:40:22 +00:00
}
&__tooltip[data-placement='top'] .module-tooltip-arrow::after {
2024-11-15 23:09:31 +00:00
border-top-color: variables.$color-gray-80 !important;
2021-12-07 16:00:26 +00:00
}
}