2019-07-10 01:51:56 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2019-07-10 01:51:56 +08:00
|
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
|
|
|
|
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-07-10 01:51:56 +08:00
|
|
|
*/
|
|
|
|
|
2019-07-23 22:11:38 +08:00
|
|
|
/*
|
|
|
|
* To avoid visual glitching of two modals stacking briefly, we customise the
|
2019-11-21 11:14:20 +08:00
|
|
|
* terms dialog sizing when it will appear for the integration manager so that
|
2019-07-23 22:11:38 +08:00
|
|
|
* it gets the same basic size as the IM's own modal.
|
|
|
|
*/
|
2024-03-13 21:38:32 +08:00
|
|
|
.mx_TermsDialog_forIntegrationManager .mx_Dialog_border {
|
2019-07-23 22:11:38 +08:00
|
|
|
width: 60%;
|
|
|
|
height: 70%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2019-07-10 01:51:56 +08:00
|
|
|
.mx_TermsDialog_termsTableHeader {
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_TermsDialog_termsTable {
|
2020-03-31 22:26:23 +08:00
|
|
|
font-size: $font-12px;
|
2019-07-23 22:11:38 +08:00
|
|
|
width: 100%;
|
2019-07-10 01:51:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_TermsDialog_service,
|
|
|
|
.mx_TermsDialog_summary {
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|