Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ export const SessionCard = React.memo(function SessionCard({
<span
key="lane"
data-session-lane-identity={lane.name}
className="inline-flex min-w-0 shrink items-center gap-1.5 text-[12px] font-medium"
className="inline-flex min-w-0 shrink items-center gap-1.5 text-[12px] font-semibold"
// Inline style, not a class: the accent is per-lane user data.
style={{ color: laneAccent ?? undefined }}
>
Expand All @@ -567,7 +567,7 @@ export const SessionCard = React.memo(function SessionCard({
>
<LaneIcon size={12} weight="regular" />
</span>
<span className={cn("min-w-0 truncate", laneAccent ? "" : "text-fg/80")}>
<span className={cn("min-w-0 truncate", laneAccent ? "" : "text-fg/85")}>
<LaneNamingLabel laneName={lane.name} naming={isAutoNaming} />
</span>
</span>,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@ function StickyGroupHeader({
className={cn(
"min-w-0 shrink truncate leading-tight",
isLane
? "ade-lane-group-header-lane ade-lane-branch-inline-lane text-[12px] font-medium text-fg/85"
? "ade-lane-group-header-lane ade-lane-branch-inline-lane text-[12px] font-semibold text-fg/85"
// A quiet shelf ignores the shelf tone on purpose: colour is
// the lane divider's channel, and the whole reason Snoozed
// stopped being blue is that a coloured folding label with a
Expand Down