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

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

137 lines
3.4 KiB
Plaintext
Raw Normal View History

2022-04-22 17:09:44 +02:00
/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
2022-04-22 17:09:44 +02:00
Copyright 2022 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.
2022-04-22 17:09:44 +02:00
*/
.mx_ReadReceiptGroup {
--ReadReceiptGroup_EventBubbleTile-spacing-end: 78px;
2022-04-22 17:09:44 +02:00
position: relative;
display: inline-block;
user-select: none;
z-index: 1;
.mx_ReadReceiptGroup_button {
display: inline-flex;
flex-direction: row;
height: 16px;
padding: 4px;
border-radius: 6px;
&.mx_AccessibleButton {
&:hover {
background: $event-selected-color;
}
}
}
.mx_ReadReceiptGroup_remainder {
color: $secondary-content;
font-size: $font-11px;
line-height: $font-16px;
margin-right: 4px;
}
.mx_ReadReceiptGroup_container {
position: relative;
display: block;
height: 100%;
.mx_BaseAvatar {
2025-12-02 09:57:28 +00:00
/* Compound uses a border on default avatars but no border on actual images, we want a border in all cases */
2023-08-30 12:47:35 +01:00
box-sizing: content-box;
2025-12-02 09:57:28 +00:00
border: 1px solid $background !important;
/* Reset the line height as we are no longer box-sizing border-box */
line-height: var(--cpd-avatar-size);
2022-04-22 17:09:44 +02:00
position: absolute;
will-change: left, top;
2024-01-02 18:56:39 +00:00
transition:
left var(--transition-short) ease-out,
top var(--transition-standard) ease-out;
2022-04-22 17:09:44 +02:00
}
}
}
.mx_ReadReceiptGroup_popup {
max-height: 300px;
width: 220px;
border-radius: 8px;
display: flex;
flex-direction: column;
text-align: left;
font-size: 12px;
line-height: 15px;
right: 0;
&.mx_ContextualMenu_top {
top: 8px;
}
&.mx_ContextualMenu_bottom {
bottom: 8px;
}
.mx_ReadReceiptGroup_title {
font-size: 12px;
line-height: 15px;
margin: 16px 16px 8px;
2023-06-29 11:30:25 +01:00
font-weight: var(--cpd-font-weight-semibold);
/* shouldnt be actually focusable */
2022-04-22 17:09:44 +02:00
outline: none;
}
.mx_AutoHideScrollbar {
.mx_ReadReceiptGroup_person {
display: flex;
flex-direction: row;
padding: 4px;
margin: 0 12px;
border-radius: 8px;
&:hover {
background: $menu-selected-color;
}
&:last-child {
margin-bottom: 8px;
}
.mx_BaseAvatar {
margin: 6px 8px;
align-self: center;
justify-self: center;
2024-01-02 18:56:39 +00:00
flex-shrink: 0; /* Long names should not shrink the picture */
2022-04-22 17:09:44 +02:00
}
.mx_ReadReceiptGroup_name {
display: flex;
flex-direction: column;
flex-grow: 1;
flex-shrink: 1;
overflow: hidden;
p {
margin: 2px 0;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.mx_ReadReceiptGroup_secondary {
color: $secondary-content;
}
}
}
}
}
.mx_ReadReceiptGroup_person--tooltip {
overflow-y: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}