2019-02-07 20:53:41 +03:00
|
|
|
/*
|
2024-09-09 16:57:16 +03:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2020-01-31 18:28:58 +03:00
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
2024-09-09 16:57:16 +03:00
|
|
|
Copyright 2019 New Vector Ltd.
|
2019-02-07 20:53:41 +03:00
|
|
|
|
2024-09-09 16:57:16 +03: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-02-07 20:53:41 +03:00
|
|
|
*/
|
|
|
|
|
2019-02-08 17:57:36 +03:00
|
|
|
.mx_VerificationShowSas_decimalSas {
|
2019-02-07 20:53:41 +03:00
|
|
|
text-align: center;
|
|
|
|
font-weight: bold;
|
|
|
|
padding-left: 3px;
|
|
|
|
padding-right: 3px;
|
|
|
|
}
|
2019-02-08 17:57:36 +03:00
|
|
|
|
|
|
|
.mx_VerificationShowSas_decimalSas span {
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_VerificationShowSas_emojiSas {
|
|
|
|
text-align: center;
|
2020-01-30 01:44:49 +03:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: center;
|
|
|
|
margin: 25px 0;
|
2019-02-08 17:57:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_VerificationShowSas_emojiSas_block {
|
|
|
|
display: inline-block;
|
2020-01-31 18:28:58 +03:00
|
|
|
margin-bottom: 16px;
|
2020-01-30 01:44:49 +03:00
|
|
|
position: relative;
|
2020-01-31 18:28:58 +03:00
|
|
|
width: 52px;
|
2019-02-08 17:57:36 +03:00
|
|
|
}
|
|
|
|
|
2020-02-01 15:48:52 +03:00
|
|
|
.mx_Dialog .mx_VerificationShowSas_emojiSas_block,
|
|
|
|
.mx_AuthPage_modal .mx_VerificationShowSas_emojiSas_block {
|
|
|
|
width: 60px;
|
2019-02-08 17:57:36 +03:00
|
|
|
}
|
|
|
|
|
2020-02-01 15:48:52 +03:00
|
|
|
.mx_VerificationShowSas_emojiSas_emoji {
|
2020-03-31 17:26:23 +03:00
|
|
|
font-size: $font-32px;
|
2023-11-23 16:04:05 +03:00
|
|
|
/* Use the Twemoji font for consistency with other clients */
|
|
|
|
font-family: Twemoji, var(--cpd-font-family-sans);
|
2020-01-30 01:44:49 +03:00
|
|
|
}
|
|
|
|
|
2019-02-08 17:57:36 +03:00
|
|
|
.mx_VerificationShowSas_emojiSas_label {
|
2020-01-31 18:28:58 +03:00
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
2020-03-31 17:26:23 +03:00
|
|
|
font-size: $font-12px;
|
2020-01-30 01:44:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_VerificationShowSas_emojiSas_break {
|
|
|
|
flex-basis: 100%;
|
2019-02-08 17:57:36 +03:00
|
|
|
}
|
2020-04-07 21:03:12 +03:00
|
|
|
|
2021-10-14 07:46:15 +03:00
|
|
|
.mx_VerificationShowSas_buttonRow {
|
|
|
|
text-align: center;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: center;
|
2021-11-15 12:09:19 +03:00
|
|
|
gap: 9px;
|
2020-04-07 21:03:12 +03:00
|
|
|
}
|