From 3c0900874867b1f7da3d1e6be4877486321ce04f Mon Sep 17 00:00:00 2001 From: gsxdsm Date: Fri, 26 Jun 2026 13:51:32 -0700 Subject: [PATCH] FN-7072: reduce skill metadata typography Make the Skills detail pane render metadata and markdown content more compactly. - Add scoped font-size reductions for plain-text and markdown skill detail content. - Preserve shared mailbox markdown typography by limiting the new sizing to SkillsView selectors. - Add a patch changeset for the published Fusion CLI package. Files changed: .changeset/fn-7072-skill-metadata-font-size.md | 7 +++++++ packages/dashboard/app/components/SkillsView.css | 8 +++++++- 2 files changed, 14 insertions(+), 1 deletion(-) Fusion-Task-Id: FN-7072 Fusion-Task-Lineage: 6270be52-d52c-4969-ae65-ec4f10167ff2 --- .changeset/fn-7072-skill-metadata-font-size.md | 7 +++++++ packages/dashboard/app/components/SkillsView.css | 8 +++++++- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 .changeset/fn-7072-skill-metadata-font-size.md diff --git a/.changeset/fn-7072-skill-metadata-font-size.md b/.changeset/fn-7072-skill-metadata-font-size.md new file mode 100644 index 0000000000..bebe6280c3 --- /dev/null +++ b/.changeset/fn-7072-skill-metadata-font-size.md @@ -0,0 +1,7 @@ +--- +"@runfusion/fusion": patch +--- + +summary: Make skill detail metadata render more compactly in the right Skills panel. +category: fix +dev: Scoped reduced font-size to `.skills-view-detail-markdown` / `.skills-view-detail-content` in SkillsView.css; shared `.mailbox-markdown` typography unchanged. diff --git a/packages/dashboard/app/components/SkillsView.css b/packages/dashboard/app/components/SkillsView.css index 2ae49ba676..103c7b0863 100644 --- a/packages/dashboard/app/components/SkillsView.css +++ b/packages/dashboard/app/components/SkillsView.css @@ -449,8 +449,10 @@ Detail-pane header bar: BACK (narrow only) on the left, truncating skill name in flex-shrink: 0; } +/* FNXC:Skills 2026-06-26-13:38: FN-7072 reduces skill detail/metadata font size in the right panel; scope the compact text to SkillsView plain-text content so shared mailbox markdown typography is unaffected. */ .skills-view-detail-content { font-family: var(--font-mono); + font-size: 0.9em; line-height: 1.5; overflow-x: auto; white-space: pre-wrap; @@ -542,9 +544,13 @@ File viewer column inside the detail body. Header bar carries the "← Back to S white-space: nowrap; } -/* FNXC:Skills 2026-06-23-04:15: markdown render wrapper (SKILL.md + markdown files) reuses the shared .mailbox-markdown styling from MailboxMessageContent; this just bounds its width inside the pane. */ +/* +FNXC:Skills 2026-06-23-04:15: markdown render wrapper (SKILL.md + markdown files) reuses the shared .mailbox-markdown styling from MailboxMessageContent; this just bounds its width inside the pane. +FNXC:Skills 2026-06-26-13:38: FN-7072 reduces skill detail/metadata font size in the right panel; scope the compact text to SkillsView markdown content so shared mailbox markdown typography is unaffected. +*/ .skills-view-detail-markdown { min-width: 0; + font-size: 0.9em; word-break: break-word; }