Files
ThreadNet-Web/res/css/views/right_panel/_RoomSummaryCard.pcss
T

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

103 lines
2.3 KiB
Plaintext
Raw Normal View History

2020-09-08 08:48:03 +01:00
/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
2020-09-08 08:48:03 +01:00
Copyright 2020 The Matrix.org Foundation C.I.C.
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
2024-09-09 14:57:16 +01:00
Please see LICENSE files in the repository root for full details.
2020-09-08 08:48:03 +01:00
*/
.mx_RoomSummaryCard {
--cpd-separator-inset: var(--cpd-space-4x);
--cpd-separator-spacing: var(--cpd-space-4x);
2023-10-20 14:30:37 +01:00
.mx_RoomSummaryCard_container {
2020-09-08 08:48:03 +01:00
text-align: center;
margin: $spacing-20 var(--cpd-space-4x) 0;
2023-10-20 14:30:37 +01:00
}
2020-09-08 08:48:03 +01:00
2023-10-20 14:30:37 +01:00
.mx_RoomSummaryCard_roomName,
.mx_RoomSummaryCard_alias {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
white-space: pre-wrap;
overflow: hidden;
}
.mx_RoomSummaryCard_alias {
text-overflow: ellipsis;
}
.mx_RoomSummaryCard_topic {
padding: 0 12px;
color: var(--cpd-color-text-secondary);
.mx_Box {
width: 100%;
}
.mx_RoomSummaryCard_topic_container {
text-align: start;
display: flex;
}
.mx_RoomSummaryCard_topic_edit {
width: max-content;
}
p {
white-space: pre-wrap;
width: 100%;
min-width: 0;
margin: 0;
}
a {
cursor: pointer;
}
.mx_RoomSummaryCard_topic_chevron {
transition: transform 0.3s;
}
&.mx_RoomSummaryCard_topic_collapsed {
p {
overflow: hidden;
text-overflow: ellipsis;
white-space: normal;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
.mx_RoomSummaryCard_topic_chevron {
transform: rotate(-90deg);
}
}
}
2020-09-08 08:48:03 +01:00
.mx_AccessibleButton_kind_link {
margin-top: 12px;
margin-bottom: 12px;
font-size: $font-13px;
2023-06-29 11:30:25 +01:00
font-weight: var(--cpd-font-weight-semibold);
2020-09-08 08:48:03 +01:00
}
}
2023-11-11 07:24:48 +00:00
.mx_RoomSummaryCard_badges {
margin: var(--cpd-space-4x) 0;
}
2024-07-08 10:57:41 +01:00
.mx_RoomSummaryCard_search {
flex-grow: 1;
min-width: 0;
2023-10-20 14:30:37 +01:00
2024-07-08 10:57:41 +01:00
input[type="search"]::-webkit-search-cancel-button {
display: unset; /* override _common.pcss which inhibits this */
2023-10-20 14:30:37 +01:00
}
}
.mx_RoomSummaryCard_roomName {
margin: $spacing-12 0 $spacing-4;
}