2018-04-12 01:23:35 +02:00
|
|
|
/*
|
2024-09-09 15:57:16 +02:00
|
|
|
Copyright 2024 New Vector Ltd.
|
|
|
|
Copyright 2015-2021 The Matrix.org Foundation C.I.C.
|
2018-04-12 01:23:35 +02: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.
|
2018-04-12 01:23:35 +02:00
|
|
|
*/
|
|
|
|
|
2022-01-06 18:52:06 +01:00
|
|
|
.mx_UserNotifSettings_grid {
|
2022-07-27 15:39:29 +02:00
|
|
|
width: calc(100% + 12px); /* +12px to line up center of 'Noisy' column with toggle switches */
|
2022-01-06 18:52:06 +01:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: auto repeat(3, 62px);
|
|
|
|
place-items: center center;
|
|
|
|
grid-gap: 8px;
|
|
|
|
|
2022-07-27 15:39:29 +02:00
|
|
|
/* Override StyledRadioButton default styles */
|
2022-01-06 18:52:06 +01:00
|
|
|
.mx_StyledRadioButton {
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
.mx_StyledRadioButton_content {
|
|
|
|
display: none;
|
2021-07-13 07:57:54 +02:00
|
|
|
}
|
|
|
|
|
2022-01-06 18:52:06 +01:00
|
|
|
.mx_StyledRadioButton_spacer {
|
|
|
|
display: none;
|
2021-07-13 07:57:54 +02:00
|
|
|
}
|
2022-01-06 18:52:06 +01:00
|
|
|
}
|
2023-05-24 01:36:09 +02:00
|
|
|
|
|
|
|
// left align section heading
|
|
|
|
.mx_SettingsSubsectionHeading {
|
|
|
|
justify-self: start;
|
|
|
|
}
|
2022-01-06 18:52:06 +01:00
|
|
|
}
|
2021-07-13 07:57:54 +02:00
|
|
|
|
2022-01-06 18:52:06 +01:00
|
|
|
.mx_UserNotifSettings_gridRowContainer {
|
|
|
|
display: contents;
|
|
|
|
}
|
2021-07-13 07:57:54 +02:00
|
|
|
|
2022-01-06 18:52:06 +01:00
|
|
|
.mx_UserNotifSettings_gridRow {
|
|
|
|
display: contents;
|
|
|
|
}
|
2021-07-13 07:57:54 +02:00
|
|
|
|
2022-01-06 18:52:06 +01:00
|
|
|
.mx_UserNotifSettings_gridRowLabel {
|
|
|
|
justify-self: start;
|
2022-07-27 15:39:29 +02:00
|
|
|
/* <legend> does not accept */
|
|
|
|
/* display: inline | inline-block */
|
|
|
|
/* force it inline using float */
|
2022-01-06 18:52:06 +01:00
|
|
|
float: left;
|
|
|
|
}
|
2021-07-13 07:57:54 +02:00
|
|
|
|
2022-01-06 18:52:06 +01:00
|
|
|
.mx_UserNotifSettings_gridColumnLabel {
|
|
|
|
color: $secondary-content;
|
2023-06-29 12:30:25 +02:00
|
|
|
font: var(--cpd-font-body-sm-semibold);
|
2022-01-06 18:52:06 +01:00
|
|
|
}
|
2023-03-13 22:59:04 +01:00
|
|
|
.mx_UserNotifSettings_gridRowError {
|
2024-01-02 19:56:39 +01:00
|
|
|
/* occupy full row */
|
2023-03-13 22:59:04 +01:00
|
|
|
grid-column: 1/-1;
|
|
|
|
justify-self: start;
|
|
|
|
padding-right: 30%;
|
2024-01-02 19:56:39 +01:00
|
|
|
/* collapse half of the grid-gap */
|
2023-03-13 22:59:04 +01:00
|
|
|
margin-top: -$spacing-4;
|
|
|
|
}
|
2021-07-13 07:57:54 +02:00
|
|
|
|
2023-05-24 01:36:09 +02:00
|
|
|
.mx_UserNotifSettings_floatingSection {
|
|
|
|
margin-top: 40px;
|
2021-07-13 07:57:54 +02:00
|
|
|
|
2023-05-24 01:36:09 +02:00
|
|
|
& > div:first-child {
|
|
|
|
/* section header */
|
|
|
|
font-size: $font-18px;
|
2023-06-29 12:30:25 +02:00
|
|
|
font-weight: var(--cpd-font-weight-semibold);
|
2023-05-24 01:36:09 +02:00
|
|
|
}
|
2021-07-13 07:57:54 +02:00
|
|
|
|
2023-05-24 01:36:09 +02:00
|
|
|
> table {
|
|
|
|
border-collapse: collapse;
|
|
|
|
border-spacing: 0;
|
|
|
|
margin-top: 8px;
|
2021-07-13 07:57:54 +02:00
|
|
|
|
2023-05-24 01:36:09 +02:00
|
|
|
tr > td:first-child {
|
|
|
|
/* Just for a bit of spacing */
|
|
|
|
padding-right: 8px;
|
2021-07-13 07:57:54 +02:00
|
|
|
}
|
|
|
|
}
|
2023-05-24 01:36:09 +02:00
|
|
|
}
|
2021-07-13 07:57:54 +02:00
|
|
|
|
2023-05-24 01:36:09 +02:00
|
|
|
.mx_UserNotifSettings_clearNotifsButton {
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
2021-07-13 07:57:54 +02:00
|
|
|
|
2023-05-24 01:36:09 +02:00
|
|
|
.mx_TagComposer {
|
|
|
|
margin-top: 35px; /* lots of distance from the last line of the table */
|
2019-07-09 19:15:10 +02:00
|
|
|
}
|
2021-10-16 15:52:29 +02:00
|
|
|
|
|
|
|
.mx_AccessibleButton.mx_NotificationSound_browse {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|