* Add user status to dm room header Also bumps the gap on the room header items to 8px because that's what the designs have and I'm assuming it applies to everything, not just the user status: pending design confirmation. * Turns out the icons did have 8px gap but via 4px of padding for reasons I can't discern * Adjust spacing to 1.5x as requested by design * add tests * Update screenshots * add test for user status updating
115 lines
2.7 KiB
Plaintext
115 lines
2.7 KiB
Plaintext
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2023 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.
|
|
*/
|
|
|
|
.mx_RoomHeader {
|
|
height: 64px;
|
|
box-sizing: border-box;
|
|
padding: 0 var(--cpd-space-3x) 0 calc(var(--cpd-space-3x) + var(--cpd-space-1-5x));
|
|
border-bottom: 1px solid $separator;
|
|
background-color: $background;
|
|
transition: all 0.2s ease;
|
|
|
|
button:has(svg.mx_RoomHeader_toggled) {
|
|
/* For enhanced visibility under contrast control */
|
|
outline: 1px solid transparent;
|
|
}
|
|
}
|
|
|
|
.mx_RoomHeader:hover {
|
|
background-color: $header-panel-bg-hover;
|
|
}
|
|
|
|
.mx_RoomHeader_infoWrapper {
|
|
/* unset button styles */
|
|
color: inherit;
|
|
background: unset;
|
|
border: unset;
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
cursor: pointer;
|
|
gap: var(--cpd-space-3x);
|
|
text-align: left;
|
|
height: 100%;
|
|
padding: 0;
|
|
}
|
|
|
|
.mx_RoomHeader_info {
|
|
/* We want the spacing to be 64px, 13x = 52px but we have a flex gap of
|
|
12px set on the flex container, which sums up to 64 */
|
|
padding-right: var(--cpd-space-13x);
|
|
}
|
|
|
|
.mx_RoomHeader_truncated {
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 1;
|
|
|
|
overflow: hidden;
|
|
word-break: break-all;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.mx_RoomHeader_heading {
|
|
display: flex;
|
|
gap: var(--cpd-space-1-5x);
|
|
align-items: center;
|
|
}
|
|
|
|
.mx_RoomHeader_icon {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.mx_RoomHeader .mx_FacePile {
|
|
color: $secondary-content;
|
|
background: $background;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--cpd-space-2x);
|
|
border-radius: 9999px;
|
|
padding: var(--cpd-space-1-5x);
|
|
cursor: pointer;
|
|
user-select: none;
|
|
font: var(--cpd-font-body-sm-medium);
|
|
|
|
/* RoomAvatar doesn't pass classes down to avatar
|
|
So set style here
|
|
using div because compound classes are not stable */
|
|
> div {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
&:hover {
|
|
color: $primary-content;
|
|
background: var(--cpd-color-bg-subtle-primary);
|
|
}
|
|
|
|
&.mx_FacePile_toggled {
|
|
background: var(--cpd-color-bg-success-subtle);
|
|
color: var(--cpd-color-text-action-accent);
|
|
font: var(--cpd-font-body-sm-semibold);
|
|
/* For enhanced visibility under contrast control */
|
|
outline: 1px solid transparent;
|
|
}
|
|
}
|
|
|
|
.mx_RoomHeader .mx_BaseAvatar {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.mx_RoomHeader_videoCallOption {
|
|
/* Workaround for https://github.com/element-hq/compound/issues/331 */
|
|
min-width: 240px;
|
|
}
|
|
|
|
.mx_RoomHeader .mx_RoomHeader_toggled {
|
|
fill: var(--cpd-color-icon-accent-primary);
|
|
}
|