2018-04-12 07:23:35 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2018-04-12 07:23:35 +08:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
|
|
|
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.
|
2018-04-12 07:23:35 +08:00
|
|
|
*/
|
|
|
|
|
2022-06-25 19:54:07 +08:00
|
|
|
.mx_IntegrationManager {
|
2024-03-13 21:38:32 +08:00
|
|
|
.mx_Dialog_border {
|
2022-06-25 19:54:07 +08:00
|
|
|
box-sizing: border-box;
|
|
|
|
width: 60%;
|
|
|
|
height: 70%;
|
|
|
|
max-width: initial;
|
|
|
|
max-height: initial;
|
|
|
|
}
|
|
|
|
|
2024-03-13 21:38:32 +08:00
|
|
|
.mx_Dialog {
|
|
|
|
padding: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2022-06-25 19:54:07 +08: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-10 01:15:10 +08:00
|
|
|
}
|