Add backup media download progress to settings pane

This commit is contained in:
trevor-signal
2025-07-03 14:30:13 -04:00
committed by GitHub
parent 9963daf3bf
commit fc67ac8e7b
16 changed files with 355 additions and 189 deletions
@@ -138,4 +138,7 @@ button.BackupMediaDownloadProgress__button-close {
.BackupMediaDownloadCancelConfirmation {
min-width: 440px;
a {
text-decoration: none;
}
}
@@ -0,0 +1,31 @@
// Copyright 2025 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
@use '../mixins';
@use '../variables';
.BackupMediaDownloadProgressSettings {
display: flex;
flex-direction: row;
align-items: center;
gap: 20px;
&__buttons {
display: flex;
gap: 12px;
}
}
.BackupMediaDownloadProgressSettings__content {
display: flex;
flex-direction: column;
justify-content: center;
gap: 5px;
flex: 1;
}
.BackupMediaDownloadProgressSettings__description {
color: light-dark(variables.$color-gray-60, variables.$color-gray-25);
font-size: 12px;
line-height: 16px;
}