2018-11-20 21:11:58 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2018-2024 New Vector Ltd.
|
2018-11-20 21:11:58 +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.
|
2018-11-20 21:11:58 +08:00
|
|
|
*/
|
2018-12-18 22:34:02 +08:00
|
|
|
|
2019-01-05 00:03:14 +08:00
|
|
|
.mx_CreateKeyBackupDialog .mx_Dialog_title {
|
|
|
|
/* TODO: Consider setting this for all dialog titles. */
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
2018-11-20 21:11:58 +08:00
|
|
|
.mx_CreateKeyBackupDialog_primaryContainer {
|
2021-11-11 21:37:29 +08:00
|
|
|
/* FIXME: plinth colour in new theme(s). background-color: $accent; */
|
2019-07-10 01:15:10 +08:00
|
|
|
padding: 20px;
|
2018-11-20 21:11:58 +08:00
|
|
|
}
|
|
|
|
|
2018-11-23 23:50:23 +08:00
|
|
|
.mx_CreateKeyBackupDialog_primaryContainer::after {
|
|
|
|
content: "";
|
|
|
|
clear: both;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2018-12-19 18:56:50 +08:00
|
|
|
.mx_CreateKeyBackupDialog_passPhraseContainer {
|
|
|
|
display: flex;
|
2019-12-23 11:56:19 +08:00
|
|
|
align-items: flex-start;
|
2018-12-19 18:56:50 +08:00
|
|
|
}
|
|
|
|
|
2018-11-20 21:11:58 +08:00
|
|
|
.mx_CreateKeyBackupDialog_passPhraseInput {
|
2018-12-19 18:56:50 +08:00
|
|
|
flex: none;
|
2018-11-23 23:50:23 +08:00
|
|
|
width: 250px;
|
2021-11-11 21:37:29 +08:00
|
|
|
border: 1px solid $accent;
|
2018-11-20 21:11:58 +08:00
|
|
|
border-radius: 5px;
|
|
|
|
padding: 10px;
|
2018-12-19 18:56:50 +08:00
|
|
|
margin-bottom: 1em;
|
2018-11-20 21:11:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_CreateKeyBackupDialog_passPhraseMatch {
|
2018-12-19 18:56:50 +08:00
|
|
|
margin-left: 20px;
|
2018-11-20 21:11:58 +08:00
|
|
|
}
|
|
|
|
|
2018-12-19 01:26:11 +08:00
|
|
|
.mx_CreateKeyBackupDialog_recoveryKeyHeader {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_CreateKeyBackupDialog_recoveryKeyContainer {
|
|
|
|
display: flex;
|
2018-11-20 21:11:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_CreateKeyBackupDialog_recoveryKey {
|
2018-12-19 18:56:50 +08:00
|
|
|
width: 262px;
|
2018-12-18 22:34:02 +08:00
|
|
|
padding: 20px;
|
|
|
|
color: $info-plinth-fg-color;
|
|
|
|
background-color: $info-plinth-bg-color;
|
2018-12-19 18:56:50 +08:00
|
|
|
margin-right: 12px;
|
2018-12-19 01:26:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_CreateKeyBackupDialog_recoveryKeyButtons {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2018-11-20 21:11:58 +08:00
|
|
|
}
|
2019-01-04 23:51:20 +08:00
|
|
|
|
|
|
|
.mx_CreateKeyBackupDialog_recoveryKeyButtons button {
|
|
|
|
flex: 1;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2020-02-09 22:49:54 +08:00
|
|
|
|
|
|
|
.mx_CreateKeyBackupDialog {
|
|
|
|
details .mx_AccessibleButton {
|
2022-07-27 21:39:29 +08:00
|
|
|
margin: 1em 0; /* emulate paragraph spacing because we can't put this button in a paragraph due to HTML rules */
|
2020-02-09 22:49:54 +08:00
|
|
|
}
|
|
|
|
}
|