signal-desktop/stylesheets/components/LeftPaneDialog.scss

288 lines
5.5 KiB
SCSS
Raw Normal View History

2023-01-03 19:55:46 +00:00
// Copyright 2021 Signal Messenger, LLC
2021-10-01 21:52:36 +00:00
// SPDX-License-Identifier: AGPL-3.0-only
@keyframes progress-animation {
0% {
background-position: 100%;
}
100% {
background-position: -100%;
}
}
.LeftPaneDialog {
$default-background-color: $color-ultramarine;
$default-text-color: $color-white;
$error-background-color: $color-accent-red;
$error-text-color: $default-text-color;
$warning-background-color: $color-accent-yellow;
$warning-text-color: $color-black;
align-items: center;
background: $default-background-color;
color: $default-text-color;
2022-01-27 22:12:26 +00:00
cursor: inherit;
display: flex;
min-height: 64px;
2023-03-15 16:57:27 +00:00
padding: 12px 14px 12px 16px;
2021-09-17 22:20:49 +00:00
user-select: none;
2022-01-27 22:12:26 +00:00
width: 100%;
2023-03-15 16:57:27 +00:00
font-size: 13px;
line-height: 18px;
letter-spacing: -0.0025em;
font-weight: 400;
.module-left-pane--width-narrow & {
padding-left: 36px;
}
2022-02-02 21:13:56 +00:00
&__retry {
@include button-reset;
@include font-body-1-bold;
}
2021-10-05 14:22:41 +00:00
&--clickable {
cursor: pointer;
}
&__container {
display: flex;
align-items: center;
flex-grow: 1;
}
&__container-close {
display: flex;
justify-content: flex-end;
.module-left-pane--width-narrow & {
display: none;
}
}
&__spinner-container {
margin-right: 18px;
}
&__spinner {
&__arc {
background-color: $color-black;
// Needed for specificity
@include dark-theme {
background-color: $color-black;
}
}
&__circle {
background-color: $color-accent-yellow;
}
}
&__icon {
2021-09-17 22:20:49 +00:00
width: 24px;
height: 24px;
margin-right: 18px;
background-color: $color-white;
2021-09-17 22:20:49 +00:00
-webkit-mask-size: contain;
@media (forced-colors: active) {
background-color: WindowText;
}
2021-08-24 20:59:44 +00:00
&--relink {
-webkit-mask: url('../images/icons/v2/link-broken-16.svg') no-repeat
center;
}
&--network {
-webkit-mask: url('../images/icons/v2/offline-22.svg') no-repeat center;
}
&--update {
-webkit-mask: url('../images/icons/v2/refresh-24.svg') no-repeat center;
}
&--warning {
-webkit-mask: url('../images/icons/v2/warning-outline-24.svg') no-repeat
center;
}
}
&__action-text {
@include button-reset;
text-decoration: none;
2023-03-15 16:57:27 +00:00
color: $color-white-alpha-80;
}
&__close-button {
@include button-reset;
border-radius: 4px;
float: right;
2023-03-15 16:57:27 +00:00
height: 20px;
width: 20px;
&::before {
-webkit-mask: url('../images/icons/v2/x-24.svg') no-repeat center;
background-color: $color-white;
content: '';
display: block;
width: 100%;
height: 100%;
@media (forced-colors: active) {
background-color: WindowText;
@include dark-theme {
background-color: WindowText;
}
}
}
&:hover,
&:focus {
background-color: $color-white-alpha-20;
}
&:active {
background-color: $color-white-alpha-20;
}
@media (forced-colors: active) {
&:hover,
&:focus,
&:active {
background-color: none;
}
@include dark-theme {
&:hover,
&:focus,
&:active {
background-color: none;
}
}
}
}
&__message {
width: 100%;
.module-left-pane--width-narrow & {
display: none;
}
}
&__message,
&__tooltip {
2023-01-18 23:31:10 +00:00
max-width: 250px;
h3 {
@include font-body-1-bold;
padding: 0px;
margin: 0px;
}
span {
@include font-body-1;
display: inline-block;
}
a {
font-weight: bold;
text-decoration: none;
}
}
&--error {
background-color: $error-background-color;
color: $error-text-color;
2023-01-18 23:31:10 +00:00
a {
color: $error-text-color;
}
2023-03-15 16:57:27 +00:00
.LeftPaneDialog__action-text {
color: $error-text-color;
}
}
&--warning {
background-color: $warning-background-color;
color: $warning-text-color;
a {
color: $color-black;
}
.LeftPaneDialog__icon {
background-color: $color-black;
@media (forced-colors: active) {
background-color: WindowText;
}
}
.LeftPaneDialog__close-button::before {
background-color: $color-black;
@media (forced-colors: active) {
background-color: WindowText;
}
}
2023-03-15 16:57:27 +00:00
.LeftPaneDialog__action-text {
color: $warning-text-color;
}
}
&__progress {
&--container {
background: $color-white-alpha-20;
border-radius: 2px;
height: 4px;
max-width: 210px;
overflow: hidden;
width: 100%;
2023-03-15 16:57:27 +00:00
margin: 10px 0 6px 0;
}
&--bar {
animation: progress-animation 2s linear infinite;
background: linear-gradient(
90deg,
$color-white-alpha-40,
$color-white-alpha-60,
$color-white-alpha-90,
$color-white-alpha-60,
$color-white-alpha-40
);
background-size: 200% 100%;
border-radius: 2px;
display: block;
height: 100%;
width: 100%;
transform: translateX(-100%);
transition: transform 500ms ease-out;
}
}
&__tooltip {
--tooltip-background-color: #{$default-background-color};
--tooltip-text-color: #{$default-text-color};
min-width: 280px;
text-align: inherit;
&--error {
--tooltip-text-color: #{$error-text-color};
--tooltip-background-color: #{$error-background-color};
2023-01-18 23:31:10 +00:00
a {
color: #{$error-text-color};
}
}
&--warning {
--tooltip-text-color: #{$warning-text-color};
--tooltip-background-color: #{$warning-background-color};
}
}
}