2018-04-12 00:23:35 +01:00
|
|
|
/*
|
2024-09-09 14:57:16 +01:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2018-04-12 00:23:35 +01:00
|
|
|
Copyright 2017 Michael Telatynski <7t3chguy@gmail.com>
|
|
|
|
|
|
2025-01-06 11:18:54 +00:00
|
|
|
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.
|
2018-04-12 00:23:35 +01:00
|
|
|
*/
|
|
|
|
|
|
2019-09-20 17:47:02 +02:00
|
|
|
.mx_CreateRoomDialog_details {
|
2020-04-08 13:47:15 +01:00
|
|
|
margin-top: 15px;
|
|
|
|
|
|
2019-09-20 17:47:02 +02:00
|
|
|
.mx_CreateRoomDialog_details_summary {
|
|
|
|
|
list-style: none;
|
2023-06-29 11:30:25 +01:00
|
|
|
font-weight: var(--cpd-font-weight-semibold);
|
2019-09-20 17:47:02 +02:00
|
|
|
cursor: pointer;
|
2024-03-04 23:25:47 -05:00
|
|
|
color: var(--cpd-color-text-primary);
|
|
|
|
|
text-decoration: underline;
|
2023-10-12 14:20:49 +05:30
|
|
|
width: fit-content;
|
2019-09-23 17:56:16 +02:00
|
|
|
|
2022-07-27 14:39:29 +01:00
|
|
|
/* list-style doesn't do it for webkit */
|
2019-09-23 17:56:16 +02:00
|
|
|
&::-webkit-details-marker {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2023-04-12 13:49:12 +01:00
|
|
|
|
2023-09-28 12:52:26 +01:00
|
|
|
&:not(:focus-visible) {
|
2023-04-12 13:49:12 +01:00
|
|
|
outline: none;
|
|
|
|
|
}
|
2019-09-20 17:47:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
> div {
|
|
|
|
|
display: flex;
|
2019-12-22 20:56:19 -07:00
|
|
|
align-items: flex-start;
|
2019-09-20 17:47:02 +02:00
|
|
|
margin: 5px 0;
|
|
|
|
|
|
2022-07-15 14:53:23 +01:00
|
|
|
input[type="checkbox"] {
|
2019-09-20 17:47:02 +02:00
|
|
|
margin-right: 10px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-12 00:23:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx_CreateRoomDialog_label {
|
|
|
|
|
text-align: left;
|
|
|
|
|
padding-bottom: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-13 09:13:32 +01:00
|
|
|
.mx_CreateRoomDialog_input_container {
|
|
|
|
|
padding-right: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-12 00:23:35 +01:00
|
|
|
.mx_CreateRoomDialog_input {
|
2020-03-31 15:26:23 +01:00
|
|
|
font-size: $font-15px;
|
2018-04-12 00:23:35 +01:00
|
|
|
border-radius: 3px;
|
|
|
|
|
border: 1px solid $input-border-color;
|
|
|
|
|
padding: 9px;
|
2021-08-12 11:27:12 +02:00
|
|
|
color: $primary-content;
|
2021-08-12 11:10:47 +02:00
|
|
|
background-color: $background;
|
2018-06-13 09:13:32 +01:00
|
|
|
width: 100%;
|
2018-04-12 00:23:35 +01:00
|
|
|
}
|
2019-09-20 17:47:02 +02:00
|
|
|
|
2022-07-27 14:39:29 +01:00
|
|
|
/* needed to make the alias field only grow as wide as needed */
|
|
|
|
|
/* as opposed to full width */
|
2019-09-20 17:47:02 +02:00
|
|
|
.mx_CreateRoomDialog_aliasContainer {
|
|
|
|
|
display: flex;
|
2022-07-27 14:39:29 +01:00
|
|
|
/* put margin on container so it can collapse with siblings */
|
2021-07-06 10:10:47 +01:00
|
|
|
margin: 24px 0 10px;
|
2019-09-20 17:47:02 +02:00
|
|
|
|
|
|
|
|
.mx_RoomAliasField {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx_CreateRoomDialog {
|
|
|
|
|
&.mx_Dialog_fixedWidth {
|
|
|
|
|
width: 450px;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-08 14:44:34 +01:00
|
|
|
.mx_Dialog_content {
|
|
|
|
|
margin-bottom: 40px;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-08 13:47:15 +01:00
|
|
|
p,
|
|
|
|
|
.mx_Field_input label {
|
|
|
|
|
color: $muted-fg-color;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-20 17:47:02 +02:00
|
|
|
.mx_SettingsFlag {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx_SettingsFlag_label {
|
|
|
|
|
flex: 1 1 0;
|
|
|
|
|
min-width: 0;
|
2023-06-29 11:30:25 +01:00
|
|
|
font-weight: var(--cpd-font-weight-semibold);
|
2019-09-20 17:47:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx_ToggleSwitch {
|
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
margin-left: 30px;
|
|
|
|
|
}
|
2020-04-08 13:47:15 +01:00
|
|
|
|
|
|
|
|
.mx_Dialog_content > .mx_SettingsFlag {
|
2020-04-08 14:48:50 +01:00
|
|
|
margin-top: 24px;
|
2020-04-08 13:47:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p {
|
|
|
|
|
margin: 0 85px 0 0;
|
2020-04-08 14:44:34 +01:00
|
|
|
font-size: $font-12px;
|
2020-04-08 13:47:15 +01:00
|
|
|
}
|
2019-09-20 17:47:02 +02:00
|
|
|
}
|
2023-09-04 18:09:44 +02:00
|
|
|
|
|
|
|
|
.mx_CreateRoomDialog_labelledCheckbox {
|
|
|
|
|
color: $muted-fg-color;
|
|
|
|
|
margin-top: var(--cpd-space-6x);
|
|
|
|
|
}
|