Skip to content
Open
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
4 changes: 2 additions & 2 deletions packages/app/src/components/status-popover-body.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ function ServerStatusPopoverView(props: { state: ServerStatusState }) {
<div class="flex items-center gap-1 w-[360px] rounded-xl shadow-[var(--shadow-lg-border-base)]">
<Tabs
aria-label={props.state.ariaLabel}
class="tabs bg-background-strong rounded-xl overflow-hidden"
class="tabs bg-background-strong rounded-xl overflow-hidden max-h-[60vh]"
data-component="tabs"
data-active="servers"
defaultValue="servers"
Expand Down Expand Up @@ -301,7 +301,7 @@ export function StatusPopoverBody(props: { shown: Accessor<boolean> }) {
<div class="flex items-center gap-1 w-[360px] rounded-xl shadow-[var(--shadow-lg-border-base)]">
<Tabs
aria-label={language.t("status.popover.ariaLabel")}
class="tabs bg-background-strong rounded-xl overflow-hidden"
class="tabs bg-background-strong rounded-xl overflow-hidden max-h-[60vh]"
data-component="tabs"
data-active={settings.general.newLayoutDesigns() ? "mcp" : "servers"}
defaultValue={settings.general.newLayoutDesigns() ? "mcp" : "servers"}
Expand Down
6 changes: 5 additions & 1 deletion packages/session-ui/src/components/markdown.css
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,12 @@
}

/* Emphasis & Strong: Neutral strong color */
/* Literal weight: theme.css defines no bold/semibold token today, only
--font-weight-regular (400) and --font-weight-medium (500). */
strong,
b {
color: var(--v2-text-text-base);
font-weight: var(--font-weight-medium);
font-weight: 700;
}

/* Paragraphs */
Expand Down Expand Up @@ -343,9 +345,11 @@ body:not([data-new-layout]) [data-component="markdown"] {
font-weight: var(--font-weight-medium);
}

/* Literal weight: no bold/semibold token exists yet (see above). */
strong,
b {
color: var(--text-strong);
font-weight: 700;
}

li::marker {
Expand Down
Loading