2021-04-12 19:28:42 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2021-04-12 19:28:42 +08:00
|
|
|
Copyright 2021 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.
|
2021-04-12 19:28:42 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_InviteReason {
|
|
|
|
position: relative;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
|
|
|
|
.mx_InviteReason_reason {
|
2021-04-12 20:11:27 +08:00
|
|
|
visibility: visible;
|
2021-04-12 19:28:42 +08:00
|
|
|
}
|
|
|
|
|
2021-04-12 20:19:13 +08:00
|
|
|
.mx_InviteReason_view {
|
2021-04-12 19:28:42 +08:00
|
|
|
display: none;
|
|
|
|
position: absolute;
|
2023-05-09 18:02:12 +08:00
|
|
|
inset: 0;
|
2021-04-12 19:28:42 +08:00
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
2021-08-12 17:30:35 +08:00
|
|
|
color: $secondary-content;
|
2021-04-12 19:28:42 +08:00
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: "";
|
|
|
|
margin-right: 8px;
|
2021-08-12 17:30:35 +08:00
|
|
|
background-color: $secondary-content;
|
2021-04-12 19:28:42 +08:00
|
|
|
mask-image: url("$(res)/img/feather-customised/eye.svg");
|
|
|
|
display: inline-block;
|
|
|
|
width: 18px;
|
|
|
|
height: 14px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_InviteReason_hidden {
|
|
|
|
.mx_InviteReason_reason {
|
2021-04-12 20:11:27 +08:00
|
|
|
visibility: hidden;
|
2021-04-12 19:28:42 +08:00
|
|
|
}
|
|
|
|
|
2021-04-12 20:19:13 +08:00
|
|
|
.mx_InviteReason_view {
|
2021-04-12 19:28:42 +08:00
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
}
|