2019-01-19 04:43:17 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2021-07-15 16:55:58 +08:00
|
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2019 New Vector Ltd
|
|
|
|
Copyright 2017 Travis Ralston
|
2019-01-19 04:43:17 +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-19 04:43:17 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_TabbedView {
|
2019-01-30 14:11:16 +08:00
|
|
|
margin: 0;
|
2024-03-13 21:38:32 +08:00
|
|
|
padding: 0 0 0 var(--cpd-space-8x);
|
2019-01-30 14:11:16 +08:00
|
|
|
display: flex;
|
2019-01-30 12:45:15 +08:00
|
|
|
flex-direction: column;
|
2023-05-09 18:02:12 +08:00
|
|
|
inset: 0;
|
2020-10-06 21:48:43 +08:00
|
|
|
margin-top: 8px;
|
2019-01-19 04:43:17 +08:00
|
|
|
}
|
|
|
|
|
2021-07-15 16:55:58 +08:00
|
|
|
.mx_TabbedView_tabsOnLeft {
|
|
|
|
flex-direction: column;
|
|
|
|
position: absolute;
|
|
|
|
|
|
|
|
.mx_TabbedView_tabLabels {
|
2024-03-05 12:25:47 +08:00
|
|
|
width: 220px;
|
|
|
|
max-width: 220px;
|
2021-07-15 16:55:58 +08:00
|
|
|
position: fixed;
|
2023-05-16 01:57:29 +08:00
|
|
|
margin: 0; /* Remove the default value */
|
|
|
|
padding: 0; /* Remove the default value */
|
2021-07-15 16:55:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_TabbedView_tabPanel {
|
2024-03-05 12:25:47 +08:00
|
|
|
margin-left: 280px; /* 220px sidebar + 60px padding */
|
2021-07-15 16:55:58 +08:00
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2024-03-05 12:25:47 +08:00
|
|
|
.mx_TabbedView_tabLabel:hover,
|
2021-07-15 16:55:58 +08:00
|
|
|
.mx_TabbedView_tabLabel_active {
|
2024-02-21 00:24:40 +08:00
|
|
|
color: $tab-label-active-fg-color;
|
2024-03-05 12:25:47 +08:00
|
|
|
|
|
|
|
.mx_TabbedView_maskedIcon::before {
|
|
|
|
background-color: var(--cpd-color-icon-primary);
|
|
|
|
}
|
2021-07-15 16:55:58 +08:00
|
|
|
}
|
|
|
|
|
2024-03-05 12:25:47 +08:00
|
|
|
.mx_TabbedView_tabLabel_active {
|
|
|
|
background-color: var(--cpd-color-bg-subtle-secondary);
|
2021-07-15 16:55:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_TabbedView_maskedIcon {
|
2024-03-05 12:25:47 +08:00
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
margin-right: var(--cpd-space-3x);
|
2021-07-15 16:55:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_TabbedView_maskedIcon::before {
|
2024-03-05 12:25:47 +08:00
|
|
|
mask-size: 20px;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
transition: background-color 0.1s;
|
2021-07-15 16:55:58 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_TabbedView_tabsOnTop {
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
.mx_TabbedView_tabLabels {
|
|
|
|
display: flex;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_TabbedView_tabLabel {
|
|
|
|
padding-left: 0px;
|
|
|
|
padding-right: 52px;
|
|
|
|
|
|
|
|
.mx_TabbedView_tabLabel_text {
|
|
|
|
font-size: 15px;
|
2021-08-12 17:53:54 +08:00
|
|
|
color: $tertiary-content;
|
2021-07-15 16:55:58 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_TabbedView_tabPanel {
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_TabbedView_tabLabel_active {
|
2021-11-11 21:37:29 +08:00
|
|
|
color: $accent;
|
2021-07-15 16:55:58 +08:00
|
|
|
.mx_TabbedView_tabLabel_text {
|
2021-11-11 21:37:29 +08:00
|
|
|
color: $accent;
|
2021-07-15 16:55:58 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_TabbedView_tabLabel_active .mx_TabbedView_maskedIcon::before {
|
2021-11-11 21:37:29 +08:00
|
|
|
background-color: $accent;
|
2021-07-15 16:55:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_TabbedView_maskedIcon {
|
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
|
|
|
margin-left: 0px;
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_TabbedView_maskedIcon::before {
|
|
|
|
mask-size: 22px;
|
|
|
|
width: inherit;
|
|
|
|
height: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-19 04:43:17 +08:00
|
|
|
.mx_TabbedView_tabLabels {
|
2019-01-30 14:11:16 +08:00
|
|
|
color: $tab-label-fg-color;
|
2019-01-19 04:43:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_TabbedView_tabLabel {
|
2020-10-06 21:48:43 +08:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2019-01-30 14:11:16 +08:00
|
|
|
vertical-align: text-top;
|
|
|
|
cursor: pointer;
|
2024-03-05 12:25:47 +08:00
|
|
|
padding-block: var(--cpd-space-2x);
|
|
|
|
padding-inline: var(--cpd-space-3x) var(--cpd-space-4x);
|
|
|
|
box-sizing: border-box;
|
|
|
|
min-block-size: 40px;
|
2024-05-11 00:29:50 +08:00
|
|
|
min-inline-size: 40px;
|
2024-03-05 12:25:47 +08:00
|
|
|
border-radius: 24px;
|
|
|
|
font: var(--cpd-font-body-md-medium);
|
2019-01-30 14:11:16 +08:00
|
|
|
position: relative;
|
2024-03-05 12:25:47 +08:00
|
|
|
transition:
|
|
|
|
color 0.1s,
|
|
|
|
background-color 0.1s;
|
2024-08-07 00:08:45 +08:00
|
|
|
|
|
|
|
svg {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
margin-right: var(--cpd-space-3x);
|
|
|
|
}
|
2019-01-19 04:43:17 +08:00
|
|
|
}
|
|
|
|
|
2019-04-09 22:03:13 +08:00
|
|
|
.mx_TabbedView_maskedIcon {
|
2019-01-30 14:11:16 +08:00
|
|
|
display: inline-block;
|
2019-01-19 10:40:21 +08:00
|
|
|
}
|
|
|
|
|
2019-04-09 22:03:13 +08:00
|
|
|
.mx_TabbedView_maskedIcon::before {
|
2019-01-30 14:11:16 +08:00
|
|
|
display: inline-block;
|
2024-03-05 12:25:47 +08:00
|
|
|
background-color: var(--cpd-color-icon-secondary);
|
2019-01-30 14:11:16 +08:00
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
|
|
|
content: "";
|
2019-01-19 10:40:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_TabbedView_tabLabel_text {
|
2019-01-30 14:11:16 +08:00
|
|
|
vertical-align: middle;
|
2019-01-19 10:40:21 +08:00
|
|
|
}
|
|
|
|
|
2019-01-19 04:43:17 +08:00
|
|
|
.mx_TabbedView_tabPanel {
|
2019-01-30 14:11:16 +08:00
|
|
|
flex-grow: 1;
|
2019-01-30 12:45:15 +08:00
|
|
|
display: flex;
|
2022-07-27 21:39:29 +08:00
|
|
|
min-height: 0; /* firefox */
|
2019-01-19 04:43:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_TabbedView_tabPanelContent {
|
2019-01-30 14:11:16 +08:00
|
|
|
flex-grow: 1;
|
2019-01-30 12:45:15 +08:00
|
|
|
overflow: auto;
|
2022-07-27 21:39:29 +08:00
|
|
|
min-height: 0; /* firefox */
|
2019-04-08 23:48:42 +08:00
|
|
|
}
|
2024-05-11 00:29:50 +08:00
|
|
|
|
|
|
|
/* Hide the labels on tabs, showing only the icons, on narrow viewports. */
|
2024-05-28 18:59:31 +08:00
|
|
|
@media (max-width: 1024px) {
|
2024-05-11 00:29:50 +08:00
|
|
|
.mx_TabbedView_tabsOnLeft.mx_TabbedView_responsive {
|
|
|
|
.mx_TabbedView_tabLabel_text {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.mx_TabbedView_tabPanel {
|
|
|
|
margin-left: 72px; /* 40px sidebar + 32px padding */
|
|
|
|
}
|
|
|
|
.mx_TabbedView_maskedIcon {
|
|
|
|
margin-right: auto;
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
.mx_TabbedView_tabLabels {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
.mx_TabbedView_tabLabel {
|
|
|
|
padding-inline: 0 0;
|
2024-08-07 00:08:45 +08:00
|
|
|
justify-content: center;
|
|
|
|
svg {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
2024-05-11 00:29:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|