Files
ThreadNet-Web/res/css/views/elements/_InviteReason.pcss
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1.0 KiB
Plaintext
Raw Normal View History

2021-04-12 12:28:42 +01:00
/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
2021-04-12 12:28:42 +01:00
Copyright 2021 The Matrix.org Foundation C.I.C.
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
2024-09-09 14:57:16 +01:00
Please see LICENSE files in the repository root for full details.
2021-04-12 12:28:42 +01:00
*/
.mx_InviteReason {
position: relative;
margin-bottom: 1em;
.mx_InviteReason_reason {
2021-04-12 13:11:27 +01:00
visibility: visible;
2021-04-12 12:28:42 +01:00
}
2021-04-12 13:19:13 +01:00
.mx_InviteReason_view {
2021-04-12 12:28:42 +01:00
display: none;
position: absolute;
2023-05-09 10:02:12 +00:00
inset: 0;
2021-04-12 12:28:42 +01:00
justify-content: center;
align-items: center;
cursor: pointer;
2021-08-12 11:30:35 +02:00
color: $secondary-content;
2021-04-12 12:28:42 +01:00
&::before {
content: "";
margin-right: 8px;
2021-08-12 11:30:35 +02:00
background-color: $secondary-content;
2024-10-21 11:36:31 +01:00
mask-image: url("$(res)/img/element-icons/eye.svg");
2021-04-12 12:28:42 +01:00
display: inline-block;
width: 18px;
height: 14px;
}
}
}
.mx_InviteReason_hidden {
.mx_InviteReason_reason {
2021-04-12 13:11:27 +01:00
visibility: hidden;
2021-04-12 12:28:42 +01:00
}
2021-04-12 13:19:13 +01:00
.mx_InviteReason_view {
2021-04-12 12:28:42 +01:00
display: flex;
}
}