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