2019-12-05 23:05:28 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
|
|
|
Copyright 2018, 2019 , 2021 The Matrix.org Foundation C.I.C.
|
2019-12-05 23:05:28 +08:00
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2019-12-05 23:05:28 +08:00
|
|
|
*/
|
|
|
|
|
2022-06-15 23:47:25 +08:00
|
|
|
.mx_AccessSecretStorageDialog {
|
|
|
|
.mx_AccessSecretStorageDialog_titleWithIcon {
|
|
|
|
&::before {
|
|
|
|
content: "";
|
|
|
|
display: inline-block;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
margin-inline-end: $spacing-8;
|
|
|
|
position: relative;
|
2023-06-06 22:03:52 +08:00
|
|
|
top: 5px;
|
2022-06-15 23:47:25 +08:00
|
|
|
background-color: $primary-content;
|
|
|
|
}
|
2020-06-26 19:56:41 +08:00
|
|
|
|
2022-06-15 23:47:25 +08:00
|
|
|
&.mx_AccessSecretStorageDialog_resetBadge::before {
|
2022-07-27 21:39:29 +08:00
|
|
|
/* The image isn't capable of masking, so we use a background instead. */
|
2022-06-15 23:47:25 +08:00
|
|
|
background-image: url("$(res)/img/element-icons/warning-badge.svg");
|
|
|
|
background-size: 24px;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
2019-12-05 23:05:28 +08:00
|
|
|
|
2022-06-15 23:47:25 +08:00
|
|
|
&.mx_AccessSecretStorageDialog_secureBackupTitle::before {
|
|
|
|
mask-image: url("$(res)/img/feather-customised/secure-backup.svg");
|
|
|
|
}
|
2019-12-05 23:05:28 +08:00
|
|
|
|
2022-06-15 23:47:25 +08:00
|
|
|
&.mx_AccessSecretStorageDialog_securePhraseTitle::before {
|
|
|
|
mask-image: url("$(res)/img/feather-customised/secure-phrase.svg");
|
|
|
|
}
|
|
|
|
}
|
2020-06-26 22:22:04 +08:00
|
|
|
|
2022-06-15 23:47:25 +08:00
|
|
|
.mx_AccessSecretStorageDialog_primaryContainer {
|
|
|
|
.mx_AccessSecretStorageDialog_passPhraseInput {
|
|
|
|
width: 300px;
|
|
|
|
border: 1px solid $accent;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
2020-06-26 22:22:04 +08:00
|
|
|
|
2022-06-15 23:47:25 +08:00
|
|
|
.mx_AccessSecretStorageDialog_keyStatus {
|
|
|
|
height: 30px;
|
|
|
|
}
|
2020-06-26 22:22:04 +08:00
|
|
|
|
2022-06-15 23:47:25 +08:00
|
|
|
.mx_AccessSecretStorageDialog_recoveryKeyEntry {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2020-06-26 22:22:04 +08:00
|
|
|
|
2022-06-15 23:47:25 +08:00
|
|
|
.mx_AccessSecretStorageDialog_recoveryKeyEntry_textInput {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
2020-06-26 22:22:04 +08:00
|
|
|
|
2022-06-15 23:47:25 +08:00
|
|
|
.mx_AccessSecretStorageDialog_recoveryKeyEntry_entryControlSeparatorText {
|
|
|
|
margin: $spacing-16;
|
|
|
|
}
|
2020-06-26 22:22:04 +08:00
|
|
|
|
2022-06-15 23:47:25 +08:00
|
|
|
.mx_AccessSecretStorageDialog_recoveryKeyEntry_fileInput {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2022-05-11 20:33:21 +08:00
|
|
|
|
2022-06-15 23:47:25 +08:00
|
|
|
.mx_AccessSecretStorageDialog_recoveryKeyFeedback {
|
|
|
|
&::before {
|
|
|
|
content: "";
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: bottom;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
|
|
|
mask-size: 20px;
|
2023-06-06 22:03:52 +08:00
|
|
|
margin-inline-end: 5px;
|
2022-06-15 23:47:25 +08:00
|
|
|
}
|
2022-05-11 20:33:21 +08:00
|
|
|
|
2022-06-15 23:47:25 +08:00
|
|
|
&.mx_AccessSecretStorageDialog_recoveryKeyFeedback--valid {
|
|
|
|
color: $accent;
|
2022-05-11 20:33:21 +08:00
|
|
|
|
2022-06-15 23:47:25 +08:00
|
|
|
&::before {
|
|
|
|
mask-image: url("$(res)/img/feather-customised/check.svg");
|
|
|
|
background-color: $accent;
|
|
|
|
}
|
|
|
|
}
|
2022-05-11 20:33:21 +08:00
|
|
|
|
2022-06-15 23:47:25 +08:00
|
|
|
&.mx_AccessSecretStorageDialog_recoveryKeyFeedback--invalid {
|
|
|
|
color: $alert;
|
2022-05-11 20:33:21 +08:00
|
|
|
|
|
|
|
&::before {
|
2024-10-02 18:06:17 +08:00
|
|
|
mask-image: url("@vector-im/compound-design-tokens/icons/close.svg");
|
2022-06-15 23:47:25 +08:00
|
|
|
background-color: $alert;
|
2022-05-11 20:33:21 +08:00
|
|
|
}
|
2022-06-15 23:47:25 +08:00
|
|
|
}
|
|
|
|
}
|
2022-05-11 20:33:21 +08:00
|
|
|
|
2022-06-15 23:47:25 +08:00
|
|
|
.mx_Dialog_buttons {
|
2022-07-27 21:39:29 +08:00
|
|
|
$spacingStart: $spacing-24; /* 16px icon + 8px padding */
|
2022-06-15 23:47:25 +08:00
|
|
|
|
|
|
|
text-align: initial;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
2023-06-06 22:03:52 +08:00
|
|
|
gap: 14px;
|
2022-06-15 23:47:25 +08:00
|
|
|
|
|
|
|
.mx_Dialog_buttons_additive {
|
|
|
|
float: none;
|
|
|
|
|
|
|
|
.mx_AccessSecretStorageDialog_reset {
|
|
|
|
position: relative;
|
|
|
|
padding-inline-start: $spacingStart;
|
2024-03-07 07:34:14 +08:00
|
|
|
/* To avoid bold styling inherent with <strong> elements */
|
|
|
|
font-weight: inherit;
|
2022-06-15 23:47:25 +08:00
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: "";
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
|
|
|
left: 0;
|
2022-07-27 21:39:29 +08:00
|
|
|
top: 2px; /* alignment */
|
2022-06-15 23:47:25 +08:00
|
|
|
background-image: url("$(res)/img/element-icons/warning-badge.svg");
|
|
|
|
background-size: contain;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AccessSecretStorageDialog_reset_link {
|
|
|
|
color: $alert;
|
|
|
|
}
|
2022-05-11 20:33:21 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-15 23:47:25 +08:00
|
|
|
.mx_Dialog_buttons_row {
|
2022-07-27 21:39:29 +08:00
|
|
|
gap: $spacing-16; /* TODO: needs normalization */
|
2022-06-15 23:47:25 +08:00
|
|
|
padding-inline-start: $spacingStart;
|
|
|
|
}
|
2022-05-11 20:33:21 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|