2018-08-17 21:54:43 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2018-2024 New Vector Ltd.
|
2018-08-17 21:54:43 +08:00
|
|
|
|
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-08-17 21:54:43 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_RoomUpgradeWarningBar {
|
2019-06-26 05:40:22 +08:00
|
|
|
max-height: 235px;
|
2021-11-29 20:52:09 +08:00
|
|
|
background-color: $info-plinth-bg-color;
|
2019-06-26 05:40:22 +08:00
|
|
|
padding-left: 20px;
|
|
|
|
padding-right: 20px;
|
|
|
|
overflow: scroll;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomUpgradeWarningBar_wrapped {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
2018-08-17 21:54:43 +08:00
|
|
|
text-align: center;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
-webkit-align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomUpgradeWarningBar_header {
|
2021-11-11 21:37:29 +08:00
|
|
|
color: $alert;
|
2018-08-17 21:54:43 +08:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomUpgradeWarningBar_body {
|
2021-11-11 21:37:29 +08:00
|
|
|
color: $alert;
|
2018-08-17 21:54:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomUpgradeWarningBar_upgradelink {
|
2021-11-11 21:37:29 +08:00
|
|
|
color: $alert;
|
2018-08-17 21:54:43 +08:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomUpgradeWarningBar_small {
|
2021-11-29 20:52:09 +08:00
|
|
|
color: $info-plinth-fg-color;
|
2018-08-17 21:54:43 +08:00
|
|
|
font-size: 70%;
|
|
|
|
}
|