2021-03-02 18:34:28 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2021-03-02 18:34:28 +08:00
|
|
|
Copyright 2021 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.
|
2021-03-02 18:34:28 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_SpaceSettingsDialog {
|
2021-08-12 17:27:12 +08:00
|
|
|
color: $primary-content;
|
2021-03-02 18:34:28 +08:00
|
|
|
|
|
|
|
.mx_SpaceSettings_errorText {
|
2023-06-29 18:30:25 +08:00
|
|
|
font-weight: var(--cpd-font-weight-semibold);
|
2021-03-02 18:34:28 +08:00
|
|
|
font-size: $font-12px;
|
|
|
|
line-height: $font-15px;
|
2021-11-11 21:37:29 +08:00
|
|
|
color: $alert;
|
2021-03-02 18:34:28 +08:00
|
|
|
margin-bottom: 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_ToggleSwitch {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-left: 16px;
|
|
|
|
}
|
|
|
|
|
2021-06-08 23:33:47 +08:00
|
|
|
.mx_SettingsTab_section {
|
|
|
|
.mx_SettingsTab_section_caption {
|
|
|
|
margin-top: 12px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
2021-11-04 20:57:38 +08:00
|
|
|
.mx_StyledRadioButton {
|
2021-06-08 23:33:47 +08:00
|
|
|
margin-top: 8px;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
2021-11-04 20:57:38 +08:00
|
|
|
.mx_StyledRadioButton_content {
|
2023-06-29 18:30:25 +08:00
|
|
|
font-weight: var(--cpd-font-weight-semibold);
|
2021-06-08 23:33:47 +08:00
|
|
|
line-height: $font-18px;
|
2021-08-12 17:27:12 +08:00
|
|
|
color: $primary-content;
|
2021-06-08 23:33:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
& + span {
|
|
|
|
font-size: $font-15px;
|
|
|
|
line-height: $font-18px;
|
2021-08-12 17:30:35 +08:00
|
|
|
color: $secondary-content;
|
2021-06-08 23:33:47 +08:00
|
|
|
margin-left: 26px;
|
|
|
|
}
|
|
|
|
}
|
2021-03-02 18:34:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_SpaceSettingsDialog_buttons {
|
|
|
|
display: flex;
|
|
|
|
margin-top: 64px;
|
|
|
|
|
|
|
|
.mx_AccessibleButton {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AccessibleButton_kind_link {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-24 21:15:31 +08:00
|
|
|
.mx_AccessibleButton_hasKind {
|
2022-03-24 01:15:15 +08:00
|
|
|
&.mx_AccessibleButton_kind_link {
|
2024-03-05 12:25:47 +08:00
|
|
|
font: var(--cpd-font-body-md-semibold);
|
2022-03-24 01:15:15 +08:00
|
|
|
margin: 7px 18px;
|
2022-01-06 18:09:26 +08:00
|
|
|
|
2022-03-24 01:15:15 +08:00
|
|
|
&.mx_SettingsTab_showAdvanced {
|
|
|
|
margin: 18px 0;
|
|
|
|
}
|
2022-01-06 18:09:26 +08:00
|
|
|
}
|
2021-03-02 18:34:28 +08:00
|
|
|
}
|
2021-06-08 23:33:47 +08:00
|
|
|
|
|
|
|
.mx_TabbedView_tabLabel {
|
|
|
|
.mx_SpaceSettingsDialog_generalIcon::before {
|
|
|
|
mask-image: url("$(res)/img/element-icons/settings.svg");
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_SpaceSettingsDialog_visibilityIcon::before {
|
|
|
|
mask-image: url("$(res)/img/element-icons/eye.svg");
|
|
|
|
}
|
|
|
|
}
|
2021-03-02 18:34:28 +08:00
|
|
|
}
|