2020-11-05 23:50:42 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2020-11-05 23:50:42 +08:00
|
|
|
Copyright 2020 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.
|
2020-11-05 23:50:42 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_NewRoomIntro {
|
2020-11-18 21:09:43 +08:00
|
|
|
margin: 40px 0 48px 64px;
|
2020-11-05 23:50:42 +08:00
|
|
|
|
|
|
|
.mx_MiniAvatarUploader_hasAvatar:not(.mx_MiniAvatarUploader_busy):not(:hover) {
|
2021-04-27 02:10:09 +08:00
|
|
|
.mx_MiniAvatarUploader_indicator {
|
|
|
|
display: none;
|
2020-11-05 23:50:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_NewRoomIntro_buttons {
|
|
|
|
margin-top: 28px;
|
2022-03-25 03:51:52 +08:00
|
|
|
display: flex;
|
|
|
|
flex-flow: wrap;
|
|
|
|
gap: 14px 12px;
|
2020-11-05 23:50:42 +08:00
|
|
|
|
|
|
|
.mx_AccessibleButton {
|
|
|
|
line-height: $font-24px;
|
2021-03-24 23:30:03 +08:00
|
|
|
display: inline-block;
|
2020-11-05 23:50:42 +08:00
|
|
|
|
2021-03-24 23:30:03 +08:00
|
|
|
&:not(.mx_AccessibleButton_kind_primary_outline)::before {
|
2022-12-12 19:24:14 +08:00
|
|
|
content: "";
|
2020-11-05 23:50:42 +08:00
|
|
|
display: inline-block;
|
|
|
|
background-color: $button-fg-color;
|
|
|
|
mask-position: center;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-size: 20px;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
margin-right: 5px;
|
|
|
|
vertical-align: text-bottom;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_NewRoomIntro_inviteButton::before {
|
2022-12-12 19:24:14 +08:00
|
|
|
mask-image: url("$(res)/img/element-icons/room/invite.svg");
|
2020-11-05 23:50:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> h2 {
|
|
|
|
margin-top: 24px;
|
|
|
|
font-size: $font-24px;
|
2023-06-29 18:30:25 +08:00
|
|
|
font-weight: var(--cpd-font-weight-semibold);
|
2020-11-05 23:50:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
> p {
|
|
|
|
margin: 0;
|
|
|
|
font-size: $font-15px;
|
2021-08-12 17:30:35 +08:00
|
|
|
color: $secondary-content;
|
2020-11-05 23:50:42 +08:00
|
|
|
}
|
|
|
|
}
|