Files
element-web/res/css/structures/_ThreadsActivityCentre.pcss
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

85 lines
2.2 KiB
Plaintext
Raw Normal View History

2024-02-07 14:49:40 +01:00
/*
* Copyright 2024 New Vector Ltd.
* Copyright 2024 The Matrix.org Foundation C.I.C.
*
* SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE files in the repository root for full details.
2024-02-07 14:49:40 +01:00
*/
2024-03-08 11:18:30 +01:00
.mx_ThreadsActivityCentre_container {
display: flex;
}
2024-02-07 14:49:40 +01:00
.mx_ThreadsActivityCentreButton {
border-radius: 8px;
margin: 18px auto auto auto;
2024-02-07 14:49:40 +01:00
&.expanded {
2024-03-14 17:21:18 +01:00
/**
* override compound default background color when hovered
* should disappear when the space panel will be migrated to compound
*/
background-color: transparent !important;
2024-02-07 14:49:40 +01:00
/* align with settings icon */
2024-02-29 15:07:46 +01:00
margin-left: 21px;
2024-02-07 14:49:40 +01:00
2024-02-29 15:07:46 +01:00
/**
* modify internal css of the compound component
* dirty but we need to add the `Threads` label into the indicator icon button
**/
& > div {
display: flex;
align-items: center;
}
& .mx_ThreadsActivityCentreButton_Icon {
2024-02-07 14:49:40 +01:00
/* align with settings label */
margin-right: 14px;
2024-02-29 15:07:46 +01:00
/* required to set the icon width when into a flex container */
min-width: 24px;
}
& .mx_ThreadsActivityCentreButton_Text {
color: $secondary-content;
2024-02-07 14:49:40 +01:00
}
}
&:not(.expanded) {
&:hover,
&:hover .mx_ThreadsActivityCentreButton_Icon {
background-color: $quaternary-content;
color: $primary-content;
}
}
& .mx_ThreadsActivityCentreButton_Icon {
color: $secondary-content;
}
}
2024-03-11 16:48:11 +01:00
.mx_ThreadsActivityCentre_rows {
2024-02-07 14:49:40 +01:00
overflow-y: scroll;
/* Let some space at the top and the bottom of the pop-up */
max-height: calc(100vh - 200px);
2024-03-11 16:48:11 +01:00
.mx_ThreadsActivityCentreRow {
2024-02-07 14:49:40 +01:00
height: 48px;
/* Make the label of the MenuItem stay on one line and truncate with ellipsis if needed */
& > span {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
2024-02-08 15:46:34 +01:00
/* Arbitrary size, keep the TAC as the wanted width */
width: 202px;
2024-02-07 14:49:40 +01:00
}
}
}
.mx_ThreadsActivityCentre_emptyCaption {
padding-left: 16px;
padding-right: 16px;
font-size: 13px;
}