2022-08-09 16:14:30 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-08-09 16:14:30 +08:00
|
|
|
Copyright 2022 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.
|
2022-08-09 16:14:30 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_SettingsSubsection {
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
2024-06-26 23:47:01 +08:00
|
|
|
|
|
|
|
&.mx_SettingsSubsection_newUi {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: var(--cpd-space-8x);
|
|
|
|
}
|
2022-08-09 16:14:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_SettingsSubsection_description {
|
2023-05-04 06:35:43 +08:00
|
|
|
margin-top: $spacing-8;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_SettingsSubsection_text {
|
2022-08-09 16:14:30 +08:00
|
|
|
width: 100%;
|
|
|
|
box-sizing: inherit;
|
|
|
|
color: $secondary-content;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_SettingsSubsection_content {
|
|
|
|
width: 100%;
|
2023-05-04 06:35:43 +08:00
|
|
|
display: grid;
|
|
|
|
grid-gap: $spacing-8;
|
2024-01-03 02:56:39 +08:00
|
|
|
/* setting minwidth 0 makes columns definitely sized fixing horizontal overflow */
|
2023-05-24 07:31:56 +08:00
|
|
|
grid-template-columns: minmax(0, 1fr);
|
2023-05-04 06:35:43 +08:00
|
|
|
justify-items: flex-start;
|
|
|
|
margin-top: $spacing-24;
|
|
|
|
|
|
|
|
summary {
|
|
|
|
color: $accent;
|
|
|
|
}
|
|
|
|
details[open] {
|
|
|
|
summary {
|
|
|
|
margin-bottom: $spacing-8;
|
|
|
|
}
|
|
|
|
}
|
2023-05-16 09:22:45 +08:00
|
|
|
|
|
|
|
&.mx_SettingsSubsection_contentStretch {
|
|
|
|
justify-items: stretch;
|
|
|
|
}
|
2023-05-24 07:36:09 +08:00
|
|
|
|
|
|
|
&.mx_SettingsSubsection_noHeading {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2024-06-26 23:47:01 +08:00
|
|
|
&.mx_SettingsSubsection_content_newUi {
|
|
|
|
gap: var(--cpd-space-6x);
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2024-09-02 17:07:07 +08:00
|
|
|
|
|
|
|
.mx_SettingsSubsection_dropdown {
|
|
|
|
min-width: 360px;
|
|
|
|
}
|
2022-08-09 16:14:30 +08:00
|
|
|
}
|