Files
ThreadNet-Web/res/css/views/rooms/_RoomTile.pcss
T

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

168 lines
4.4 KiB
Plaintext
Raw Normal View History

2020-06-04 16:34:04 -06:00
/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
Copyright 2020-2023 The Matrix.org Foundation C.I.C.
2020-06-04 16:34:04 -06:00
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-06-04 16:34:04 -06:00
*/
/* Note: the room tile expects to be in a flexbox column container */
2020-07-17 15:43:29 -06:00
.mx_RoomTile {
margin-bottom: 4px;
padding: 4px;
2020-06-04 21:21:04 -06:00
/* The tile is also a flexbox row itself */
display: flex;
contain: content; /* Not strict as it will break when resizing a sublist vertically */
box-sizing: border-box;
font-size: var(--cpd-font-size-body-sm);
2020-06-04 21:21:04 -06:00
2020-07-17 15:43:29 -06:00
&.mx_RoomTile_selected,
&:hover,
&:focus-within,
2020-07-17 15:43:29 -06:00
&.mx_RoomTile_hasMenuOpen {
background-color: $panel-actions;
2020-07-09 19:17:47 +02:00
border-radius: 8px;
}
2020-07-17 15:43:29 -06:00
.mx_DecoratedRoomAvatar,
.mx_RoomTile_avatarContainer {
2022-03-22 18:14:11 -04:00
margin-right: 10px;
2020-06-04 21:21:04 -06:00
}
.mx_RoomTile_details {
min-width: 0;
}
.mx_RoomTile_titleContainer {
height: 32px;
min-width: 0;
flex-basis: 0;
flex-grow: 1;
margin-right: 8px; /* spacing to buttons/badges */
/* Create a new column layout flexbox for the title parts */
2020-06-04 21:21:04 -06:00
display: flex;
flex-direction: column;
justify-content: center;
2020-06-04 21:21:04 -06:00
.mx_RoomTile_subtitle {
align-items: center;
color: $secondary-content;
display: flex;
gap: $spacing-4;
2023-07-07 08:24:48 +01:00
line-height: 1.25;
position: relative;
top: -1px;
}
2022-03-22 18:14:11 -04:00
.mx_RoomTile_title,
.mx_RoomTile_subtitle_text {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
2022-03-22 18:14:11 -04:00
.mx_RoomTile_title {
font: var(--cpd-font-body-md-regular);
2023-07-07 08:24:48 +01:00
line-height: 1.25;
2022-03-22 18:14:11 -04:00
&.mx_RoomTile_titleHasUnreadEvents {
2023-06-29 11:30:25 +01:00
font-weight: var(--cpd-font-weight-semibold);
2022-03-22 18:14:11 -04:00
}
}
.mx_RoomTile_titleWithSubtitle {
margin-top: -2px; /* shift the title up a bit more */
}
}
.mx_RoomTile_notificationsButton {
margin-left: 4px; /* spacing between buttons */
}
.mx_RoomTile_badgeContainer {
height: 16px;
/* don't set width so that it takes no space when there is no badge to show */
margin: auto 0; /* vertically align */
/* Create a flexbox to make aligning dot badges easier */
display: flex;
align-items: center;
.mx_NotificationBadge {
margin-right: 2px; /* centering */
}
.mx_NotificationBadge_dot {
/* make the smaller dot occupy the same width for centering */
margin-left: 5px;
margin-right: 7px;
}
}
/* The context menu buttons are hidden by default */
.mx_RoomTile_menuButton,
.mx_RoomTile_notificationsButton {
width: 20px;
min-width: 20px; /* yay flex */
height: 20px;
margin-top: auto;
margin-bottom: auto;
position: relative;
display: none;
&::before {
top: 2px;
left: 2px;
content: "";
width: 16px;
height: 16px;
position: absolute;
mask-position: center;
mask-size: contain;
mask-repeat: no-repeat;
background: var(--cpd-color-icon-primary);
}
}
/* If the room has an overriden notification setting then we always show the notifications menu button */
.mx_RoomTile_notificationsButton.mx_RoomTile_notificationsButton_show {
display: block;
}
.mx_RoomTile_menuButton::before {
mask-image: url("@vector-im/compound-design-tokens/icons/overflow-horizontal.svg");
}
2023-09-19 14:24:35 +03:00
&:not(.mx_RoomTile_minimized, .mx_RoomTile_sticky) {
&:hover,
&:focus-within,
2020-07-17 15:43:29 -06:00
&.mx_RoomTile_hasMenuOpen {
/* Hide the badge container on hover because it'll be a menu button */
2020-07-17 15:43:29 -06:00
.mx_RoomTile_badgeContainer {
2020-06-11 14:39:28 -06:00
width: 0;
height: 0;
display: none;
2020-06-11 14:39:28 -06:00
}
2020-07-17 15:43:29 -06:00
.mx_RoomTile_notificationsButton,
.mx_RoomTile_menuButton {
display: block;
2020-06-11 14:39:28 -06:00
}
}
}
2020-07-17 15:43:29 -06:00
&.mx_RoomTile_minimized {
2020-06-11 14:39:28 -06:00
flex-direction: column;
align-items: center;
position: relative;
2020-07-17 15:43:29 -06:00
.mx_DecoratedRoomAvatar,
.mx_RoomTile_avatarContainer {
2020-06-11 14:39:28 -06:00
margin-right: 0;
}
}
}