2018-04-12 01:23:35 +02:00
|
|
|
/*
|
2024-09-09 15:57:16 +02:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2018-04-12 01:23:35 +02:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
|
|
|
2024-09-09 15:57:16 +02: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-04-12 01:23:35 +02:00
|
|
|
*/
|
|
|
|
|
2022-06-25 13:54:07 +02:00
|
|
|
.mx_IntegrationManager {
|
2024-03-13 14:38:32 +01:00
|
|
|
.mx_Dialog_border {
|
2022-06-25 13:54:07 +02:00
|
|
|
box-sizing: border-box;
|
|
|
|
width: 60%;
|
|
|
|
height: 70%;
|
|
|
|
max-width: initial;
|
|
|
|
max-height: initial;
|
|
|
|
}
|
|
|
|
|
2024-03-13 14:38:32 +01:00
|
|
|
.mx_Dialog {
|
|
|
|
padding: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2022-06-25 13:54:07 +02:00
|
|
|
iframe {
|
|
|
|
background-color: #fff;
|
|
|
|
border: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
margin-block: $spacing-20;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_IntegrationManager_loading,
|
|
|
|
.mx_IntegrationManager_error {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_IntegrationManager_error h3 {
|
|
|
|
color: $alert;
|
|
|
|
}
|
2019-07-09 19:15:10 +02:00
|
|
|
}
|