feat(fuselage): quieter message header metadata - #2138
Open
ivans-netto wants to merge 4 commits into
Open
Conversation
🦋 Changeset detectedLatest commit: 6fa57fc The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
ggazzo
requested changes
Aug 3, 2026
ggazzo
reviewed
Aug 3, 2026
Member
|
@juliajforesti 🆘 not 100% sure about my reviews |
juliajforesti
requested changes
Aug 3, 2026
juliajforesti
requested changes
Aug 5, 2026
juliajforesti
left a comment
Contributor
There was a problem hiding this comment.
keep comments brief, and only when strictly necessary - it should not be a history of a debate
Timestamps rest on the secondary-info color and step back up to font-default when the message is hovered, so the quieter treatment never fails AA contrast against the hover surface. The size stays on the c1 scale the ramp already provides.
Author names use the titles-labels color — declared on the container too, because CSS paints text-decoration with the color of the box that declares it, and system messages share the container with a different name child. When the name is actionable ([role='button']) it shows a pointer cursor and underlines on hover.
Stories for the hovered clickable author name on regular and system messages, plus the DOM snapshot the story composition adds.
ivans-netto
force-pushed
the
feat/quieter-message-header-metadata
branch
from
August 6, 2026 15:43
588833b to
6fa57fc
Compare
ivans-netto
marked this pull request as ready for review
August 6, 2026 17:25
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Part of the user information redesign in RocketChat/Rocket.Chat#41650 (Figma spec), where these styles are currently applied as
.rcx-*overrides inside the app — this PR moves them into the design system so the app can drop the overrides and consume them from fuselage.rcx-message-header__name,rcx-message-system__nameand their shared name container) use thetitles-labelsfont color token. When the name container acts as a button ([role='button']) it shows a pointer cursor and underlines on hover — in the app it is the hover/click trigger for the user card and full profile. Non-interactive name containers are unaffected.rcx-message-header__time,rcx-message-system__time) are quieter through color alone: they stay on thec1scale they already declared and use thesecondary-infofont color token. No explicit font sizes — the type ramp has no 10px regular step (microis bold), so the size stays on the scale and the color does the work.secondary-infomeets WCAG AA on the room surface (4.80:1) but not on the hover surface (4.33:1), so the regular-message timestamp steps up to thedefaulttoken while the message is hovered (11.26:1). System messages don't change surface on hover, so no rule is needed there.Impact
This intentionally changes the header metadata of every
Message/MessageSystemconsumer — it is the design-system side of the approved redesign, and the app PR above stops overriding these styles once this ships.Screenshots
Message header — before / after (timestamp in
secondary-info; name usestitles-labels):Hover underline on a clickable author name (new
WithClickableAuthorNamestory):Testing
WithClickableAuthorNamestory added — hover the author name to see the pointer cursor and underline (only whenrole='button'is set).🤖 Generated with Claude Code