Files
element-web/res/css/views/dialogs/security/_CreateKeyBackupDialog.pcss
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

74 lines
1.6 KiB
Plaintext
Raw Normal View History

2018-11-20 13:11:58 +00:00
/*
2024-09-09 14:57:16 +01:00
Copyright 2018-2024 New Vector Ltd.
2018-11-20 13:11:58 +00:00
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
2024-09-09 14:57:16 +01:00
Please see LICENSE files in the repository root for full details.
2018-11-20 13:11:58 +00:00
*/
2019-01-04 10:03:14 -06:00
.mx_CreateKeyBackupDialog .mx_Dialog_title {
/* TODO: Consider setting this for all dialog titles. */
margin-bottom: 1em;
}
2018-11-20 13:11:58 +00:00
.mx_CreateKeyBackupDialog_primaryContainer {
2021-11-11 14:37:29 +01:00
/* FIXME: plinth colour in new theme(s). background-color: $accent; */
2019-07-09 18:15:10 +01:00
padding: 20px;
2018-11-20 13:11:58 +00:00
}
.mx_CreateKeyBackupDialog_primaryContainer::after {
content: "";
clear: both;
display: block;
}
2018-12-19 10:56:50 +00:00
.mx_CreateKeyBackupDialog_passPhraseContainer {
display: flex;
2019-12-22 20:56:19 -07:00
align-items: flex-start;
2018-12-19 10:56:50 +00:00
}
2018-11-20 13:11:58 +00:00
.mx_CreateKeyBackupDialog_passPhraseInput {
2018-12-19 10:56:50 +00:00
flex: none;
width: 250px;
2021-11-11 14:37:29 +01:00
border: 1px solid $accent;
2018-11-20 13:11:58 +00:00
border-radius: 5px;
padding: 10px;
2018-12-19 10:56:50 +00:00
margin-bottom: 1em;
2018-11-20 13:11:58 +00:00
}
.mx_CreateKeyBackupDialog_passPhraseMatch {
2018-12-19 10:56:50 +00:00
margin-left: 20px;
2018-11-20 13:11:58 +00:00
}
2018-12-18 17:26:11 +00:00
.mx_CreateKeyBackupDialog_recoveryKeyHeader {
margin-bottom: 1em;
}
.mx_CreateKeyBackupDialog_recoveryKeyContainer {
display: flex;
2018-11-20 13:11:58 +00:00
}
.mx_CreateKeyBackupDialog_recoveryKey {
2018-12-19 10:56:50 +00:00
width: 262px;
padding: 20px;
color: $info-plinth-fg-color;
background-color: $info-plinth-bg-color;
2018-12-19 10:56:50 +00:00
margin-right: 12px;
2018-12-18 17:26:11 +00:00
}
.mx_CreateKeyBackupDialog_recoveryKeyButtons {
flex: 1;
display: flex;
align-items: center;
2018-11-20 13:11:58 +00:00
}
2019-01-04 09:51:20 -06:00
.mx_CreateKeyBackupDialog_recoveryKeyButtons button {
flex: 1;
white-space: nowrap;
}
.mx_CreateKeyBackupDialog {
details .mx_AccessibleButton {
margin: 1em 0; /* emulate paragraph spacing because we can't put this button in a paragraph due to HTML rules */
}
}