2019-01-25 10:12:09 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2019-2024 New Vector Ltd.
|
2019-01-25 10:12:09 +08:00
|
|
|
|
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.
|
2019-01-25 10:12:09 +08:00
|
|
|
*/
|
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* Not actually a component but things shared by settings components */
|
2021-12-17 17:26:32 +08:00
|
|
|
.mx_UserSettingsDialog,
|
|
|
|
.mx_RoomSettingsDialog,
|
|
|
|
.mx_SpaceSettingsDialog,
|
|
|
|
.mx_SpacePreferencesDialog {
|
2019-04-09 02:11:04 +08:00
|
|
|
width: 90vw;
|
2024-03-13 21:38:32 +08:00
|
|
|
max-width: 980px;
|
2022-07-27 21:39:29 +08:00
|
|
|
/* set the height too since tabbed view scrolls itself. */
|
2019-04-09 02:11:04 +08:00
|
|
|
height: 80vh;
|
|
|
|
|
2019-04-08 23:48:42 +08:00
|
|
|
.mx_TabbedView {
|
2024-03-13 21:38:32 +08:00
|
|
|
top: 90px;
|
2019-01-25 10:12:09 +08:00
|
|
|
}
|
2019-04-08 23:48:42 +08:00
|
|
|
|
|
|
|
.mx_TabbedView .mx_SettingsTab {
|
|
|
|
box-sizing: border-box;
|
|
|
|
min-width: 580px;
|
|
|
|
padding-right: 100px;
|
2021-12-10 01:44:22 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2019-04-08 23:48:42 +08:00
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* Put some padding on the bottom to avoid the settings tab from */
|
|
|
|
/* colliding harshly with the dialog when scrolled down. */
|
2019-04-08 23:48:42 +08:00
|
|
|
padding-bottom: 100px;
|
|
|
|
}
|
2019-01-25 10:12:09 +08:00
|
|
|
}
|