2019-01-23 04:28:33 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
|
|
|
Copyright 2019, 2020 , 2024 The Matrix.org Foundation C.I.C.
|
2019-01-23 04:28:33 +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.
|
2019-01-23 04:28:33 +08:00
|
|
|
*/
|
|
|
|
|
2024-06-06 21:56:38 +08:00
|
|
|
.mx_RoomProfileSettings {
|
2022-06-26 01:23:33 +08:00
|
|
|
border-bottom: 1px solid $quinary-content;
|
|
|
|
|
2024-06-06 21:56:38 +08:00
|
|
|
.mx_RoomProfileSettings_profile {
|
2022-06-26 01:23:33 +08:00
|
|
|
display: flex;
|
2019-01-23 04:28:33 +08:00
|
|
|
|
2024-06-06 21:56:38 +08:00
|
|
|
.mx_RoomProfileSettings_profile_controls {
|
2022-06-26 01:23:33 +08:00
|
|
|
flex-grow: 1;
|
|
|
|
margin-inline-end: 54px;
|
2019-01-23 04:28:33 +08:00
|
|
|
|
2023-05-29 09:36:09 +08:00
|
|
|
.mx_Field {
|
|
|
|
margin-top: $spacing-8;
|
2022-06-26 01:23:33 +08:00
|
|
|
}
|
2019-01-26 11:38:35 +08:00
|
|
|
|
2024-06-06 21:56:38 +08:00
|
|
|
.mx_RoomProfileSettings_profile_controls_topic {
|
2023-05-29 06:20:44 +08:00
|
|
|
margin-top: $spacing-8;
|
|
|
|
|
2022-06-26 01:23:33 +08:00
|
|
|
& > textarea {
|
|
|
|
font-family: inherit;
|
|
|
|
resize: vertical;
|
|
|
|
}
|
2019-08-13 22:19:39 +08:00
|
|
|
|
2024-06-06 21:56:38 +08:00
|
|
|
&.mx_RoomProfileSettings_profile_controls_topic--room textarea {
|
2022-07-04 17:09:08 +08:00
|
|
|
min-height: 4em;
|
2022-06-26 01:23:33 +08:00
|
|
|
}
|
|
|
|
}
|
2020-09-22 11:00:51 +08:00
|
|
|
|
2024-06-06 21:56:38 +08:00
|
|
|
.mx_RoomProfileSettings_profile_controls_userId {
|
2022-06-26 01:23:33 +08:00
|
|
|
margin-inline-end: $spacing-20;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-09-22 11:00:51 +08:00
|
|
|
|
2024-06-06 21:56:38 +08:00
|
|
|
.mx_RoomProfileSettings_buttons {
|
2024-03-05 12:25:47 +08:00
|
|
|
display: flex;
|
|
|
|
gap: var(--cpd-space-4x);
|
2022-07-27 21:39:29 +08:00
|
|
|
margin-top: 10px; /* 18px is already accounted for by the <p> above the buttons */
|
2022-06-26 01:23:33 +08:00
|
|
|
margin-bottom: $spacing-28;
|
2020-09-22 11:00:51 +08:00
|
|
|
}
|
|
|
|
}
|