a92d2902c4
This adds an in-room reminder above the message timeline to set up Secure Message Recovery so that your keys will be backed up. If you try to ignore it, an additional dialog is shown to confirm. Fixes vector-im/riot-web#7783. Signed-off-by: J. Ryan Stinnett <jryans@gmail.com>
43 lines
1.1 KiB
SCSS
43 lines
1.1 KiB
SCSS
/*
|
|
Copyright 2018 New Vector Ltd
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
.mx_RoomRecoveryReminder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
text-align: center;
|
|
background-color: $room-warning-bg-color;
|
|
padding: 20px;
|
|
border: 1px solid $primary-hairline-color;
|
|
border-bottom: unset;
|
|
}
|
|
|
|
.mx_RoomRecoveryReminder_header {
|
|
font-weight: bold;
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.mx_RoomRecoveryReminder_body {
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.mx_RoomRecoveryReminder_button {
|
|
@mixin mx_DialogButton;
|
|
margin: 0 10px;
|
|
}
|
|
|
|
.mx_RoomRecoveryReminder_button.mx_RoomRecoveryReminder_secondary {
|
|
@mixin mx_DialogButton_secondary;
|
|
}
|